Agenter Coder
/install agenter-coder
Agenter Coder
Instead of writing code tool-by-tool (filling your context window with file contents), delegate to a purpose-built coding agent that runs in its own process. It has its own tools, validates its output with AST parsing, and comes back with structured results. Your context stays clean.
Why this instead of coding directly
- Your context window stays clean. The sub-agent does all the file reading, editing, and bash execution in its own process. You only see the final result.
- Automatic validation and retry. Every iteration runs AST syntax checks (and optional Bandit security scans). If code has errors, the agent retries automatically — no manual back-and-forth.
- Hard budget enforcement. Set a dollar limit, token limit, or time limit. The agent stops when it hits the cap — no surprise bills.
- Backend portability. Same interface whether you're using Claude, GPT, or open-source models. Switch with one flag.
When to use
Use this skill when the user asks to:
- Write, create, or generate code for a project
- Modify, refactor, or update existing code
- Fix bugs in a codebase
- Create entire applications or components
- Generate tests for existing code
Do NOT use for: reading files, explaining code, or answering questions. Use your own tools for those — they don't need a sub-agent.
How to run
python3 {SKILL_DIR}/scripts/agenter_cli.py \
--prompt "\x3Cthe coding task>" \
--cwd "\x3Cworkspace directory>" \
--backend "anthropic-sdk" \
--max-cost-usd 2.0 \
--max-iterations 5 \
--sandbox
Parameters
| Flag | Required | Default | Description |
|---|---|---|---|
--prompt |
Yes | — | The coding task. Be specific about what to build. |
--cwd |
Yes | — | Working directory. Use the current workspace or a subdirectory. |
--backend |
No | anthropic-sdk |
Runtime: anthropic-sdk, claude-code, codex, or openhands. |
--model |
No | auto | Model override (e.g., claude-sonnet-4-20250514, gpt-5.4). |
--max-cost-usd |
No | unlimited | Maximum spend in USD. |
--max-tokens |
No | unlimited | Maximum total tokens (input + output). |
--max-time-seconds |
No | unlimited | Maximum wall clock time. |
--max-iterations |
No | 5 |
Max validation/retry iterations. |
--allowed-write-paths |
No | all in cwd | Glob patterns for allowed writes (e.g., "*.py" "*.ts"). |
--sandbox / --no-sandbox |
No | --sandbox |
Sandboxed execution (recommended). |
--stream |
No | off | Emit NDJSON progress events for real-time updates. |
Cost awareness
Set budget limits based on task complexity. Always tell the user the estimated cost.
| Task type | Suggested --max-cost-usd |
Suggested --max-iterations |
|---|---|---|
| Simple script / single file | 0.50 | 3 |
| Small app / multiple files | 2.00 | 5 |
| Complex refactoring / full project | 5.00 | 7 |
Backend selection
Default to anthropic-sdk unless the user asks for a specific backend. Check
{SKILL_DIR}/references/backends.md if the user asks about backend differences.
- anthropic-sdk — Default. Claude Sonnet/Opus. Works with
ANTHROPIC_API_KEYor AWS Bedrock. - claude-code — Claude Code CLI runtime. Native OS-level sandbox, battle-tested file tools.
- codex — OpenAI's gpt-5.4/gpt-5.4-mini. Requires
OPENAI_API_KEY. - openhands — Any model via litellm (including local). Must use
--no-sandbox.
Reading the output
The script outputs JSON to stdout:
{
"status": "completed",
"summary": "Created main.py with FastAPI app and test_main.py",
"files_modified": ["main.py", "test_main.py"],
"files": {"main.py": "...", "test_main.py": "..."},
"iterations": 2,
"total_tokens": 15000,
"total_cost_usd": 0.045,
"total_duration_seconds": 12.3
}
Status values
| Status | Meaning | What to do |
|---|---|---|
completed |
Task succeeded, files written to disk. | Report summary and files to user. |
completed_with_limit_exceeded |
Task succeeded but used more resources than configured. | Report success + warn about cost. |
budget_exceeded |
Stopped because budget ran out before completion. | Tell user, ask if they want to retry with higher budget. |
refused |
The model refused the request (safety/policy). | Report refusal reason to user. |
failed |
Unrecoverable error. | Report error, suggest checking logs. |
After running
- Check the
statusfield. - If
completed: the files are already written to disk in--cwd. Usereadto inspect them if the user wants to review. - Report the summary, cost, and files modified to the user.
- If
failedorbudget_exceeded: report the issue and ask how to proceed.
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install agenter-coder - 安装完成后,直接呼叫该 Skill 的名称或使用
/agenter-coder触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
Agenter Coder 是什么?
Delegate coding tasks to a separate autonomous agent with AST validation, security scanning, and automatic retry. Supports 4 backends (Claude Code, Codex, Op... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 108 次。
如何安装 Agenter Coder?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install agenter-coder」即可一键安装,无需额外配置。
Agenter Coder 是免费的吗?
是的,Agenter Coder 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
Agenter Coder 支持哪些平台?
Agenter Coder 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 Agenter Coder?
由 Gabriel Hurtado(@gabriel-hurtado)开发并维护,当前版本 v0.1.1。