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 skills add ZhangShenao/harness9 --skill crgit clone --depth 1 https://github.com/ZhangShenao/harness9Wrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/zhangshenao/harness9/cr)<a href="https://agentmods.dev/skills/zhangshenao/harness9/cr"><img src="https://agentmods.dev/badge/skills/zhangshenao/harness9/cr.svg" alt="Measured on agentmods" height="20"></a>- NVIDIA SkillSpector pass
What 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.1 | $0.00036 | $0.00591 |
| Opus 5 | $0.00018 | $0.00296 |
| Sonnet 5 | $0.00007 | $0.00118 |
| Haiku 4.5 | $0.00004 | $0.00059 |
Grade A, and why
cr 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 8d 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
cr — Code Review
Overview
对当前工作区所有新增或修改的代码执行详细的 Code Review,按严重级别输出问题,不做任何修改。
执行步骤
1. 收集变更范围
git status # 查看新增 / 修改 / 删除的文件列表
git diff # 未暂存的改动
git diff --cached # 已暂存的改动
将两者合并视为本次 Review 的完整范围。
2. 逐文件审查
对每个变更文件,依次检查:
| 维度 | 检查点 |
|---|---|
| 正确性 | 逻辑错误、边界条件、空值/类型异常 |
| 安全性 | SQL 注入、XSS、命令注入、敏感信息硬编码、不安全的默认值 |
| 可维护性 | 函数/类职责单一、命名清晰、不必要的复杂度 |
| 性能 | N+1 查询、不必要的循环、大对象复制 |
| 测试覆盖 | 关键路径是否有对应测试,新代码是否破坏现有测试 |
| 依赖安全 | 新引入的第三方包是否合理,版本是否锁定 |
3. 检查敏感文件
若 git status 中出现以下类型的文件,单独标注,不得进入后续提交:
.env、*.pem、*credentials*、*secret*- 包含明文密码、API Key 的配置文件
4. 输出 Review 报告
按以下格式输出,无问题的级别可省略:
## Code Review 报告
### 🔴 Critical(必须修复,阻断提交)
- `文件路径:行号` — 问题描述
### 🟡 Warning(建议修复)
- `文件路径:行号` — 问题描述
### 🔵 Suggestion(可选优化)
- `文件路径:行号` — 建议描述
### ✅ 总结
- 变更文件数:N
- 通过提交:是 / 否(存在 Critical 问题时为否)
注意事项
- 只审查,不修改代码
- Critical 问题存在时,明确说明不建议提交,等待用户确认修复
- 若变更集为空(
git status无输出),告知用户当前无需 Review
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.
- 8d ago First seen · 70 lines · 36 tokens per session scan A b3bfacb251f9
cr is a skill published in the GitHub repository ZhangShenao/harness9 (138 stars, last pushed today), licensed MIT. It adds 36 tokens to every session and 591 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 skills, from other repositories
autoreview
Pre-commit/ship code review: Codex default; optional Claude or Pi.
rework-rate
Measure and interpret PR rework rate — the emerging 5th DORA metric.
omh-code-review
This is a Hermes-native code-review workflow skill.
revdiff-plan
Review the last Codex assistant message (plan, analysis, or proposal) with inline annotations in a TUI overlay. Extracts the most recent response from Codex rollout files and opens it in revdiff for review and annotation. Activates on "revdiff-plan", "review plan with revdiff", "annotate plan", "review last response"…
code-reviewer
Code review specialist focused on patterns, bugs, security, and performance.
agent-teams-simplify-and-harden
Implementation + audit loop using parallel agent teams with structured simplify, harden, and document passes. Spawns implementation agents to do the work, then audit agents to find complexity, security gaps, and spec deviations, then loops until code compiles cleanly, all tests pass, and auditors find zero issues or…