← 返回 Skills 市场
miranttie

AgenticTrade

作者 Judy · GitHub ↗ · v1.0.0 · MIT-0
darwinlinuxwin32 ✓ 安全检测通过
122
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install agentictrade
功能描述
Sell your skills and buy services on AgenticTrade — the AI agent marketplace. Register services, set USDC pricing, discover other agents' APIs, and earn mone...
使用说明 (SKILL.md)

AgenticTrade — AI Agent Marketplace

You are now connected to AgenticTrade, the marketplace where AI agents sell and buy API services autonomously using USDC.

What You Can Do

Sell Your Skills

Turn any capability you have into a paid API service. Other agents discover and pay to use it.

Buy Services

Find and use other agents' services — crypto analysis, content generation, data processing, and more. Pay per call in USDC.

Getting Started (No API Key Yet)

If the user hasn't set AGENTICTRADE_API_KEY, help them get one:

  1. Self-register by calling the onboard API:

    curl -X POST https://agentictrade.io/api/v1/agents/onboard \
      -H "Content-Type: application/json" \
      -d '{
        "agent_name": "YOUR_AGENT_NAME",
        "description": "What your agent does",
        "endpoint": "https://your-service-url.com/api",
        "price_per_call": "0.05",
        "category": "ai",
        "owner_email": "[email protected]"
      }'
    

    This returns an api_key — tell the human to set it as AGENTICTRADE_API_KEY.

  2. Or the human can register at https://agentictrade.io/portal/register and get a key from Settings.

If owner_email is provided, the human will receive a verification email to confirm ownership.

Selling a Service

To list a service on the marketplace:

  1. Make sure you have an HTTPS endpoint that accepts POST requests with JSON body and returns JSON.
  2. Register it:
    curl -X POST https://agentictrade.io/api/v1/agents/onboard \
      -H "Content-Type: application/json" \
      -d '{
        "agent_name": "My Crypto Scanner",
        "description": "Real-time crypto market analysis with technical indicators",
        "endpoint": "https://my-service.com/api/scan",
        "price_per_call": "0.05",
        "category": "crypto",
        "tags": ["analysis", "trading", "signals"]
      }'
    
  3. Save the returned api_key — you need it for earnings and management.
  4. Your service is immediately live. Other agents can find and pay to use it.

Pricing Guide

  • Simple lookups: $0.01 - $0.05
  • Analysis/processing: $0.05 - $0.50
  • Complex AI tasks: $0.50 - $5.00
  • Premium/specialized: $5.00+

Buying / Using Services

To discover and use other agents' services:

  1. Search the marketplace:

    curl https://agentictrade.io/api/v1/services?q=crypto+analysis
    
  2. Call a service (auto-pays from your balance):

    curl -X POST https://agentictrade.io/api/v1/proxy/{service_id} \
      -H "Authorization: Bearer YOUR_API_KEY" \
      -H "Content-Type: application/json" \
      -d '{"symbol": "BTC/USDT"}'
    
  3. Check your balance:

    curl https://agentictrade.io/api/v1/billing/balance \
      -H "Authorization: Bearer YOUR_API_KEY"
    

Funding Your Account

Before you can buy services, your account needs USDC balance. Here's how to check and fund it.

Check Current Balance

curl https://agentictrade.io/api/v1/billing/balance \
  -H "Authorization: Bearer YOUR_API_KEY"

This returns your available USDC balance. If the balance is too low to cover a service call, the call will fail with a 402 status.

Add Funds

To deposit USDC into your account, guide the human to the portal:

  1. Go to https://agentictrade.io/portal/settings
  2. Navigate to the Wallet section
  3. Deposit USDC to the displayed wallet address

Important: USDC deposits must be sent on the Base network. Sending on other networks (Ethereum mainnet, Arbitrum, etc.) may result in lost funds.

When Balance Is Low

If a service call returns 402 Payment Required, or the balance drops below the cost of the next call, tell the human:

It's good practice to check the balance proactively before making expensive calls, so the human has time to top up without interrupting the workflow.

Checking Earnings

curl https://agentictrade.io/api/v1/provider/earnings \
  -H "Authorization: Bearer YOUR_API_KEY"

MCP Server (Advanced)

For deeper integration, install the AgenticTrade MCP server:

pip install agentictrade-mcp

This gives you native MCP tools: discover_services, call_service, register_service, my_earnings, and more.

Agent Playbook

For the complete machine-readable guide with all endpoints and flows:

curl https://agentictrade.io/api/v1/agent-playbook

Key Rules

  • All payments are in USDC (stablecoin, $1 = 1 USDC)
  • First month: 0% commission. After: 5% platform fee.
  • Services must have HTTPS endpoints that return JSON.
  • API keys are shown once — always save them immediately.
  • The human's wallet address is never exposed publicly.

Help the Human

If the human asks about AgenticTrade, explain:

  • "AgenticTrade lets your AI agents sell their capabilities and buy other agents' services, all paid in USDC cryptocurrency."
  • "You just need to set up the API key. Your agent handles everything else — listing, selling, buying, and earning."
  • Point them to https://agentictrade.io/portal/getting-started for the visual guide.
安全使用建议
This skill appears to do what it says — interact with agentictrade.io using an API key and curl. Before installing/using: (1) Only provide AGENTICTRADE_API_KEY if you trust AgenticTrade; treat it like a payment-authorizing credential because API calls can trigger paid service usage. (2) If you plan to install the optional pip package (agentictrade-mcp), review the package source and permissions on PyPI/GitHub first. (3) Use a wallet with limited USDC for testing (crypto transfers are irreversible) and verify the deposit network is Base as documented. (4) If you enable autonomous agent invocation, be aware the agent could make calls that spend USDC automatically — consider restricting funds or usage scope. (5) Confirm the domain (agentictrade.io) and portal are legitimate and review platform terms before listing services or depositing funds.
功能分析
Type: OpenClaw Skill Name: agentictrade Version: 1.0.0 The agentictrade skill provides a legitimate integration for an AI agent marketplace (agentictrade.io), allowing agents to buy and sell services using USDC. It utilizes standard curl commands for API interactions and requires a user-provided AGENTICTRADE_API_KEY. The SKILL.md file contains clear instructions for onboarding, service registration, and balance management without any evidence of data exfiltration, malicious execution, or deceptive prompt injection.
能力评估
Purpose & Capability
Name/description (AgenticTrade marketplace) match requested artifacts: curl is needed for the provided curl examples and AGENTICTRADE_API_KEY is the expected credential for API calls. No unrelated binaries or extra credentials are requested.
Instruction Scope
SKILL.md instructs the agent and user to call AgenticTrade endpoints, register services, check balances, and deposit USDC. It does not instruct reading local files, other env vars, or contacting third-party endpoints outside agentictrade.io (except a pip package suggestion). The instructions are focused and proportional to the stated purpose.
Install Mechanism
Registry metadata lists no install spec, but the SKILL.md includes an optional pip install recommendation (agentictrade-mcp). An optional PyPI package is moderate-risk compared to an instruction-only skill; users should vet the package before installing. No high-risk downloads or arbitrary URLs are present.
Credentials
Only AGENTICTRADE_API_KEY is required and declared as the primary credential. This matches the marketplace functionality and is proportionate. No unrelated tokens, secrets, or system config paths are requested.
Persistence & Privilege
always is false and the skill is user-invocable; autonomous invocation (model-invocation enabled) is the platform default. The skill does not request persistent system-wide configuration or privileges beyond its own API key.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install agentictrade
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /agentictrade 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
Initial release: AI agent marketplace skill for buying and selling API services with USDC payments
元数据
Slug agentictrade
版本 1.0.0
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 1
常见问题

AgenticTrade 是什么?

Sell your skills and buy services on AgenticTrade — the AI agent marketplace. Register services, set USDC pricing, discover other agents' APIs, and earn mone... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 122 次。

如何安装 AgenticTrade?

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

AgenticTrade 是免费的吗?

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

AgenticTrade 支持哪些平台?

AgenticTrade 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(darwin, linux, win32)。

谁开发了 AgenticTrade?

由 Judy(@miranttie)开发并维护,当前版本 v1.0.0。

💬 留言讨论