← 返回 Skills 市场
noyadev00-gmailcom

Noya Agent Skill

作者 noyadev00-gmailcom · GitHub ↗ · v1.0.18 · MIT-0
cross-platform ✓ 安全检测通过
782
总下载
2
收藏
0
当前安装
19
版本数
在 OpenClaw 中安装
/install noya-agent-skill
功能描述
Interact with the Noya AI platform for crypto trading, prediction markets, token analysis, DCA strategies, and structured crypto data (prices, TVL, funding r...
安全使用建议
This skill appears to be what it claims: a curl/jq-based integration with Noya. Before installing: (1) understand that conversational context (and potentially wallet/portfolio data) will be sent to Noya's servers when you use the agent — avoid sending secrets you don't want shared; (2) create a short-lived API key, and revoke it if compromised; (3) prefer setting NOYA_API_KEY in a secure environment (process env or a vault) instead of storing it in plaintext in ~/.openclaw/openclaw.json; (4) confirm any on-chain transaction prompts before approving (the skill claims it will request confirmation); and (5) verify you trust the operator at agent.noya.ai since this skill routes sensitive crypto-related queries and commands to that service.
功能分析
Type: OpenClaw Skill Name: noya-agent-skill Version: 1.0.18 The noya-agent-skill is a legitimate integration for the Noya AI crypto platform, providing tools for trading, market analysis, and portfolio management. The skill uses standard utilities like curl and jq to interact with documented HTTPS endpoints (agent-api.noya.ai and data-endpoints.noya.ai) and includes a helper script (noya-message.sh) that safely handles streamed API responses. While the instructions direct the OpenClaw agent to share conversation context with the Noya API via a 'system-message' endpoint, this is explicitly presented as a functional requirement for maintaining continuity during multi-agent handoffs and includes security filtering on the server side.
能力标签
cryptorequires-walletcan-make-purchasesrequires-sensitive-credentials
能力评估
Purpose & Capability
Name/description match the behaviour: the skill calls Noya's Agent API for conversational agent actions (requires NOYA_API_KEY) and uses public data endpoints without auth. Required binaries (curl, jq) are appropriate for the curl-based workflow and the included noya-message.sh script.
Instruction Scope
SKILL.md instructs the agent to hand off conversation context to Noya (POST /api/openclaw/system-message) and to use noya-message.sh for streaming messages. That is coherent for a conversational trading agent, but it means potentially sensitive context (conversation history, preferences, portfolio info) and replies from Noya will be transmitted to the third-party service. The script also reads /etc/timezone or /etc/localtime for timezone info — benign but outside pure API semantics.
Install Mechanism
No install spec; this is instruction-only with a small included shell script. Nothing is downloaded from external or untrusted URLs and no archives are extracted.
Credentials
The only credential is NOYA_API_KEY (declared as primary). This is proportional for agent endpoints. SKILL.md suggests storing the API key in ~/.openclaw/openclaw.json (plaintext config example) — convenient but increases exposure; use short-lived keys and safer secret storage if possible.
Persistence & Privilege
always is false and the skill does not request system-wide privileges. It suggests adding an entry in the OpenClaw config for its own key (normal). Autonomous invocation is allowed by default but that is the platform norm; the skill includes interrupt/confirmation handling for execution of on-chain actions.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install noya-agent-skill
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /noya-agent-skill 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.18
- Updated all agent API endpoint base URLs from safenet.one to agent-api.noya.ai for clarity and consistency. - Improved YAML formatting and metadata in SKILL.md. - No changes to user-facing functionality or commands.
v1.0.17
## noya-agent-skill 1.0.17 - Documentation updated in SKILL.md; no source code or logic changes. - No user-facing or functional changes—only doc edits.
v1.0.16
- Documentation in SKILL.md has been updated for clarity and completeness. - Expanded setup, trust/security, and integration instructions. - Improved details on OpenClaw integration and context handoff workflow. - No functional or API changes; this is a content/documentation update only.
v1.0.15
- Added Kaito endpoints to the supported data sources, enabling access to social intelligence such as mindshare, volume-weighted sentiment, smart-follower graph, and catalyst events. - Updated usage and routing guidance to include Kaito data for mindshare/sentiment and smart-follower analytics. - Clarified examples and lists of deterministic endpoints available without an API key.
v1.0.14
noya-agent-skill v1.0.14 - Updated SKILL.md documentation - No functional code or interface changes; this is a documentation-only update
v1.0.13
noya-agent-skill 1.0.13 changelog: - Documentation updates in SKILL.md. - No functional or code changes; only doc content was edited for clarity or detail.
v1.0.12
- Minor documentation updates in SKILL.md and reference.md. - No functional or interface changes to the skill itself. - All usage instructions, routing guidance, and workflow sections remain unchanged.
v1.0.11
noya-agent-skill 1.0.11 - Added direct documentation endpoints (`https://mcp.noya.ai`) for public, no-auth doc lookup via curl. - Updated instructions: now fetch parameter details and response examples from live docs instead of guessing. - Added step "0. Read the Docs" to workflow in SKILL.md. - No changes to underlying API or data endpoints.
v1.0.10
- Documentation (SKILL.md) updated for improved clarity and detailed OpenClaw integration guidance - No changes to code or functionality; update is documentation only - Instructions for system message endpoint and conversation context hand-off clarified and expanded
v1.0.9
noya-agent-skill v1.0.9 - Updated documentation in SKILL.md and reference.md. - Clarified available data sources for sentiment and news; now references CryptoNews and Santiment. - Minor documentation improvements for accuracy and clarity. - No changes to API, skill behavior, or setup.
v1.0.8
- Updated references to on-chain DEX source from Bitquery to GeckoTerminal in the "When to Use" section. - Minor text adjustments for clarity in supported data sources and endpoints.
v1.0.7
**Expanded public data access and improved routing between agent and direct endpoints.** - Added unauthenticated public crypto data endpoints (prices, TVL, sentiment, funding rates, news, and more) for instant access without API key. - Clarified when to use agent endpoints (with API key) versus public data endpoints for deterministic lookups and reasoning/execution tasks. - Updated requirements: NOYA_API_KEY is now only needed for agent/transactional operations; public data queries work without any setup. - Documentation now includes expanded "When to Use" guidance and routing tips for best performance. - Metadata updated to reflect new optional API key for broader out-of-the-box usability.
v1.0.6
**Changelog for v1.0.6** - Added OpenClaw integration: introduce a new "system message" endpoint to initialize conversation context for each new chat, enabling seamless handoff from OpenClaw to Noya. - Updated workflow: require a call to the system-message endpoint before the first user message when initiated by OpenClaw. - Enhanced documentation: provide guidance on context handoff, correct initialization flow, and proper threadId usage for voice chat. - Clarified instructions on using thread IDs and the importance of passing context during handoffs. - No API or command changes outside OpenClaw handoff-related updates.
v1.0.5
- Added new API endpoint: `/api/user/summary` for fetching user holdings, DCA strategies, and Polymarket positions in a single response. - SKILL.md expanded "API Reference" section with usage and response details for `/api/user/summary`. - Clarified that the user summary is useful for providing structured context across agents. - No changes to usage, authentication, or workflows; all other features remain the same.
v1.0.4
noya-agent-skill 1.0.4 - No file changes detected in this release. - Documentation and usage details remain unchanged. - No new features, bug fixes, or adjustments introduced in this version.
v1.0.3
noya-agent-skill v1.0.3 - Documentation updated in SKILL.md for improved clarity and formatting. - No functional or API changes; core usage patterns and instructions remain unchanged. - All functionality retains previous workflow, environment, and confirmation requirements.
v1.0.2
noya-agent-skill 1.0.2 - Documentation in SKILL.md reformatted for improved clarity and completeness. - No functional changes; core workflow and usage instructions remain the same. - Enhanced examples and instructions for message, thread, and session management.
v1.0.1
- Added voice chat support: users can now start or resume Noya agent conversations by voice in their browser. - Updated usage instructions with steps and examples for launching voice chat sessions, including passing a thread ID to resume existing chats. - Clarified "When to Use" section to mention starting a voice conversation as a supported use case. - No other functionality or API changes.
v1.0.0
Initial release of noya-agent-skill. - Allows users to interact with Noya AI for crypto trading, prediction markets, token analysis, and DCA strategies via curl. - Provides detailed setup instructions for API key management and environment variables. - Includes robust guide to usage, security, and core workflows (thread and message handling, streaming output). - Introduces dedicated script (`noya-message.sh`) for safe streaming communication—handles chunked agent responses and interrupt prompts. - Documents supported use cases: portfolio checks, token swaps, market analysis, DCA setup, and prediction market interaction. - Emphasizes user confirmation before executing transactions and guides for error handling.
元数据
Slug noya-agent-skill
版本 1.0.18
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 19
常见问题

Noya Agent Skill 是什么?

Interact with the Noya AI platform for crypto trading, prediction markets, token analysis, DCA strategies, and structured crypto data (prices, TVL, funding r... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 782 次。

如何安装 Noya Agent Skill?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install noya-agent-skill」即可一键安装,无需额外配置。

Noya Agent Skill 是免费的吗?

是的,Noya Agent Skill 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

Noya Agent Skill 支持哪些平台?

Noya Agent Skill 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Noya Agent Skill?

由 noyadev00-gmailcom(@noyadev00-gmailcom)开发并维护,当前版本 v1.0.18。

💬 留言讨论