{
  "schemaVersion": "1.0",
  "item": {
    "slug": "stock-info-explorer",
    "name": "Stock Info Explorer",
    "source": "tencent",
    "type": "skill",
    "category": "数据分析",
    "sourceUrl": "https://clawhub.ai/kys42/stock-info-explorer",
    "canonicalUrl": "https://clawhub.ai/kys42/stock-info-explorer",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/stock-info-explorer",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=stock-info-explorer",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "scripts/yf.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-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/stock-info-explorer"
    },
    "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/stock-info-explorer",
    "agentPageUrl": "https://openagent3.xyz/skills/stock-info-explorer/agent",
    "manifestUrl": "https://openagent3.xyz/skills/stock-info-explorer/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/stock-info-explorer/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": "Stock Information Explorer",
        "body": "This skill fetches OHLCV data from Yahoo Finance via yfinance and computes technical indicators locally (no API key required)."
      },
      {
        "title": "1) Real-time Quotes (price)",
        "body": "uv run --script scripts/yf.py price TSLA\n# shorthand\nuv run --script scripts/yf.py TSLA"
      },
      {
        "title": "2) Fundamental Summary (fundamentals)",
        "body": "uv run --script scripts/yf.py fundamentals NVDA"
      },
      {
        "title": "3) ASCII Trend (history)",
        "body": "uv run --script scripts/yf.py history AAPL 6mo"
      },
      {
        "title": "4) Professional Chart (pro)",
        "body": "Generates a high-resolution PNG chart. By default it includes Volume and Moving Averages (MA5/20/60).\n\n# candle (default)\nuv run --script scripts/yf.py pro 000660.KS 6mo\n\n# line\nuv run --script scripts/yf.py pro 000660.KS 6mo line\n\nIndicators (optional)\n\nAdd flags to include indicator panels/overlays.\n\nuv run --script scripts/yf.py pro TSLA 6mo --rsi --macd --bb\nuv run --script scripts/yf.py pro TSLA 6mo --vwap --atr\n\n--rsi : RSI(14)\n--macd: MACD(12,26,9)\n--bb  : Bollinger Bands(20,2)\n--vwap: VWAP (cumulative for the selected range)\n--atr : ATR(14)"
      },
      {
        "title": "5) One-shot Report (report) ⭐",
        "body": "Prints a compact text summary (price + fundamentals + indicator signals) and automatically generates a Pro chart with BB + RSI + MACD.\n\nuv run --script scripts/yf.py report 000660.KS 6mo\n# output includes: CHART_PATH:/tmp/<...>.png"
      },
      {
        "title": "Ticker Examples",
        "body": "US stocks: AAPL, NVDA, TSLA\nKR stocks: 005930.KS, 000660.KS\nCrypto: BTC-USD, ETH-KRW\nForex: USDKRW=X"
      },
      {
        "title": "Notes / Limitations",
        "body": "Indicators are computed locally from price data (Yahoo does not reliably provide precomputed indicator series).\nData quality may vary by ticker/market (e.g., missing volume for some symbols).\n\nKorean note: 실시간 시세 + 펀더멘털 + 기술지표(차트/요약)까지 한 번에 처리하는 종합 주식 분석 스킬입니다."
      }
    ],
    "body": "Stock Information Explorer\n\nThis skill fetches OHLCV data from Yahoo Finance via yfinance and computes technical indicators locally (no API key required).\n\nCommands\n1) Real-time Quotes (price)\nuv run --script scripts/yf.py price TSLA\n# shorthand\nuv run --script scripts/yf.py TSLA\n\n2) Fundamental Summary (fundamentals)\nuv run --script scripts/yf.py fundamentals NVDA\n\n3) ASCII Trend (history)\nuv run --script scripts/yf.py history AAPL 6mo\n\n4) Professional Chart (pro)\n\nGenerates a high-resolution PNG chart. By default it includes Volume and Moving Averages (MA5/20/60).\n\n# candle (default)\nuv run --script scripts/yf.py pro 000660.KS 6mo\n\n# line\nuv run --script scripts/yf.py pro 000660.KS 6mo line\n\nIndicators (optional)\n\nAdd flags to include indicator panels/overlays.\n\nuv run --script scripts/yf.py pro TSLA 6mo --rsi --macd --bb\nuv run --script scripts/yf.py pro TSLA 6mo --vwap --atr\n\n--rsi : RSI(14)\n--macd: MACD(12,26,9)\n--bb : Bollinger Bands(20,2)\n--vwap: VWAP (cumulative for the selected range)\n--atr : ATR(14)\n5) One-shot Report (report) ⭐\n\nPrints a compact text summary (price + fundamentals + indicator signals) and automatically generates a Pro chart with BB + RSI + MACD.\n\nuv run --script scripts/yf.py report 000660.KS 6mo\n# output includes: CHART_PATH:/tmp/<...>.png\n\nTicker Examples\nUS stocks: AAPL, NVDA, TSLA\nKR stocks: 005930.KS, 000660.KS\nCrypto: BTC-USD, ETH-KRW\nForex: USDKRW=X\nNotes / Limitations\nIndicators are computed locally from price data (Yahoo does not reliably provide precomputed indicator series).\nData quality may vary by ticker/market (e.g., missing volume for some symbols).\n\nKorean note: 실시간 시세 + 펀더멘털 + 기술지표(차트/요약)까지 한 번에 처리하는 종합 주식 분석 스킬입니다."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/kys42/stock-info-explorer",
    "publisherUrl": "https://clawhub.ai/kys42/stock-info-explorer",
    "owner": "kys42",
    "version": "1.2.10",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/stock-info-explorer",
    "downloadUrl": "https://openagent3.xyz/downloads/stock-info-explorer",
    "agentUrl": "https://openagent3.xyz/skills/stock-info-explorer/agent",
    "manifestUrl": "https://openagent3.xyz/skills/stock-info-explorer/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/stock-info-explorer/agent.md"
  }
}