{
  "schemaVersion": "1.0",
  "item": {
    "slug": "naverstock-skill",
    "name": "Naver Stock",
    "source": "tencent",
    "type": "skill",
    "category": "数据分析",
    "sourceUrl": "https://clawhub.ai/seungdols/naverstock-skill",
    "canonicalUrl": "https://clawhub.ai/seungdols/naverstock-skill",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/naverstock-skill",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=naverstock-skill",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "index.cjs",
      "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/naverstock-skill"
    },
    "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/naverstock-skill",
    "agentPageUrl": "https://openagent3.xyz/skills/naverstock-skill/agent",
    "manifestUrl": "https://openagent3.xyz/skills/naverstock-skill/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/naverstock-skill/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": "Naver Stock",
        "body": "Fetch real-time stock prices for domestic (KRX) and overseas markets using Naver Finance."
      },
      {
        "title": "Usage",
        "body": "Run the bundled script with a stock name or code.\n\nnode index.cjs \"삼성전자\"\nnode index.cjs \"AAPL\""
      },
      {
        "title": "Output Format",
        "body": "Returns a JSON object with price details.\n\n{\n  \"name\": \"삼성전자\",\n  \"code\": \"005930\",\n  \"price\": 160500,\n  \"change\": -200,\n  \"changePercent\": -0.12,\n  \"nxtPrice\": 160800,\n  \"nxtChange\": 100,\n  \"nxtChangePercent\": 0.06,\n  \"currency\": \"KRW\"\n}"
      },
      {
        "title": "Field Descriptions",
        "body": "name: Stock name.\ncode: Stock symbol/code.\nprice: Current price in regular market.\nchange: Price change in regular market.\nchangePercent: Percentage change in regular market.\nnxtPrice: Current price in Nextrade (NXT) Alternative Trading System.\nnxtChange: Price change in Nextrade.\nnxtChangePercent: Percentage change in Nextrade.\ncurrency: Currency code (e.g., KRW, USD)."
      },
      {
        "title": "About Nextrade (NXT)",
        "body": "Nextrade is an Alternative Trading System (ATS) in Korea that offers extended trading hours.\n\nPre-market: 08:00 ~ 08:50\nAfter-market: 15:30 ~ 20:00 (Can be traded until 8 PM)\nNote: Prices in Nextrade (nxtPrice) may differ from the regular KRX market price, providing off-hours trading opportunities."
      },
      {
        "title": "Domestic Stock",
        "body": "node index.cjs 005930"
      },
      {
        "title": "Overseas Stock",
        "body": "node index.cjs \"Tesla\""
      },
      {
        "title": "Exchange Rate",
        "body": "node index.cjs \"USD\"\nnode index.cjs \"엔\""
      }
    ],
    "body": "Naver Stock\n\nFetch real-time stock prices for domestic (KRX) and overseas markets using Naver Finance.\n\nUsage\n\nRun the bundled script with a stock name or code.\n\nnode index.cjs \"삼성전자\"\nnode index.cjs \"AAPL\"\n\nOutput Format\n\nReturns a JSON object with price details.\n\n{\n  \"name\": \"삼성전자\",\n  \"code\": \"005930\",\n  \"price\": 160500,\n  \"change\": -200,\n  \"changePercent\": -0.12,\n  \"nxtPrice\": 160800,\n  \"nxtChange\": 100,\n  \"nxtChangePercent\": 0.06,\n  \"currency\": \"KRW\"\n}\n\nField Descriptions\nname: Stock name.\ncode: Stock symbol/code.\nprice: Current price in regular market.\nchange: Price change in regular market.\nchangePercent: Percentage change in regular market.\nnxtPrice: Current price in Nextrade (NXT) Alternative Trading System.\nnxtChange: Price change in Nextrade.\nnxtChangePercent: Percentage change in Nextrade.\ncurrency: Currency code (e.g., KRW, USD).\nAbout Nextrade (NXT)\n\nNextrade is an Alternative Trading System (ATS) in Korea that offers extended trading hours.\n\nPre-market: 08:00 ~ 08:50\nAfter-market: 15:30 ~ 20:00 (Can be traded until 8 PM)\nNote: Prices in Nextrade (nxtPrice) may differ from the regular KRX market price, providing off-hours trading opportunities.\nExamples\nDomestic Stock\nnode index.cjs 005930\n\nOverseas Stock\nnode index.cjs \"Tesla\"\n\nExchange Rate\nnode index.cjs \"USD\"\nnode index.cjs \"엔\""
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/seungdols/naverstock-skill",
    "publisherUrl": "https://clawhub.ai/seungdols/naverstock-skill",
    "owner": "seungdols",
    "version": "1.1.1",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/naverstock-skill",
    "downloadUrl": "https://openagent3.xyz/downloads/naverstock-skill",
    "agentUrl": "https://openagent3.xyz/skills/naverstock-skill/agent",
    "manifestUrl": "https://openagent3.xyz/skills/naverstock-skill/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/naverstock-skill/agent.md"
  }
}