claude-code
Delegate coding tasks to Claude Code, an expert AI coding agent powered by Anthropic
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Delegate coding tasks to Claude Code, an expert AI coding agent powered by Anthropic
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
| name | claude-code |
| description | Delegate coding tasks to Claude Code, an expert AI coding agent powered by Anthropic |
Use the claude_code tool when the user asks you to:
Look for keywords like: "code", "write", "build", "implement", "fix", "debug", "refactor", "create a script", "make a program", "review", or any request that involves programming.
Do not use claude_code for:
task (required)The coding task or prompt. Be specific about what to build/change, which files are involved, and any constraints.
complexity (optional, default: "medium")Controls which Claude model and timeout to use:
| Value | Model | Timeout | Use When |
|---|---|---|---|
"simple" | Haiku (fast) | 5 min | Explanations, small edits, quick code questions |
"medium" | Sonnet (capable) | 10 min | Most coding tasks, bug fixes, new features |
"complex" | Sonnet (capable) | 15 min | Large refactors, multi-file changes, complex implementations |
mode (optional, default: "code")Controls what Claude Code is allowed to do:
| Value | Permissions | Use When |
|---|---|---|
"code" | Read + write/edit files | You need code changes made (default) |
"review" | Read-only access | Code review, analysis, understanding code without changing it |
context (optional)Additional project context to include with the task. Pass relevant information from the conversation that Claude Code might need, such as error messages, user requirements, or file paths mentioned earlier.
claude_code(
task="Explain what the create_genie_agent function does in genie/agent.py",
complexity="simple",
mode="review"
)
claude_code(
task="Fix the bug where web_search results are not being displayed correctly",
complexity="medium",
mode="code",
context="The user reported that search results show 'None' instead of snippets. Error traceback points to tools/web_search.py line 15."
)
claude_code(
task="Add a new REST API endpoint that exposes Genie as an HTTP service with streaming responses",
complexity="complex",
mode="code",
context="Should use FastAPI, support SSE streaming, and integrate with the existing agent.py create_genie_agent function."
)
claude_code(
task="Review the Telegram bot integration for security issues and potential improvements",
complexity="medium",
mode="review"
)
Be specific in the task you send to Claude Code. Include:
context to pass error messages, stacktraces, or conversation details