# Send cc 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. 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. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "cc",
    "name": "cc",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/artwalker/cc",
    "canonicalUrl": "https://clawhub.ai/artwalker/cc",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/cc",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=cc",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "references/relay-mode.md",
      "scripts/cc.sh"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "cc",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-11T19:38:20.716Z",
      "expiresAt": "2026-05-18T19:38:20.716Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=cc",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=cc",
        "contentDisposition": "attachment; filename=\"cc-2.1.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "cc"
      },
      "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/cc"
    },
    "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/cc",
    "downloadUrl": "https://openagent3.xyz/downloads/cc",
    "agentUrl": "https://openagent3.xyz/skills/cc/agent",
    "manifestUrl": "https://openagent3.xyz/skills/cc/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/cc/agent.md"
  }
}
```
## Documentation

### cc

Short operator commands for Claude Code relay sessions.

Requires: claude-relay skill must be installed.

### Script

All commands execute via:

{baseDir}/scripts/cc.sh <raw-args>

### Command routing

Parse user input and route:

projects / list → list available projects from map + project root
on <project> / start <project> → start or reuse Claude session (fuzzy match)
off [project] / stop [project] → stop session (default: last project)
tail [project] [lines] → show recent output (default: 120 lines)
status → list active relay sessions
/cc (no args) → show inline button menu (if platform supports)
/cc on (no project) → show project picker buttons
Any other text → relay mode send (see below)

For the "any other text" case: if the first token resolves to an active project session, treat it as explicit project target and use remaining text as the message.

### Relay mode

After on <project>, enter relay mode. This is the critical behavior contract:

ALL user messages are forwarded to Claude Code — no exceptions. Do NOT interpret, answer, or act on the message yourself. You are a transparent pipe.
Forward via scripts/cc.sh send → wait for output → return final result only.
The ONLY messages NOT forwarded are cc commands themselves: off, tail, status, projects, /cc.
Relay mode ends on off, stop, or /cc menu invocation.

Example:

[relay mode active, project=marvis]
User: "帮我查一下这个 bug 的原因"
→ cc.sh send marvis "帮我查一下这个 bug 的原因"
→ wait for Claude Code output
→ return result to user
WRONG: answering the question yourself

For button specs, output formatting, approval handling, and callback routing, see relay-mode.md.

### Key principles

Never self-answer in relay mode: forward everything, return only Claude Code's output.
Final result only: one message per interaction, no progress updates.
Choices → buttons: numbered menus in Claude Code output become inline buttons.
Tool call discipline: button/menu messages = tool call + NO_REPLY, no surrounding text.

### Environment variables

VariableDefaultDescriptionCLAUDE_RELAY_DIR(auto-detected)Path to claude-relay skill directoryCLAUDE_RELAY_ROOT$HOME/projectsRoot directory for project discoveryCLAUDE_RELAY_MAP<relay-skill-dir>/projects.mapPath to project alias map file
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: artwalker
- 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-11T19:38:20.716Z
- Expires at: 2026-05-18T19:38:20.716Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/cc)
- [Send to Agent page](https://openagent3.xyz/skills/cc/agent)
- [JSON manifest](https://openagent3.xyz/skills/cc/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/cc/agent.md)
- [Download page](https://openagent3.xyz/downloads/cc)