# Send Claude Code Integration 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",
    "name": "Claude Code Integration",
    "source": "tencent",
    "type": "skill",
    "category": "效率提升",
    "sourceUrl": "https://clawhub.ai/hw10181913/claude-code",
    "canonicalUrl": "https://clawhub.ai/hw10181913/claude-code",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/claude-code",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=claude-code",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "claude-code.py",
      "install.sh"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "claude-code",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-29T08:49:16.781Z",
      "expiresAt": "2026-05-06T08:49:16.781Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=claude-code",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=claude-code",
        "contentDisposition": "attachment; filename=\"claude-code-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "claude-code"
      },
      "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"
    },
    "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",
    "downloadUrl": "https://openagent3.xyz/downloads/claude-code",
    "agentUrl": "https://openagent3.xyz/skills/claude-code/agent",
    "manifestUrl": "https://openagent3.xyz/skills/claude-code/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/claude-code/agent.md"
  }
}
```
## Documentation

### Claude Code Integration

This skill integrates Claude Code capabilities into OpenClaw, providing access to AI-assisted coding workflows, documentation, and best practices.

### 📚 Documentation Queries

Query Claude Code documentation
Get best practices and workflows
Learn about settings and customization
Troubleshoot common issues

### 🤖 Subagent Management

Create coding subagents
Manage agent teams
Execute complex development tasks
Automate code reviews and PR workflows

### 🛠️ Development Workflows

Best practices for AI-assisted coding
Common workflows and patterns
Settings and configuration
Troubleshooting guidance

### Query Documentation

# Get documentation about a specific topic
claude-code query "subagents"
claude-code query "best practices"
claude-code query "settings"

### Execute Coding Task

# Create a coding subagent for a complex task
claude-code task --description "Fix the login bug" --priority high
claude-code task --description "Refactor the database layer" --model claude-3-5-sonnet

### List Available Commands

# Show all available commands
claude-code --help

### query

Query Claude Code documentation for a specific topic.

Usage:

claude-code query <topic>

Examples:

claude-code query "subagents"
claude-code query "agent-teams"
claude-code query "best practices"
claude-code query "common workflows"
claude-code query "settings"
claude-code query "troubleshooting"

Topics include:

Subagents and agent teams
Best practices and workflows
Settings and customization
Troubleshooting guide
Plugins and extensions
MCP (Model Context Protocol)
Headless/Programmatic usage

### task

Create and execute a coding subagent task.

Usage:

claude-code task --description "<task description>" [--priority <level>] [--model <model-name>]

Options:

--description, -d: Task description (required)
--priority, -p: Task priority (low/medium/high, default: medium)
--model, -m: Model to use (optional, uses default if not specified)

Examples:

claude-code task --description "Implement user authentication module"
claude-code task --description "Refactor database queries" --priority high
claude-code task --description "Write unit tests for the API" --model claude-3-5-sonnet

### docs

Get overview of Claude Code documentation sections.

Usage:

claude-code docs [section]

Sections:

quickstart - Getting started guide
best-practices - AI coding best practices
common-workflows - Typical development workflows
settings - Customization options
troubleshooting - Common issues and solutions
all - Full documentation overview (default)

Examples:

claude-code docs
claude-code docs quickstart
claude-code docs best-practices
claude-code docs troubleshooting

### info

Display Claude Code configuration and status.

Usage:

claude-code info

Output includes:

Version information
Available subagents
Configured models
MCP servers status

### Integration with OpenClaw

This skill works seamlessly with OpenClaw's native capabilities:

Subagents: Claude Code subagents complement OpenClaw's subagent system
Code Execution: Use with OpenClaw's exec tool for complete development workflow
File Management: Combine with OpenClaw's read/write tools for full codebase management
Sessions: Claude Code tasks integrate with OpenClaw's session management

### Complex Bug Fix

# 1. Query best practices for debugging
claude-code query "debugging best practices"

# 2. Create a subagent to investigate and fix
claude-code task --description "Find and fix the null pointer exception in userService.js" --priority high

# 3. Review the changes
claude-code query "code review best practices"

### New Feature Development

# 1. Get best practices for the feature type
claude-code query "API design best practices"

# 2. Create development task
claude-code task --description "Implement REST API for user management" --priority medium

# 3. Check settings for code style
claude-code query "code style settings"

### Code Review Automation

# 1. Query PR review best practices
claude-code query "PR review workflows"

# 2. Set up automated review task
claude-code task --description "Review all PRs in the last week" --priority low

### Environment Variables

Not required for basic usage. Claude Code integration uses OpenClaw's native capabilities.

### Models

Uses OpenClaw's configured default models. Override per task with --model option.

### Subagent Limits

Managed by OpenClaw's subagent configuration (default: 8 concurrent subagents).

### Notes

This skill provides a wrapper around Claude Code documentation and workflows
Complex coding tasks are executed through OpenClaw's native subagent system
For direct Claude Code CLI usage, install Claude Code separately from https://claude.com/code
All task execution happens through OpenClaw's secure agent infrastructure

### See Also

Claude Code Official Docs: https://code.claude.com/docs
OpenClaw Subagents: Use OpenClaw's native subagent functionality
Best Practices: Integrated from Claude Code guidelines
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: hw10181913
- Version: 1.0.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-04-29T08:49:16.781Z
- Expires at: 2026-05-06T08:49:16.781Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/claude-code)
- [Send to Agent page](https://openagent3.xyz/skills/claude-code/agent)
- [JSON manifest](https://openagent3.xyz/skills/claude-code/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/claude-code/agent.md)
- [Download page](https://openagent3.xyz/downloads/claude-code)