Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add commands/cloudwego/abcoder/taskgit clone --depth 1 https://github.com/cloudwego/abcoderWhat it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00016 | $0.00460 |
| Opus 5 | $0.00008 | $0.00230 |
| Sonnet 5 | $0.00003 | $0.00092 |
| Haiku 4.5 | $0.00002 | $0.00046 |
Grade A, and why
ABCoder: Task scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured yesterday.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
What it actually says
根据任务上下文创建一个由 SPEC 驱动的 CODE_TASK 文档。
Guardrails
- 必须提供任务名称,格式为
/task <任务名称>。若未提供,根据任务上下文推荐一个名词(确保清晰、简洁)。 - 文件路径使用
./task/{{MMDD}}/{{NAME}}__CODE_TASK.md格式。 - 严格遵循 CODE_TASK 模板格式和要求。
- 清晰列出所有外部依赖包名称(如有)。
- 创建完成后停止操作,不进行额外工作。
Steps Track these steps as TODOs and complete them one by one.
- 验证用户提供了任务名称,如未提供则提示使用格式
/task <任务名称>。 - 执行
d=$(date +%m%d) && mkdir -p "./task/$d/"创建./task/{{MMDD}}/目录。 - 读取模板文件
{{CLAUDE_HOME_PATH}}/.claude/tmpls/ABCODER_CODE_TASK.md。 - 根据任务上下文和名称,按照模板格式填充内容,生成新文件
./task/{{MMDD}}/{{NAME}}__CODE_TASK.md。 - 检查并清晰列出 CODE_TASK 包含的外部依赖包(如有)。
- 验证生成的文件格式正确,包含所有必要字段。
- 告知用户文件已创建成功,包含文件路径和外部依赖信息(如有),停止操作。
Reference
- 模板文件:
{{CLAUDE_HOME_PATH}}/.claude/tmpls/ABCODER_CODE_TASK.md - 示例:
/task Feature_Auth→ 创建./task/1013/Feature_Auth__CODE_TASK.md/task Bugfix-Api→ 创建./task/1013/Bugfix_Api__CODE_TASK.md
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- yesterday First seen · 33 lines · 0 tokens per session scan A 06f1a977bdcb
ABCoder: Task is a command published in the GitHub repository cloudwego/abcoder (390 stars, last pushed 2mo ago), licensed Apache-2.0. It adds 16 tokens to every session and 460 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other commands, from other repositories
icpg-bootstrap
Infer ReasonNodes from existing git commit history. One-time setup for existing codebases.
version
Display current guide and Claude Code versions.
go-review
Go code review for idiomatic patterns.
docs-review
Phase 4 of documenting-projects: Quality gate with 8 measurable criteria and iteration. Triggers: '/docs-review', invoked by documenting-projects orchestrator.
test
Run all PandaFilter verification steps in order. Stop and report on first failure. This is the required pre-commit gate.
dev-planner
Generate or update DEV-PLAN.md with phased development plan from Product-Spec.md.