{
  "schemaVersion": "1.0",
  "item": {
    "slug": "finance",
    "name": "finance",
    "source": "tencent",
    "type": "skill",
    "category": "数据分析",
    "sourceUrl": "https://clawhub.ai/anton-roos/finance",
    "canonicalUrl": "https://clawhub.ai/anton-roos/finance",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/finance",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=finance",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "scripts/market_quote.py",
      "scripts/market_series.py",
      "scripts/market_watchlist.py",
      "providers.md",
      "requirements.txt",
      "SKILL.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-23T16:43:11.935Z",
      "expiresAt": "2026-04-30T16:43:11.935Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
        "contentDisposition": "attachment; filename=\"4claw-imageboard-1.0.1.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/finance"
    },
    "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/finance",
    "agentPageUrl": "https://openagent3.xyz/skills/finance/agent",
    "manifestUrl": "https://openagent3.xyz/skills/finance/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/finance/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": "Market Tracker Skill",
        "body": "This skill helps you fetch latest quotes and historical series for:\n\nStocks / ETFs / Indices (e.g., AAPL, MSFT, ^GSPC, VOO)\nFX pairs (e.g., USD/ZAR, EURUSD, GBP-JPY)\nCrypto tickers supported by the chosen provider (best-effort)\n\nIt is optimized for:\n\nfast “what’s the price now?” queries\nlightweight tracking with a local watchlist\ncaching to avoid rate-limits"
      },
      {
        "title": "When to use",
        "body": "Use this skill when the user asks:\n\n“What’s the latest price of ___?”\n“Track ___ and ___ and show me daily changes.”\n“Give me a 30-day series for ___.”\n“Convert USD to ZAR (or track USD/ZAR).”\n“Maintain a watchlist and summarize performance.”"
      },
      {
        "title": "Provider strategy (important)",
        "body": "Stocks/ETFs/indices default: Yahoo Finance via yfinance (no key, broad coverage), but it is unofficial and can rate-limit.\nFX default: ExchangeRate-API Open Access endpoint (no key, daily update).\nIf the user needs high-frequency or many symbols, recommend adding a paid provider later.\n\nSee providers.md for details and symbol formats."
      },
      {
        "title": "Quick start (how you run it)",
        "body": "These scripts are intended to be run from a terminal. The agent should:\n\nensure dependencies installed\nrun the scripts\nsummarize results cleanly\n\nInstall:\n\npython -m venv .venv && source .venv/bin/activate (or Windows equivalent)\npip install -r requirements.txt"
      },
      {
        "title": "1) Latest quote (stock/ETF/index)",
        "body": "Examples:\n\npython scripts/market_quote.py AAPL\npython scripts/market_quote.py ^GSPC\npython scripts/market_quote.py VOO"
      },
      {
        "title": "2) Latest FX rate",
        "body": "Examples:\n\npython scripts/market_quote.py USD/ZAR\npython scripts/market_quote.py EURUSD\npython scripts/market_quote.py GBP-JPY"
      },
      {
        "title": "3) Historical series (CSV to stdout)",
        "body": "Examples:\n\npython scripts/market_series.py AAPL --days 30\npython scripts/market_series.py USD/ZAR --days 30"
      },
      {
        "title": "4) Watchlist summary (local file)",
        "body": "Add tickers: python scripts/market_watchlist.py add AAPL MSFT USD/ZAR\nRemove: python scripts/market_watchlist.py remove MSFT\nShow summary: python scripts/market_watchlist.py summary"
      },
      {
        "title": "Output expectations (what you should return to the user)",
        "body": "For quotes: price, change %, timestamp/source, and any caveats (like “FX updates daily”).\nFor series: confirm date range, number of points, and show a small preview (first/last few rows).\nIf rate-limited: explain what happened and retry with backoff OR advise to reduce frequency."
      },
      {
        "title": "Safety / correctness",
        "body": "Never claim “real-time” unless the provider is truly real-time. FX open access updates daily.\nAlways cache responses and throttle repeated calls.\nIf Yahoo blocks requests, propose a paid provider or increase cache TTL."
      }
    ],
    "body": "Market Tracker Skill\n\nThis skill helps you fetch latest quotes and historical series for:\n\nStocks / ETFs / Indices (e.g., AAPL, MSFT, ^GSPC, VOO)\nFX pairs (e.g., USD/ZAR, EURUSD, GBP-JPY)\nCrypto tickers supported by the chosen provider (best-effort)\n\nIt is optimized for:\n\nfast “what’s the price now?” queries\nlightweight tracking with a local watchlist\ncaching to avoid rate-limits\nWhen to use\n\nUse this skill when the user asks:\n\n“What’s the latest price of ___?”\n“Track ___ and ___ and show me daily changes.”\n“Give me a 30-day series for ___.”\n“Convert USD to ZAR (or track USD/ZAR).”\n“Maintain a watchlist and summarize performance.”\nProvider strategy (important)\nStocks/ETFs/indices default: Yahoo Finance via yfinance (no key, broad coverage), but it is unofficial and can rate-limit.\nFX default: ExchangeRate-API Open Access endpoint (no key, daily update).\nIf the user needs high-frequency or many symbols, recommend adding a paid provider later.\n\nSee providers.md for details and symbol formats.\n\nQuick start (how you run it)\n\nThese scripts are intended to be run from a terminal. The agent should:\n\nensure dependencies installed\nrun the scripts\nsummarize results cleanly\n\nInstall:\n\npython -m venv .venv && source .venv/bin/activate (or Windows equivalent)\npip install -r requirements.txt\nCommands\n1) Latest quote (stock/ETF/index)\n\nExamples:\n\npython scripts/market_quote.py AAPL\npython scripts/market_quote.py ^GSPC\npython scripts/market_quote.py VOO\n2) Latest FX rate\n\nExamples:\n\npython scripts/market_quote.py USD/ZAR\npython scripts/market_quote.py EURUSD\npython scripts/market_quote.py GBP-JPY\n3) Historical series (CSV to stdout)\n\nExamples:\n\npython scripts/market_series.py AAPL --days 30\npython scripts/market_series.py USD/ZAR --days 30\n4) Watchlist summary (local file)\nAdd tickers: python scripts/market_watchlist.py add AAPL MSFT USD/ZAR\nRemove: python scripts/market_watchlist.py remove MSFT\nShow summary: python scripts/market_watchlist.py summary\nOutput expectations (what you should return to the user)\nFor quotes: price, change %, timestamp/source, and any caveats (like “FX updates daily”).\nFor series: confirm date range, number of points, and show a small preview (first/last few rows).\nIf rate-limited: explain what happened and retry with backoff OR advise to reduce frequency.\nSafety / correctness\nNever claim “real-time” unless the provider is truly real-time. FX open access updates daily.\nAlways cache responses and throttle repeated calls.\nIf Yahoo blocks requests, propose a paid provider or increase cache TTL."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/anton-roos/finance",
    "publisherUrl": "https://clawhub.ai/anton-roos/finance",
    "owner": "anton-roos",
    "version": "1.1.2",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/finance",
    "downloadUrl": "https://openagent3.xyz/downloads/finance",
    "agentUrl": "https://openagent3.xyz/skills/finance/agent",
    "manifestUrl": "https://openagent3.xyz/skills/finance/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/finance/agent.md"
  }
}