원클릭으로
coding-agent
// Delegate coding tasks to Claude Code. Use when: building features, creating handlers, refactoring, reviewing PRs, iterative coding. NOT for: simple file edits (use filesystem), or quick config changes (use config_update).
// Delegate coding tasks to Claude Code. Use when: building features, creating handlers, refactoring, reviewing PRs, iterative coding. NOT for: simple file edits (use filesystem), or quick config changes (use config_update).
| name | coding-agent |
| description | Delegate coding tasks to Claude Code. Use when: building features, creating handlers, refactoring, reviewing PRs, iterative coding. NOT for: simple file edits (use filesystem), or quick config changes (use config_update). |
| requires | {"env":[],"bins":["claude"]} |
Delegate coding work to Claude Code via the code_agent tool. You are the orchestrator — describe the task, let the coding agent execute.
npm install, bun add)bun test)config_updaterun_commandcode_agent(
task: "Build a health-check handler in src/scheduler/handlers/health-check.ts that pings an endpoint every 30 seconds and alerts the user if it returns non-200.",
effort: "low"
)
| Effort | Model | Best for |
|---|---|---|
| low (default) | Claude Sonnet | Single-file edits, small fixes, tests, config changes |
| high | Claude Opus | Multi-file features, complex refactors, deep debugging |
Be specific. Include:
Good:
"Create a TypeScript job handler in src/scheduler/handlers/health-check.ts that polls https://example.com/health every 30 seconds. If non-200, return the error as the job result. Follow the JobHandler pattern from existing handlers. Include error handling."
Bad:
"Build me a health checker"
Handlers in src/scheduler/handlers/ are hot-reloaded. The coding agent should:
JobHandler interfaceSkills in skills/ are also hot-loaded. The coding agent should:
skills/skill-creator/SKILL.md for the formatskills/<name>/SKILL.md with YAML frontmatterscripts/, references/, assets/ subdirectoriescwd to the project root so the agent has full context.