claude-code

Delegate coding tasks to the Claude Code CLI for features, refactoring, and PR review.

6|1|Updated May 11, 2026
One-click install
npx skills add https://github.com/yakeworld/Synthos --skill claude-code-yakeworld
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: claude-code
Source: https://github.com/yakeworld/Synthos/tree/main/skills/extended/external-automation/automation-skills/autonomous-ai-agents/claude-code
Command: npx skills add https://github.com/yakeworld/Synthos --skill claude-code-yakeworld

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill requires @anthropic-ai/claude-code, claude-code-cli, and includes references (resource) components.

What problem does it solve? Delegating software development work to the Claude Code CLI requires correct invocation patterns—wrong flags cause hung processes, lost output, or silent failures. This Skill encodes the exact command patterns, preflight checks, and error recovery steps needed to run Claude Code reliably for feature development, refactoring, and code review. ## Core Features & Use Cases - Mode Selection: Choose between interactive REPL (pty=true), single-shot tasks (claude "task"), PR review, and batch delegation via delegate_task. - Preflight Validation: Verify CLI installation with which claude before execution and return structured errors with install instructions when missing. - Long-Task Handling: Run lengthy coding jobs with background=true and notify_on_complete for asynchronous completion. - Use Case: Ask the agent to add unit tests to a module; the Skill checks the CLI is installed, launches claude "Add unit tests for Z" with project context in background mode, and reports structured results. ## Quick Start Ask the agent to implement a feature or review a pull request using Claude Code, and it will verify the CLI is installed and launch the task with the correct mode and context.

Frequently Asked Questions about claude-code

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I delegate a coding task to Claude Code CLI?

Run a single-shot task with claude "task description" and include explicit project context such as directory structure and test framework. For long tasks, launch with background=true and notify_on_complete=true so you are notified on completion.

How do I install the Claude Code CLI?

Install it globally via npm with npm install -g @anthropic-ai/claude-code, or via pip with pip install claude-code-cli. Verify the installation by running which claude before delegating any task.

Why does the Claude Code CLI hang when run interactively?

Interactive REPL mode hangs unless pty=true is set, because the CLI expects a pseudo-terminal. Single-shot tasks like claude "task" do not require pty mode and run without it.

What happens if Claude Code CLI is not installed when a task runs?

The Skill runs which claude as a preflight check and returns a structured error with code CLI_NOT_FOUND instead of executing blindly. The error includes recovery instructions with the npm or pip install command.

Claude Code vs Codex CLI vs OpenCode for coding delegation?

Claude Code handles features, refactoring, and PR review through its CLI. The related codex-cli skill targets the Responses API as a primary coding agent, while opencode offers a lightweight alternative using the Chat Completions API.