{
  "schemaVersion": "1.0",
  "item": {
    "slug": "clap-trader",
    "name": "Clap Trader",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/dymx101/clap-trader",
    "canonicalUrl": "https://clawhub.ai/dymx101/clap-trader",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/clap-trader",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=clap-trader",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "scripts/trade.py",
      "scripts/logger.py",
      "scripts/market_data.py",
      "scripts/sentiment_data.py",
      "logs/analysis_journal.md"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "Download the package from Yavira.",
        "Extract it into a folder your agent can access.",
        "Paste one of the prompts below and point your agent at the extracted folder."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
        },
        {
          "label": "Upgrade existing",
          "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/clap-trader"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/clap-trader",
    "agentPageUrl": "https://openagent3.xyz/skills/clap-trader/agent",
    "manifestUrl": "https://openagent3.xyz/skills/clap-trader/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/clap-trader/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "Download the package from Yavira.",
      "Extract it into a folder your agent can access.",
      "Paste one of the prompts below and point your agent at the extracted folder."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
      },
      {
        "label": "Upgrade existing",
        "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Crypto Trader & Analyst Skill",
        "body": "This skill allows OpenClaw to analyze the crypto market using technical indicators and news sentiment, record its findings, and execute trades on Binance."
      },
      {
        "title": "Dependencies",
        "body": "Ensure the following Python packages are installed:\n\npip install ccxt pandas pandas-ta requests TextBlob\n\nNote: TextBlob is suggested for basic sentiment analysis if needed, though simple keyword matching might suffice."
      },
      {
        "title": "Environment Variables",
        "body": "You must set the following environment variables for trading:\n\nBINANCE_API_KEY: Your Binance API Key.\nBINANCE_API_SECRET: Your Binance API Secret.\n\nWARNING: Never share these keys or commit them to version control."
      },
      {
        "title": "1. Market Analysis",
        "body": "Technical Analysis\nRun the market data script to get current indicators for a symbol (default ETH/USDT).\n\npython skills/crypto_trader/scripts/market_data.py --symbol ETH/USDT\n\nOutput: JSON containing RSI, MACD, close price, etc.\n\nSentiment Analysis\nRun the sentiment script to fetch latest news headers and forum buzz.\n\npython skills/crypto_trader/scripts/sentiment_data.py\n\nOutput: Text/JSON summary of positive/negative news."
      },
      {
        "title": "2. Decision Making & Logging",
        "body": "Analyze & Record\nBased on the outputs from step 1, form a hypothesis. Is the market Bullish, Bearish, or Neutral?\nBefore trading, you MUST save your analysis.\n\npython skills/crypto_trader/scripts/logger.py \"Your detailed analysis here. E.g., RSI is 30 (oversold) and news is positive. Planning to BUY.\""
      },
      {
        "title": "3. Execution",
        "body": "Trade\nIf the analysis supports a trade, execute it.\n\n# Buy 0.01 ETH at Market Price\npython skills/crypto_trader/scripts/trade.py --symbol ETH/USDT --side buy --amount 0.01 --type market\n\n# Dry Run (Test without real money)\npython skills/crypto_trader/scripts/trade.py --symbol ETH/USDT --side buy --amount 0.01 --dry-run\n\nThe trade script will automatically append the transaction to skills/crypto_trader/logs/trade_history.csv."
      },
      {
        "title": "Files structure",
        "body": "scripts/market_data.py: Fetches OHLCV and calculates indicators.\nscripts/sentiment_data.py: Fetches news/forum data.\nscripts/logger.py: Appends analysis to logs/analysis_journal.md.\nscripts/trade.py: Executes trades and logs to logs/trade_history.csv.\nlogs/: Directory storing your analysis history and trade logs."
      }
    ],
    "body": "Crypto Trader & Analyst Skill\n\nThis skill allows OpenClaw to analyze the crypto market using technical indicators and news sentiment, record its findings, and execute trades on Binance.\n\nDependencies\n\nEnsure the following Python packages are installed:\n\npip install ccxt pandas pandas-ta requests TextBlob\n\n\nNote: TextBlob is suggested for basic sentiment analysis if needed, though simple keyword matching might suffice.\n\nEnvironment Variables\n\nYou must set the following environment variables for trading:\n\nBINANCE_API_KEY: Your Binance API Key.\nBINANCE_API_SECRET: Your Binance API Secret.\n\nWARNING: Never share these keys or commit them to version control.\n\nWorkflow\n1. Market Analysis\n\nTechnical Analysis Run the market data script to get current indicators for a symbol (default ETH/USDT).\n\npython skills/crypto_trader/scripts/market_data.py --symbol ETH/USDT\n\n\nOutput: JSON containing RSI, MACD, close price, etc.\n\nSentiment Analysis Run the sentiment script to fetch latest news headers and forum buzz.\n\npython skills/crypto_trader/scripts/sentiment_data.py\n\n\nOutput: Text/JSON summary of positive/negative news.\n\n2. Decision Making & Logging\n\nAnalyze & Record Based on the outputs from step 1, form a hypothesis. Is the market Bullish, Bearish, or Neutral? Before trading, you MUST save your analysis.\n\npython skills/crypto_trader/scripts/logger.py \"Your detailed analysis here. E.g., RSI is 30 (oversold) and news is positive. Planning to BUY.\"\n\n3. Execution\n\nTrade If the analysis supports a trade, execute it.\n\n# Buy 0.01 ETH at Market Price\npython skills/crypto_trader/scripts/trade.py --symbol ETH/USDT --side buy --amount 0.01 --type market\n\n# Dry Run (Test without real money)\npython skills/crypto_trader/scripts/trade.py --symbol ETH/USDT --side buy --amount 0.01 --dry-run\n\n\nThe trade script will automatically append the transaction to skills/crypto_trader/logs/trade_history.csv.\n\nFiles structure\nscripts/market_data.py: Fetches OHLCV and calculates indicators.\nscripts/sentiment_data.py: Fetches news/forum data.\nscripts/logger.py: Appends analysis to logs/analysis_journal.md.\nscripts/trade.py: Executes trades and logs to logs/trade_history.csv.\nlogs/: Directory storing your analysis history and trade logs."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/dymx101/clap-trader",
    "publisherUrl": "https://clawhub.ai/dymx101/clap-trader",
    "owner": "dymx101",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/clap-trader",
    "downloadUrl": "https://openagent3.xyz/downloads/clap-trader",
    "agentUrl": "https://openagent3.xyz/skills/clap-trader/agent",
    "manifestUrl": "https://openagent3.xyz/skills/clap-trader/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/clap-trader/agent.md"
  }
}