Integrate with Claude Code CLI for delegating complex coding tasks. Use when you need to spawn a separate Claude Code instance to work on files, run tests, or perform multi-step coding operations in a specific directory. Enables "Claude calling Claude" patterns for parallel work or specialized contexts.
66
79%
Does it follow best practices?
Run evals on this skill
Adds up to 20 points to the overall score
View guide
Passed
No findings from the security scan
Fix and improve this skill with Tessl
tessl review fix ./planning/done/claude-code-integration/claude-code-bridge/skill/SKILL.mdDelegate coding tasks to Claude Code CLI from any context.
If the claude-code-mcp server is configured, use the MCP tools:
Use claude_prompt to ask Claude Code: "Refactor the authentication module to use JWT"Tools available:
claude_prompt - Send a prompt to Claude Codeclaude_continue - Continue most recent conversationclaude_resume - Resume a specific session by IDclaude_version - Get version infoExecute Claude Code directly:
# Single prompt
claude -p "List all TODO comments in this project" --output-format json
# Continue conversation
claude -p "Now fix the first TODO" --continue
# Resume specific session
claude -p "What files did we modify?" --resume <session-id>use claude_code_rs::ClaudeCodeClient;
let client = ClaudeCodeClient::new()?;
let response = client.prompt("Analyze this codebase").await?;
println!("{}", response.text());Add to Claude Desktop's claude_desktop_config.json:
{
"mcpServers": {
"claude-code": {
"command": "npx",
"args": ["@anthropic/claude-code-mcp"]
}
}
}Or for Claude Code's ~/.claude/settings.json:
{
"mcpServers": {
"claude-code-bridge": {
"command": "node",
"args": ["/path/to/mcp-server/dist/index.js"]
}
}
}working_dir to give Claude Code proper contextI'll use Claude Code to review the PR changes:
[claude_prompt]
prompt: "Review the diff in pr-123.patch for security issues and code quality. Provide specific feedback."
working_dir: "/home/user/project"Let me have Claude Code generate tests:
[claude_prompt]
prompt: "Generate comprehensive unit tests for src/auth/*.ts. Use vitest and aim for 90% coverage."
working_dir: "/home/user/project"[claude_prompt]
prompt: "Identify all uses of deprecated API v1 in this codebase"
working_dir: "/home/user/project"
# After reviewing results:
[claude_continue]
prompt: "Now migrate the first 3 files you found to API v2"npm install -g @anthropic-ai/claude-code)timeout_secs for complex tasksabd89fa
Also appears in
since Aug 28, 2026
If you maintain this skill, you can claim it as your own. Once claimed, you can manage eval scenarios, bundle related skills, attach documentation or rules, and ensure cross-agent compatibility.