{
  "schemaVersion": "1.0",
  "item": {
    "slug": "claude-code-pro",
    "name": "Claude Code Pro",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/swaylq/claude-code-pro",
    "canonicalUrl": "https://clawhub.ai/swaylq/claude-code-pro",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/claude-code-pro",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=claude-code-pro",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "scripts/list.sh",
      "scripts/monitor.sh",
      "scripts/send.sh",
      "scripts/start.sh"
    ],
    "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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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/claude-code-pro"
    },
    "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/claude-code-pro",
    "agentPageUrl": "https://openagent3.xyz/skills/claude-code-pro/agent",
    "manifestUrl": "https://openagent3.xyz/skills/claude-code-pro/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/claude-code-pro/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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Claude Code Pro ⚡",
        "body": "Production-grade Claude Code workflow that doesn't waste your tokens."
      },
      {
        "title": "The Problem with Other Skills",
        "body": "Most Claude Code tmux skills work like this:\n\nStart task → Poll every 30s → Poll → Poll → Poll → Done\n                 🔥 tokens      🔥       🔥       🔥\n\nEach poll reads 100-200 lines of terminal output, feeds it to your agent, and burns tokens deciding \"is it done yet?\" A 20-minute task = 40 polls = thousands of wasted tokens."
      },
      {
        "title": "How This Skill Works",
        "body": "Start task (with callback) → Wait → 📩 Notification → Read result (50 lines)\n                               😴 zero tokens          ⚡ one read\n\nThe task itself tells you when it's done. Your agent sleeps until notified. One lightweight check confirms the result. That's it."
      },
      {
        "title": "Token Savings Breakdown",
        "body": "Approach20-min taskTokens burnedPoll every 30s40 reads × ~500 tokens~20,000Poll every 60s20 reads × ~500 tokens~10,000This skill1 notification + 1 read~500\n\n80-97% token savings on supervision alone."
      },
      {
        "title": "Smart Dispatch: Know When NOT to Start",
        "body": "Before spawning Claude Code, ask:\n\nSituationAction< 3 files involvedDon't start CC. Just read + edit directly.Single bug fixDon't start CC. Faster to fix inline.Need extensive context exploration✅ Start CCMulti-file refactor✅ Start CCNew feature (5+ files)✅ Start CC\n\nThe fastest token savings come from not spawning a session at all."
      },
      {
        "title": "Quick Start",
        "body": "# Start a task — note the callback at the end\nbash {baseDir}/scripts/start.sh --label auth-refactor --workdir ~/project --task \"Refactor auth module to use JWT.\n\nWhen completely finished, run: openclaw system event --text \\\"Done: JWT auth refactor complete\\\" --mode now\"\n\nThat's the key line: openclaw system event --text \"Done: ...\" --mode now. The task notifies your agent on completion. No polling needed."
      },
      {
        "title": "Task from file (complex requirements)",
        "body": "bash {baseDir}/scripts/start.sh --label my-feature --workdir ~/project \\\n  --task-file /path/to/requirements.md --mode auto\n\nWrite detailed requirements once upfront → fewer mid-task corrections → fewer tokens."
      },
      {
        "title": "Monitor (Only When Needed)",
        "body": "# Lightweight check — 50 lines, minimal tokens\nbash {baseDir}/scripts/monitor.sh --session my-task --lines 50\n\n# JSON mode — structured, even fewer tokens for agent parsing\nbash {baseDir}/scripts/monitor.sh --session my-task --json\n\n# Send follow-up (use sparingly — write requirements upfront instead)\nbash {baseDir}/scripts/send.sh --session my-task --text \"Also add unit tests\"\n\n# Compact context when running long\nbash {baseDir}/scripts/send.sh --session my-task --compact"
      },
      {
        "title": "Manage Sessions",
        "body": "# List all active sessions\nbash {baseDir}/scripts/list.sh          # human-readable\nbash {baseDir}/scripts/list.sh --json   # structured\n\n# Stop sessions\nbash {baseDir}/scripts/stop.sh --session my-task\nbash {baseDir}/scripts/stop.sh --all"
      },
      {
        "title": "Attach (Human SSH Access)",
        "body": "tmux -L cc attach -t cc-<label>"
      },
      {
        "title": "Agent Workflow",
        "body": "1. DECIDE — Is this a 3+ file task? No → just edit. Yes → continue.\n2. START — start.sh with detailed task + completion callback\n3. WAIT — Do other work. Zero tokens spent watching.\n4. NOTIFIED — Receive \"Done: ...\" event\n5. CHECK — monitor.sh --lines 50 to confirm result\n6. CLEANUP — stop.sh to end session\n\nFallback: If no notification after 15 minutes, one lightweight poll with --json."
      },
      {
        "title": "Completion Callback Template",
        "body": "Always append to your task prompt:\n\nWhen completely finished, run this command to notify:\nopenclaw system event --text \"Done: [brief description]\" --mode now\n\nThis is what makes the whole approach work. The task signals completion; your agent doesn't need to guess."
      },
      {
        "title": "Modes",
        "body": "ModeFlagBehaviorauto--mode autoFull permissions, runs freely (default)"
      },
      {
        "title": "Design Choices",
        "body": "Isolated tmux socket (-L cc) — doesn't interfere with your tmux sessions\ncc- prefix on all sessions — easy to list/filter\nBracketed paste for multi-line prompts — no escaping issues\nJSON output from list/monitor — agent-friendly, fewer tokens to parse"
      },
      {
        "title": "Files",
        "body": "ScriptPurposescripts/start.shLaunch CC in tmux with taskscripts/monitor.shLightweight output capturescripts/send.shSend prompts / compact / approvescripts/list.shList active sessionsscripts/stop.shKill sessions"
      }
    ],
    "body": "Claude Code Pro ⚡\n\nProduction-grade Claude Code workflow that doesn't waste your tokens.\n\nThe Problem with Other Skills\n\nMost Claude Code tmux skills work like this:\n\nStart task → Poll every 30s → Poll → Poll → Poll → Done\n                 🔥 tokens      🔥       🔥       🔥\n\n\nEach poll reads 100-200 lines of terminal output, feeds it to your agent, and burns tokens deciding \"is it done yet?\" A 20-minute task = 40 polls = thousands of wasted tokens.\n\nHow This Skill Works\nStart task (with callback) → Wait → 📩 Notification → Read result (50 lines)\n                               😴 zero tokens          ⚡ one read\n\n\nThe task itself tells you when it's done. Your agent sleeps until notified. One lightweight check confirms the result. That's it.\n\nToken Savings Breakdown\nApproach\t20-min task\tTokens burned\nPoll every 30s\t40 reads × ~500 tokens\t~20,000\nPoll every 60s\t20 reads × ~500 tokens\t~10,000\nThis skill\t1 notification + 1 read\t~500\n\n80-97% token savings on supervision alone.\n\nSmart Dispatch: Know When NOT to Start\n\nBefore spawning Claude Code, ask:\n\nSituation\tAction\n< 3 files involved\tDon't start CC. Just read + edit directly.\nSingle bug fix\tDon't start CC. Faster to fix inline.\nNeed extensive context exploration\t✅ Start CC\nMulti-file refactor\t✅ Start CC\nNew feature (5+ files)\t✅ Start CC\n\nThe fastest token savings come from not spawning a session at all.\n\nQuick Start\n# Start a task — note the callback at the end\nbash {baseDir}/scripts/start.sh --label auth-refactor --workdir ~/project --task \"Refactor auth module to use JWT.\n\nWhen completely finished, run: openclaw system event --text \\\"Done: JWT auth refactor complete\\\" --mode now\"\n\n\nThat's the key line: openclaw system event --text \"Done: ...\" --mode now. The task notifies your agent on completion. No polling needed.\n\nTask from file (complex requirements)\nbash {baseDir}/scripts/start.sh --label my-feature --workdir ~/project \\\n  --task-file /path/to/requirements.md --mode auto\n\n\nWrite detailed requirements once upfront → fewer mid-task corrections → fewer tokens.\n\nMonitor (Only When Needed)\n# Lightweight check — 50 lines, minimal tokens\nbash {baseDir}/scripts/monitor.sh --session my-task --lines 50\n\n# JSON mode — structured, even fewer tokens for agent parsing\nbash {baseDir}/scripts/monitor.sh --session my-task --json\n\n# Send follow-up (use sparingly — write requirements upfront instead)\nbash {baseDir}/scripts/send.sh --session my-task --text \"Also add unit tests\"\n\n# Compact context when running long\nbash {baseDir}/scripts/send.sh --session my-task --compact\n\nManage Sessions\n# List all active sessions\nbash {baseDir}/scripts/list.sh          # human-readable\nbash {baseDir}/scripts/list.sh --json   # structured\n\n# Stop sessions\nbash {baseDir}/scripts/stop.sh --session my-task\nbash {baseDir}/scripts/stop.sh --all\n\nAttach (Human SSH Access)\ntmux -L cc attach -t cc-<label>\n\nAgent Workflow\n1. DECIDE — Is this a 3+ file task? No → just edit. Yes → continue.\n2. START — start.sh with detailed task + completion callback\n3. WAIT — Do other work. Zero tokens spent watching.\n4. NOTIFIED — Receive \"Done: ...\" event\n5. CHECK — monitor.sh --lines 50 to confirm result\n6. CLEANUP — stop.sh to end session\n\n\nFallback: If no notification after 15 minutes, one lightweight poll with --json.\n\nCompletion Callback Template\n\nAlways append to your task prompt:\n\nWhen completely finished, run this command to notify:\nopenclaw system event --text \"Done: [brief description]\" --mode now\n\n\nThis is what makes the whole approach work. The task signals completion; your agent doesn't need to guess.\n\nModes\nMode\tFlag\tBehavior\nauto\t--mode auto\tFull permissions, runs freely (default)\nDesign Choices\nIsolated tmux socket (-L cc) — doesn't interfere with your tmux sessions\ncc- prefix on all sessions — easy to list/filter\nBracketed paste for multi-line prompts — no escaping issues\nJSON output from list/monitor — agent-friendly, fewer tokens to parse\nFiles\nScript\tPurpose\nscripts/start.sh\tLaunch CC in tmux with task\nscripts/monitor.sh\tLightweight output capture\nscripts/send.sh\tSend prompts / compact / approve\nscripts/list.sh\tList active sessions\nscripts/stop.sh\tKill sessions"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/swaylq/claude-code-pro",
    "publisherUrl": "https://clawhub.ai/swaylq/claude-code-pro",
    "owner": "swaylq",
    "version": "1.1.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/claude-code-pro",
    "downloadUrl": "https://openagent3.xyz/downloads/claude-code-pro",
    "agentUrl": "https://openagent3.xyz/skills/claude-code-pro/agent",
    "manifestUrl": "https://openagent3.xyz/skills/claude-code-pro/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/claude-code-pro/agent.md"
  }
}