CO

Coordinates complex development workflows by delegating tasks to specific AI models and managing file context.

Install

mkdir -p .claude/skills/codeagent && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/3492" && unzip -o skill.zip -d .claude/skills/codeagent && rm skill.zip

Installs to .claude/skills/codeagent

Activation

This is the description your AI agent reads to decide when to run this skill — the better it matches your request, the more reliably it fires.

Execute codeagent-wrapper for multi-backend AI code tasks. Supports Codex, Claude, Gemini, and OpenCode backends with agent presets, skill injection, file references (@syntax), worktree isolation, parallel execution, and structured output.
239 charsno explicit “when” trigger
Advanced

Key capabilities

  • Orchestrates multi-model development
  • Injects specific skills into agent sessions
  • Manages git worktree isolation
  • Executes parallel development tasks
  • Generates structured JSON progress output

How it works

It uses a wrapper script to manage agent presets, model backends, and isolation, delegating development tasks to configured LLM backends.

Inputs & outputs

You give it
Task definition and backend model selection
You get back
Orchestrated code updates and execution logs

When to use codeagent

  • Large-scale codebase refactoring
  • Multi-agent task orchestration
  • Complex code analysis

About this skill

Codeagent Wrapper Integration

Overview

Execute codeagent-wrapper commands with pluggable AI backends (Codex, Claude, Gemini, OpenCode), agent presets, auto-detected skill injection, and parallel task orchestration. Default to background execution, and prefer --parallel whenever work can be split into independent tasks.

When to Use

  • Complex code analysis requiring deep understanding
  • Large-scale refactoring across multiple files
  • Multi-agent orchestration (explore → design → implement → review)
  • Automated code generation with backend/agent selection
  • Parallel task execution with dependency management

Quick Reference

codeagent-wrapper [flags] <task|-> [workdir]
codeagent-wrapper [flags] resume <session_id> <task|-> [workdir]
codeagent-wrapper --parallel [flags] < tasks_config

CLI Flags

FlagDescriptionDefault
--backend <name>Backend: codex, claude, gemini, opencodecodex
--agent <name>Agent preset (from models.json or agents/ dir)none
--model <name>Model override for any backendbackend default
--skills <names>Comma-separated skill names to injectauto-detected
--reasoning-effort <level>Reasoning level: low, medium, highbackend default
--prompt-file <path>Custom prompt file (restricted to ~/.claude or ~/.codeagent/agents/)none
--output <path>Write structured JSON output to filenone
--worktreeExecute in isolated git worktree (branch: do/{task_id})false
--skip-permissionsSkip Claude backend permission promptsfalse
--parallelEnable parallel task execution from stdinfalse
--full-outputInclude full messages in parallel output (default: summary)false
--config <path>Config file path~/.codeagent/config.*
--cleanupClean up old logs and exit
-v, --versionPrint version and exit

Backends

BackendFlagBest For
Codex--backend codex (default)Deep code analysis, complex logic, algorithm optimization, large-scale refactoring
Claude--backend claudeDocumentation, prompt engineering, clear-requirement features
Gemini--backend geminiUI/UX prototyping, design system implementation
OpenCode--backend opencodeLightweight tasks, minimal feature set

Agent Presets

Agent presets bundle backend, model, prompt, and tool control into a reusable name. Use --agent <name> to select.

Sources (checked in order):

  1. ~/.codeagent/models.jsonagents.<name> object
  2. ~/.codeagent/agents/<name>.md → markdown file becomes the prompt

Agent config fields (in models.json):

{
  "agents": {
    "develop": {
      "backend": "codex",
      "model": "gpt-4.1",
      "prompt_file": "~/.codeagent/prompts/develop.md",
      "reasoning": "high",
      "yolo": true,
      "allowed_tools": ["Read", "Write", "Bash"],
      "disallowed_tools": ["WebFetch"]
    }
  }
}

Common agent presets:

AgentPurposeRead-Only
code-explorerTrace code, map architecture, find patternsYes
code-architectDesign approaches, file plans, build sequencesYes
code-reviewerReview for bugs, simplicity, conventionsYes
developImplement code, run tests, make changesNo

Skill Injection

Auto-Detection

When --skills is not specified, skills are auto-detected from the working directory:

Detected FilesInjected Skills
go.mod / go.sumgolang-base-practices
Cargo.tomlrust-best-practices
pyproject.toml / setup.py / requirements.txtpython-best-practices
package.jsonvercel-react-best-practices, frontend-design
vue.config.js / vite.config.ts / nuxt.config.tsvue-web-app

Manual Override

codeagent-wrapper --agent develop --skills golang-base-practices,frontend-design - . <<'EOF'
Implement full-stack feature...
EOF

Skills are loaded from ~/.claude/skills/{name}/SKILL.md, stripped of YAML frontmatter, and injected into the task prompt.

Usage Patterns

Single Task (HEREDOC recommended)

codeagent-wrapper --backend codex - [workdir] <<'EOF'
<task content here>
EOF

Default execution mode is background. Run in foreground only when the next step requires the full response immediately.

When running in foreground, codeagent-wrapper emits liveness frames on stdout before the final answer:

[codeagent-progress] status=started ...
[codeagent-progress] status=streaming ...
[codeagent-progress] status=running ...
[codeagent-progress] status=completed ...

Treat these lines as progress only. Do not conclude "no data returned" and do not start doing the task yourself while progress frames are still arriving.

With Agent Preset

codeagent-wrapper --agent develop --skills golang-base-practices - . <<'EOF'
Implement the authentication middleware following existing patterns.
EOF

Simple Task (short prompts only)

codeagent-wrapper --backend codex "simple task description" [workdir]

Auto-stdin detection: When task length exceeds 800 characters or contains special characters (\n, \, ", ', `, $), stdin mode is used automatically. Use - to force stdin mode explicitly.

Resume Session

codeagent-wrapper --backend codex resume <session_id> - <<'EOF'
<follow-up task>
EOF

# Or with agent preset
codeagent-wrapper --agent develop resume <session_id> - <<'EOF'
<follow-up task>
EOF

Worktree Isolation

Execute in an isolated git worktree to keep changes separate from the main branch:

codeagent-wrapper --agent develop --worktree - . <<'EOF'
Implement feature in isolation...
EOF

Rules:

  • Read-only agents (code-explorer, code-architect, code-reviewer) do NOT need worktree
  • Only develop agent needs worktree when making changes

Parallel Execution

Use --parallel by default for multi-step or multi-agent work. Fall back to single-task mode only when the work is truly linear or the next step depends on the full output of the current task.

Task Config Format

codeagent-wrapper --parallel <<'EOF'
---TASK---
id: <unique_id>
agent: <agent_name>
workdir: <path>
backend: <name>
model: <model_name>
reasoning_effort: <low|medium|high>
skills: <skill1>, <skill2>
dependencies: <id1>, <id2>
session_id: <id>
skip_permissions: true|false
worktree: true|false
---CONTENT---
<task content>
EOF

Task header fields (all optional except id):

FieldDescription
idUnique task identifier (required)
agentAgent preset name
workdirWorking directory
backendOverride global backend
modelOverride model
reasoning_effortReasoning level
skillsComma-separated skill names
dependenciesComma-separated task IDs that must complete first
session_idResume a previous session
skip_permissionsSkip permission prompts (Claude backend)
worktreeExecute in git worktree

Multi-Agent Orchestration Example

codeagent-wrapper --parallel <<'EOF'
---TASK---
id: p1_architecture
agent: code-explorer
workdir: .
---CONTENT---
Map architecture for the authentication subsystem. Return: module map + key files with line numbers.

---TASK---
id: p1_conventions
agent: code-explorer
workdir: .
---CONTENT---
Identify testing patterns, conventions, config. Return: test commands + file locations.

---TASK---
id: p2_design
agent: code-architect
workdir: .
dependencies: p1_architecture, p1_conventions
---CONTENT---
Design minimal-change implementation plan based on architecture analysis.

---TASK---
id: p3_backend
agent: develop
workdir: .
skills: golang-base-practices
dependencies: p2_design
---CONTENT---
Implement backend changes following the design plan.

---TASK---
id: p3_frontend
agent: develop
workdir: .
skills: vercel-react-best-practices,frontend-design
dependencies: p2_design
---CONTENT---
Implement frontend changes following the design plan.

---TASK---
id: p4_review
agent: code-reviewer
workdir: .
dependencies: p3_backend, p3_frontend
---CONTENT---
Review all changes for correctness, edge cases, and KISS compliance.
Classify each issue as BLOCKING or MINOR.
EOF

Dependency Resolution

  • Tasks are topologically sorted (Kahn's algorithm)
  • Circular dependencies are detected and reported
  • Failed parent tasks cause dependent tasks to be skipped
  • Independent tasks at the same level run concurrently

Output Modes

Summary (default): Structured report per task with extracted fields:

=== Execution Report ===
3 tasks | 2 passed | 1 failed

### task_id PASS 92%
Did: Brief description of work done
Files: file1.ts, file2.ts
Tests: 12 passed
Log: /tmp/codeagent-xxx.log

### task_id FAIL
Exit code: 1
Error: Assertion failed
Detail: Expected status 200 but got 401
Log: /tmp/codeagent-zzz.log

Full output (--full-output): Complete task messages included. Use only for debugging specific failures.

Structured JSON Output

codeagent-wrapper --parallel --output results.json <<'EOF'
...
EOF

Produces:

{
  "results": [
    {
      "task_id": "task_1",
      "exit_code": 0,
      "message": "...",
      "session_id": "...",
      "coverage": "92%",
      "files_changed": ["file.ts"],
      "tests_passed": 12,
      "log_path": "/tmp/..."
    }
  ],
  "summary": { "total": 3, "success": 2, "failed": 1 }
}

Return Format

Single task output:

Agent response text here...

---
SESSION_ID: 019a7247-ac9d-71f3-89e2-a823dbd8fd14

Environment Variables

VariableDescriptionDefault
CODEAGENT_SKIP_PERMISSIONSSkip Claude backend permission prompts (true/false)true
CODEX_BYPASS_SANDBOXControl Codex sandbox bypass (

Content truncated.

When not to use it

  • Simple single-file bug fixes
  • Projects where backend API limits are constrained

Prerequisites

Codeagent-wrapper CLIAPI keys for target models (Codex/Claude/Gemini)

Limitations

  • Requires specific environment configurations
  • Complex dependency management across parallel tasks
  • Token usage can scale rapidly

How it compares

It provides structured multi-agent orchestration and worktree isolation instead of single-pass, unstructured prompt execution.

Compared to similar skills

codeagent side by side with the closest alternatives in the catalog.

SkillInstallsUpdatedSafetyDifficulty
codeagent (this skill)24moReviewAdvanced
agent-factory89moReviewAdvanced
claude-opus-4-5-migration98moNo flagsBeginner
subagent-driven-development147moNo flagsAdvanced

Try saying

Example prompts that trigger this skill in your AI assistant.

test-cases

cexll

This skill should be used when generating comprehensive test cases from PRD documents or user requirements. Triggers when users request test case generation, QA planning, test scenario creation, or need structured test documentation. Produces detailed test cases covering functional, edge case, error handling, and state transition scenarios.

57115

product-requirements

cexll

Interactive Product Owner skill for requirements gathering, analysis, and PRD generation. Triggers when users request product requirements, feature specification, PRD creation, or need help understanding and documenting project requirements. Uses quality scoring and iterative dialogue to ensure comprehensive requirements before generating professional PRD documents.

812

skill-install

cexll

Install Claude skills from GitHub repositories with automated security scanning. Triggers when users want to install skills from a GitHub URL, need to browse available skills in a repository, or want to safely add new skills to their Claude environment.

450

browser

cexll

This skill should be used for browser automation tasks using Chrome DevTools Protocol (CDP). Triggers when users need to launch Chrome with remote debugging, navigate pages, execute JavaScript in browser context, capture screenshots, or interactively select DOM elements. No MCP server required.

346

prototype-prompt-generator

cexll

This skill should be used when users need to generate detailed, structured prompts for creating UI/UX prototypes. Trigger when users request help with "create a prototype prompt", "design a mobile app", "generate UI specifications", or need comprehensive design documentation for web/mobile applications. Works with multiple design systems including WeChat Work, iOS Native, Material Design, and Ant Design Mobile.

327

do

cexll

This skill should be used for structured feature development with codebase understanding. Triggers on /do command. Provides a 5-phase workflow (Understand, Clarify, Design, Implement, Complete) using codeagent-wrapper to orchestrate code-explorer, code-architect, code-reviewer, and develop agents in parallel.

110

Search skills

Search the agent skills registry