{
  "schemaVersion": "1.0",
  "item": {
    "slug": "crypto-market-analyzer",
    "name": "Crypto Market Analyzer",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/hmzo/crypto-market-analyzer",
    "canonicalUrl": "https://clawhub.ai/hmzo/crypto-market-analyzer",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/crypto-market-analyzer",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=crypto-market-analyzer",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "scripts/fetch_crypto_data.py"
    ],
    "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/crypto-market-analyzer"
    },
    "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/crypto-market-analyzer",
    "agentPageUrl": "https://openagent3.xyz/skills/crypto-market-analyzer/agent",
    "manifestUrl": "https://openagent3.xyz/skills/crypto-market-analyzer/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/crypto-market-analyzer/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 Market Analyzer",
        "body": "This skill provides automated cryptocurrency market analysis for Bitcoin (BTC) and Ethereum (ETH)."
      },
      {
        "title": "What It Does",
        "body": "Fetches market data from Binance public API (no authentication required)\nAnalyzes 4-hour timeframe (last 24 hours)\nAnalyzes daily timeframe (last 30 days)\nCalculates technical indicators:\n\nRSI (Relative Strength Index, 14-period)\nSimple Moving Averages (20-day and 50-day)\nSupport and resistance levels\nPrice change (24h and 7d)\n\n\nProvides sentiment analysis (Bullish/Bearish/Neutral) with confidence level\nGenerates structured reports with reasoning"
      },
      {
        "title": "Generate Market Report",
        "body": "Run the analysis script:\n\npython3 scripts/fetch_crypto_data.py\n\nOutput format (JSON):\n\n{\n  \"BTCUSDT\": {\n    \"indicators\": {\n      \"current_price\": 43250.50,\n      \"sma_20\": 42800.00,\n      \"sma_50\": 41500.00,\n      \"rsi\": 58.3,\n      \"support\": 42000.00,\n      \"resistance\": 44000.00,\n      \"price_change_24h\": 2.5,\n      \"price_change_7d\": 5.8\n    },\n    \"sentiment\": {\n      \"sentiment\": \"Bullish (看涨)\",\n      \"confidence\": 0.75,\n      \"reasons\": [\n        \"RSI (58.3) shows bullish momentum\",\n        \"Price above both SMAs (20d and 50d) - bullish trend\",\n        \"Strong 24h gain (2.50%) - bullish\"\n      ]\n    },\n    \"timestamp\": \"2026-02-11T14:38:00\"\n  },\n  \"ETHUSDT\": { ... }\n}"
      },
      {
        "title": "Generate Human-Readable Report",
        "body": "To create a user-friendly report, use the JSON output and format it:\n\n📊 加密货币市场分析报告\n生成时间: 2026-02-11 14:38\n\n## 比特币 (BTC)\n\n💰 当前价格: $43,250.50\n📈 24h涨跌: +2.5%\n📊 7日涨跌: +5.8%\n\n### 技术指标\n- RSI (14): 58.3\n- SMA 20: $42,800\n- SMA 50: $41,500\n- 支撑位: $42,000\n- 阻力位: $44,000\n\n### 市场判断\n🎯 趋势: 看涨 (Bullish)\n📊 置信度: 75%\n\n📝 分析理由:\n- RSI (58.3) 显示多头动能\n- 价格位于20日和50日均线上方 - 上升趋势\n- 24小时涨幅强劲 (2.50%) - 多头信号\n\n## 以太坊 (ETH)\n..."
      },
      {
        "title": "Scheduled Execution",
        "body": "This skill is designed for daily automated execution at 10:00 AM (UTC+8).\n\nTo schedule via OpenClaw cron:\n\n# Create a cron job to run daily at 10:00 AM UTC+8\n# This corresponds to 02:00 UTC\n\nThe cron job should:\n\nExecute the analysis script\nParse the JSON output\nFormat a human-readable report\nSend the report to the user via messaging channel"
      },
      {
        "title": "Data Source",
        "body": "API: Binance Public API\nEndpoint: /api/v3/klines\nRate Limits: 1200 request weight per minute (well within limits)\nNo Authentication Required: Public market data"
      },
      {
        "title": "Timeframes",
        "body": "4h: 6 candles (24 hours of data)\n1d: 30 candles (30 days of data)"
      },
      {
        "title": "Indicators Explained",
        "body": "RSI: Momentum oscillator (0-100). <30 = oversold, >70 = overbought\nSMA 20/50: Trend indicators. Price > both SMAs = bullish\nSupport/Resistance: Recent low/high averages\nPrice Change: Percentage change over specified period"
      },
      {
        "title": "Sentiment Logic",
        "body": "Sentiment is determined by combining multiple signals:\n\nRSI position (oversold/overbought/momentum)\nPrice vs moving averages (trend direction)\nRecent price changes (momentum strength)\n\nEach signal contributes to a bullish/bearish score, which determines:\n\nOverall sentiment (Bullish/Bearish/Neutral)\nConfidence level (0.3 to 0.9)\nDetailed reasoning"
      },
      {
        "title": "Extending the Skill",
        "body": "To add more cryptocurrencies:\n\nEdit scripts/fetch_crypto_data.py and modify the symbols list:\n\nsymbols = [\"BTCUSDT\", \"ETHUSDT\", \"SOLUSDT\", \"ADAUSDT\"]\n\nTo add more indicators:\n\nExtend the calculate_technical_indicators() function with additional calculations (MACD, Bollinger Bands, etc.).\n\nTo customize sentiment logic:\n\nModify the analyze_sentiment() function to adjust weighting and thresholds."
      }
    ],
    "body": "Crypto Market Analyzer\n\nThis skill provides automated cryptocurrency market analysis for Bitcoin (BTC) and Ethereum (ETH).\n\nWhat It Does\nFetches market data from Binance public API (no authentication required)\nAnalyzes 4-hour timeframe (last 24 hours)\nAnalyzes daily timeframe (last 30 days)\nCalculates technical indicators:\nRSI (Relative Strength Index, 14-period)\nSimple Moving Averages (20-day and 50-day)\nSupport and resistance levels\nPrice change (24h and 7d)\nProvides sentiment analysis (Bullish/Bearish/Neutral) with confidence level\nGenerates structured reports with reasoning\nUsage\nGenerate Market Report\n\nRun the analysis script:\n\npython3 scripts/fetch_crypto_data.py\n\n\nOutput format (JSON):\n\n{\n  \"BTCUSDT\": {\n    \"indicators\": {\n      \"current_price\": 43250.50,\n      \"sma_20\": 42800.00,\n      \"sma_50\": 41500.00,\n      \"rsi\": 58.3,\n      \"support\": 42000.00,\n      \"resistance\": 44000.00,\n      \"price_change_24h\": 2.5,\n      \"price_change_7d\": 5.8\n    },\n    \"sentiment\": {\n      \"sentiment\": \"Bullish (看涨)\",\n      \"confidence\": 0.75,\n      \"reasons\": [\n        \"RSI (58.3) shows bullish momentum\",\n        \"Price above both SMAs (20d and 50d) - bullish trend\",\n        \"Strong 24h gain (2.50%) - bullish\"\n      ]\n    },\n    \"timestamp\": \"2026-02-11T14:38:00\"\n  },\n  \"ETHUSDT\": { ... }\n}\n\nGenerate Human-Readable Report\n\nTo create a user-friendly report, use the JSON output and format it:\n\n📊 加密货币市场分析报告\n生成时间: 2026-02-11 14:38\n\n## 比特币 (BTC)\n\n💰 当前价格: $43,250.50\n📈 24h涨跌: +2.5%\n📊 7日涨跌: +5.8%\n\n### 技术指标\n- RSI (14): 58.3\n- SMA 20: $42,800\n- SMA 50: $41,500\n- 支撑位: $42,000\n- 阻力位: $44,000\n\n### 市场判断\n🎯 趋势: 看涨 (Bullish)\n📊 置信度: 75%\n\n📝 分析理由:\n- RSI (58.3) 显示多头动能\n- 价格位于20日和50日均线上方 - 上升趋势\n- 24小时涨幅强劲 (2.50%) - 多头信号\n\n## 以太坊 (ETH)\n...\n\nScheduled Execution\n\nThis skill is designed for daily automated execution at 10:00 AM (UTC+8).\n\nTo schedule via OpenClaw cron:\n\n# Create a cron job to run daily at 10:00 AM UTC+8\n# This corresponds to 02:00 UTC\n\n\nThe cron job should:\n\nExecute the analysis script\nParse the JSON output\nFormat a human-readable report\nSend the report to the user via messaging channel\nTechnical Details\nData Source\nAPI: Binance Public API\nEndpoint: /api/v3/klines\nRate Limits: 1200 request weight per minute (well within limits)\nNo Authentication Required: Public market data\nTimeframes\n4h: 6 candles (24 hours of data)\n1d: 30 candles (30 days of data)\nIndicators Explained\nRSI: Momentum oscillator (0-100). <30 = oversold, >70 = overbought\nSMA 20/50: Trend indicators. Price > both SMAs = bullish\nSupport/Resistance: Recent low/high averages\nPrice Change: Percentage change over specified period\nSentiment Logic\n\nSentiment is determined by combining multiple signals:\n\nRSI position (oversold/overbought/momentum)\nPrice vs moving averages (trend direction)\nRecent price changes (momentum strength)\n\nEach signal contributes to a bullish/bearish score, which determines:\n\nOverall sentiment (Bullish/Bearish/Neutral)\nConfidence level (0.3 to 0.9)\nDetailed reasoning\nExtending the Skill\n\nTo add more cryptocurrencies:\n\nEdit scripts/fetch_crypto_data.py and modify the symbols list:\n\nsymbols = [\"BTCUSDT\", \"ETHUSDT\", \"SOLUSDT\", \"ADAUSDT\"]\n\n\nTo add more indicators:\n\nExtend the calculate_technical_indicators() function with additional calculations (MACD, Bollinger Bands, etc.).\n\nTo customize sentiment logic:\n\nModify the analyze_sentiment() function to adjust weighting and thresholds."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/hmzo/crypto-market-analyzer",
    "publisherUrl": "https://clawhub.ai/hmzo/crypto-market-analyzer",
    "owner": "hmzo",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/crypto-market-analyzer",
    "downloadUrl": "https://openagent3.xyz/downloads/crypto-market-analyzer",
    "agentUrl": "https://openagent3.xyz/skills/crypto-market-analyzer/agent",
    "manifestUrl": "https://openagent3.xyz/skills/crypto-market-analyzer/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/crypto-market-analyzer/agent.md"
  }
}