# Send Claude Code Pro to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- 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.
## Suggested prompts
### New install

```text
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.
```
### Upgrade existing

```text
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.
```
## Machine-readable fields
```json
{
  "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": {
    "downloadUrl": "/downloads/claude-code-pro",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=claude-code-pro",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "scripts/list.sh",
      "scripts/monitor.sh",
      "scripts/send.sh",
      "scripts/start.sh"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "claude-code-pro",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-01T11:29:40.196Z",
      "expiresAt": "2026-05-08T11:29:40.196Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=claude-code-pro",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=claude-code-pro",
        "contentDisposition": "attachment; filename=\"claude-code-pro-1.1.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "claude-code-pro"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "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."
      ]
    }
  },
  "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"
  }
}
```
## Documentation

### Claude Code Pro ⚡

Production-grade Claude Code workflow that doesn't waste your tokens.

### The Problem with Other Skills

Most Claude Code tmux skills work like this:

Start task → Poll every 30s → Poll → Poll → Poll → Done
                 🔥 tokens      🔥       🔥       🔥

Each 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.

### How This Skill Works

Start task (with callback) → Wait → 📩 Notification → Read result (50 lines)
                               😴 zero tokens          ⚡ one read

The task itself tells you when it's done. Your agent sleeps until notified. One lightweight check confirms the result. That's it.

### Token Savings Breakdown

Approach20-min taskTokens burnedPoll every 30s40 reads × ~500 tokens~20,000Poll every 60s20 reads × ~500 tokens~10,000This skill1 notification + 1 read~500

80-97% token savings on supervision alone.

### Smart Dispatch: Know When NOT to Start

Before spawning Claude Code, ask:

SituationAction< 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

The fastest token savings come from not spawning a session at all.

### Quick Start

# Start a task — note the callback at the end
bash {baseDir}/scripts/start.sh --label auth-refactor --workdir ~/project --task "Refactor auth module to use JWT.

When completely finished, run: openclaw system event --text \\"Done: JWT auth refactor complete\\" --mode now"

That's the key line: openclaw system event --text "Done: ..." --mode now. The task notifies your agent on completion. No polling needed.

### Task from file (complex requirements)

bash {baseDir}/scripts/start.sh --label my-feature --workdir ~/project \\
  --task-file /path/to/requirements.md --mode auto

Write detailed requirements once upfront → fewer mid-task corrections → fewer tokens.

### Monitor (Only When Needed)

# Lightweight check — 50 lines, minimal tokens
bash {baseDir}/scripts/monitor.sh --session my-task --lines 50

# JSON mode — structured, even fewer tokens for agent parsing
bash {baseDir}/scripts/monitor.sh --session my-task --json

# Send follow-up (use sparingly — write requirements upfront instead)
bash {baseDir}/scripts/send.sh --session my-task --text "Also add unit tests"

# Compact context when running long
bash {baseDir}/scripts/send.sh --session my-task --compact

### Manage Sessions

# List all active sessions
bash {baseDir}/scripts/list.sh          # human-readable
bash {baseDir}/scripts/list.sh --json   # structured

# Stop sessions
bash {baseDir}/scripts/stop.sh --session my-task
bash {baseDir}/scripts/stop.sh --all

### Attach (Human SSH Access)

tmux -L cc attach -t cc-<label>

### Agent Workflow

1. DECIDE — Is this a 3+ file task? No → just edit. Yes → continue.
2. START — start.sh with detailed task + completion callback
3. WAIT — Do other work. Zero tokens spent watching.
4. NOTIFIED — Receive "Done: ..." event
5. CHECK — monitor.sh --lines 50 to confirm result
6. CLEANUP — stop.sh to end session

Fallback: If no notification after 15 minutes, one lightweight poll with --json.

### Completion Callback Template

Always append to your task prompt:

When completely finished, run this command to notify:
openclaw system event --text "Done: [brief description]" --mode now

This is what makes the whole approach work. The task signals completion; your agent doesn't need to guess.

### Modes

ModeFlagBehaviorauto--mode autoFull permissions, runs freely (default)

### Design Choices

Isolated tmux socket (-L cc) — doesn't interfere with your tmux sessions
cc- prefix on all sessions — easy to list/filter
Bracketed paste for multi-line prompts — no escaping issues
JSON output from list/monitor — agent-friendly, fewer tokens to parse

### Files

ScriptPurposescripts/start.shLaunch CC in tmux with taskscripts/monitor.shLightweight output capturescripts/send.shSend prompts / compact / approvescripts/list.shList active sessionsscripts/stop.shKill sessions
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: swaylq
- Version: 1.1.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-01T11:29:40.196Z
- Expires at: 2026-05-08T11:29:40.196Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/claude-code-pro)
- [Send to Agent page](https://openagent3.xyz/skills/claude-code-pro/agent)
- [JSON manifest](https://openagent3.xyz/skills/claude-code-pro/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/claude-code-pro/agent.md)
- [Download page](https://openagent3.xyz/downloads/claude-code-pro)