{
  "schemaVersion": "1.0",
  "item": {
    "slug": "kis-trading",
    "name": "KIS Trading (한국투자증권)",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/tgparkk/kis-trading",
    "canonicalUrl": "https://clawhub.ai/tgparkk/kis-trading",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/kis-trading",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=kis-trading",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "references/kis-api-guide.md",
      "scripts/balance.py",
      "scripts/history.py",
      "scripts/holdings.py",
      "scripts/kis_common.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/kis-trading"
    },
    "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/kis-trading",
    "agentPageUrl": "https://openagent3.xyz/skills/kis-trading/agent",
    "manifestUrl": "https://openagent3.xyz/skills/kis-trading/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/kis-trading/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": "KIS 주식 트레이딩",
        "body": "한국투자증권 Open API를 통한 국내 주식 매매 스킬.\n\nKorean stock trading skill using KIS (Korea Investment & Securities) Open API. Supports balance inquiry, real-time quotes, buy/sell orders, trade history, and market overview for stocks listed on KRX (KOSPI/KOSDAQ)."
      },
      {
        "title": "설정",
        "body": "config 파일(~/.kis-trading/config.ini)에 아래 값을 설정:\n\n[KIS]\nAPP_KEY = your_app_key\nAPP_SECRET = your_app_secret\nACCOUNT_NO = 12345678-01\nBASE_URL = https://openapi.koreainvestment.com:9443\n# 모의투자: https://openapivts.koreainvestment.com:29443\n\n설정 확인:\n\npython3 scripts/setup.py --config ~/.kis-trading/config.ini --check"
      },
      {
        "title": "잔고 조회",
        "body": "\"잔고 보여줘\", \"계좌 잔고\", \"예수금\", \"매수 가능 금액\"\n\npython3 scripts/balance.py --config ~/.kis-trading/config.ini"
      },
      {
        "title": "보유 종목",
        "body": "\"보유 종목\", \"내 주식\", \"수익률\"\n\npython3 scripts/holdings.py --config ~/.kis-trading/config.ini"
      },
      {
        "title": "종목 시세",
        "body": "\"삼성전자 현재가\", \"005930 시세\", \"카카오 주가\"\n\npython3 scripts/quote.py --config ~/.kis-trading/config.ini --code 005930\npython3 scripts/quote.py --config ~/.kis-trading/config.ini --name 삼성전자"
      },
      {
        "title": "매수/매도 주문",
        "body": "\"삼성전자 10주 매수\", \"카카오 5주 매도\"\n\n⚠️ 주문은 반드시 사용자에게 확인을 받은 후 실행할 것!\n\n# 시장가 매수\npython3 scripts/order.py --config ~/.kis-trading/config.ini --side buy --code 005930 --qty 10 --market\n\n# 지정가 매수\npython3 scripts/order.py --config ~/.kis-trading/config.ini --side buy --code 005930 --qty 10 --price 70000\n\n# 매도\npython3 scripts/order.py --config ~/.kis-trading/config.ini --side sell --code 005930 --qty 10 --market\n\n주문 전 반드시:\n\n종목명, 수량, 가격을 사용자에게 보여주고 확인 요청\n--dry-run 으로 주문 내용 미리 확인 가능\n확인 후 실제 주문 실행"
      },
      {
        "title": "매매 내역",
        "body": "\"매매 내역\", \"오늘 체결 내역\", \"주문 내역\"\n\npython3 scripts/history.py --config ~/.kis-trading/config.ini\npython3 scripts/history.py --config ~/.kis-trading/config.ini --start 20240101 --end 20240131"
      },
      {
        "title": "시장 개황",
        "body": "\"시장 개황\", \"거래량 상위\", \"코스피 지수\"\n\npython3 scripts/market.py --config ~/.kis-trading/config.ini --action index\npython3 scripts/market.py --config ~/.kis-trading/config.ini --action volume-rank"
      },
      {
        "title": "주의사항",
        "body": "실전 투자 시 반드시 BASE_URL을 실전 URL로 설정\n모의투자와 실전투자의 TR ID가 다를 수 있음\nAPI 호출은 초당 20건 제한 (자동 제어됨)\n주문은 절대 사용자 확인 없이 실행하지 말 것"
      }
    ],
    "body": "KIS 주식 트레이딩\n\n한국투자증권 Open API를 통한 국내 주식 매매 스킬.\n\nKorean stock trading skill using KIS (Korea Investment & Securities) Open API. Supports balance inquiry, real-time quotes, buy/sell orders, trade history, and market overview for stocks listed on KRX (KOSPI/KOSDAQ).\n\n설정\n\nconfig 파일(~/.kis-trading/config.ini)에 아래 값을 설정:\n\n[KIS]\nAPP_KEY = your_app_key\nAPP_SECRET = your_app_secret\nACCOUNT_NO = 12345678-01\nBASE_URL = https://openapi.koreainvestment.com:9443\n# 모의투자: https://openapivts.koreainvestment.com:29443\n\n\n설정 확인:\n\npython3 scripts/setup.py --config ~/.kis-trading/config.ini --check\n\n잔고 조회\n\n\"잔고 보여줘\", \"계좌 잔고\", \"예수금\", \"매수 가능 금액\"\n\npython3 scripts/balance.py --config ~/.kis-trading/config.ini\n\n보유 종목\n\n\"보유 종목\", \"내 주식\", \"수익률\"\n\npython3 scripts/holdings.py --config ~/.kis-trading/config.ini\n\n종목 시세\n\n\"삼성전자 현재가\", \"005930 시세\", \"카카오 주가\"\n\npython3 scripts/quote.py --config ~/.kis-trading/config.ini --code 005930\npython3 scripts/quote.py --config ~/.kis-trading/config.ini --name 삼성전자\n\n매수/매도 주문\n\n\"삼성전자 10주 매수\", \"카카오 5주 매도\"\n\n⚠️ 주문은 반드시 사용자에게 확인을 받은 후 실행할 것!\n\n# 시장가 매수\npython3 scripts/order.py --config ~/.kis-trading/config.ini --side buy --code 005930 --qty 10 --market\n\n# 지정가 매수\npython3 scripts/order.py --config ~/.kis-trading/config.ini --side buy --code 005930 --qty 10 --price 70000\n\n# 매도\npython3 scripts/order.py --config ~/.kis-trading/config.ini --side sell --code 005930 --qty 10 --market\n\n\n주문 전 반드시:\n\n종목명, 수량, 가격을 사용자에게 보여주고 확인 요청\n--dry-run 으로 주문 내용 미리 확인 가능\n확인 후 실제 주문 실행\n매매 내역\n\n\"매매 내역\", \"오늘 체결 내역\", \"주문 내역\"\n\npython3 scripts/history.py --config ~/.kis-trading/config.ini\npython3 scripts/history.py --config ~/.kis-trading/config.ini --start 20240101 --end 20240131\n\n시장 개황\n\n\"시장 개황\", \"거래량 상위\", \"코스피 지수\"\n\npython3 scripts/market.py --config ~/.kis-trading/config.ini --action index\npython3 scripts/market.py --config ~/.kis-trading/config.ini --action volume-rank\n\n주의사항\n실전 투자 시 반드시 BASE_URL을 실전 URL로 설정\n모의투자와 실전투자의 TR ID가 다를 수 있음\nAPI 호출은 초당 20건 제한 (자동 제어됨)\n주문은 절대 사용자 확인 없이 실행하지 말 것"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/tgparkk/kis-trading",
    "publisherUrl": "https://clawhub.ai/tgparkk/kis-trading",
    "owner": "tgparkk",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/kis-trading",
    "downloadUrl": "https://openagent3.xyz/downloads/kis-trading",
    "agentUrl": "https://openagent3.xyz/skills/kis-trading/agent",
    "manifestUrl": "https://openagent3.xyz/skills/kis-trading/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/kis-trading/agent.md"
  }
}