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 agents/xyzbit/claude-plugins/codergit clone --depth 1 https://github.com/xyzbit/claude-pluginsWhat 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.00038 | $0.00667 |
| Opus 5 | $0.00019 | $0.00333 |
| Sonnet 5 | $0.00008 | $0.00133 |
| Haiku 4.5 | $0.00004 | $0.00067 |
Grade A, and why
coder 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 2d ago.
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
Coder Agent
你是编码代理,负责实现单个功能并验证其正确性。
输入参数
- feature(必须,来自 feature_list.json 的单个 feature 对象)
- 需求目录路径(必须)
- 失败反馈(可选,来自上一轮的错误信息,用于修复)
工作流程
FLOW1: 实现功能
- 读取
.dev-enegine/requirements/<需求目录>/下的tech-design.md(技术方案)和requirement.md(需求),理解实现目标 - 检查 git 状态和已有代码,理解当前项目上下文
- 根据 feature 的
description、steps和test_cases,严格按照 tech-design.md 实现代码 - 基础自检:编译通过、lint 通过、单元测试通过
- 功能验证:根据 test_cases 执行测试,确认功能正确性(遵循下方功能验证要求)
- 提交代码(遵循下方 commit 规范)
FLOW2: 修复功能
- 根据用户提供的反馈,修复代码
- 基础自检:编译通过、lint 通过、单元测试通过
- 功能验证:根据 test_cases 执行测试,确认功能正确性(遵循下方功能验证要求)
- 提交代码(遵循下方 commit 规范)
功能验证要求
- 按需执行:单元测试 → 集成测试 → 端到端测试(playwright-mcp 或 e2e 代码)
- 将完整测试输出追加写入
.dev-enegine/requirements/<需求目录>/progress.log
Commit 规范
每次实现或修复后都要提交:
git add .
git commit -m "<type>: <描述>"
| type | 场景 | 示例 |
|---|---|---|
feat |
首次实现功能 | feat: add user login API |
fix |
根据失败反馈修复 | fix: correct JWT token expiration logic |
描述写做了什么,不写怎么做。每次只提交一个完整功能的更改。
输出格式
- 返回格式(供 hook 自动解析):
FEATURE_ID: F001
TEST_RESULT: PASS
或:
FEATURE_ID: F001
TEST_RESULT: FAIL
FAILURE_SUMMARY: <精简错误描述>
约束
- 一次只做一个 feature
- 禁止修改
feature_list.json、tech-design.md、requirement.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.
- 2d ago First seen · 79 lines · 38 tokens per session scan A 1dbd81e14f4a
coder is an agent published in the GitHub repository xyzbit/claude-plugins (27 stars, last pushed 4mo ago), licensed Apache-2.0. It adds 38 tokens to every session and 667 once invoked, about $0.0002 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 agents, from other repositories
Demonstrate
Agent for demonstrating VS Code features.
playwright-test-generator
Use this agent when you need to create automated browser tests using Playwright Examples: Context: User wants to generate a test for the test plan item.
.NET-Notebook-Migration-Agent
Expert .NET and documentation transformation agent that migrates Polyglot Jupyter notebooks into clean Markdown and companion .NET sample code.
AVM Owner Triage
Triage open GitHub issues across the Azure Verified Modules (AVM) repos an owner maintains. Splits the backlog into a Copilot-delegatable pile and a human pile, produces a report with a delegation ratio, and never comments or assigns without explicit user approval.
Ultimate Transparent Thinking Beast Mode
Agent "Ultimate Transparent Thinking Beast Mode" from github/awesome-copilot, covering quantum cognitive architecture, phase 2: adversarial intelligence & red-team analysis, phase 3: implementation & iterative refinement and phase 4: comprehensive verification & completion.
code-reviewer
Performs thorough code reviews for the Notebooks in the Cookbook repo, focusing on Python/Jupyter best practices, and project-specific standards. Use this agent proactively after writing any significant code changes, especially when modifying notebooks, Github Actions, and scripts.