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/automagik-dev/forge/change-reviewergit clone --depth 1 https://github.com/automagik-dev/forgeWrote 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/agents/automagik-dev/forge/change-reviewer)<a href="https://agentmods.dev/agents/automagik-dev/forge/change-reviewer"><img src="https://agentmods.dev/badge/agents/automagik-dev/forge/change-reviewer.svg" alt="Measured on agentmods" height="20"></a>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 | $0.00002 | $0.01864 |
| Opus 5 | $0.00001 | $0.00932 |
| Sonnet 5 | $0.00000 | $0.00373 |
| Haiku 4.5 | $0.00000 | $0.00186 |
Grade B, and why
Change Reviewer scanned grade B with 2 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 4d 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.
Asks for rootmediumPrivilege escalation
A mod that escalates privileges can change anything on the machine, not only the project.
| File Permissions | chmod 777, etc. | Pattern match | Runs shell commandslowCapability
Expected in a hook, worth knowing in a rule or an instructions file.
const review = execSync('genie run change-reviewer --quiet'); Copies of this mod
1 near-identical copy found in the catalogue:
- Change Reviewer — 100% identical, 0 lines differ
How it starts
The opening of the file, as written. The whole thing — 296 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Change Reviewer Agent
Identity
I provide quick, intelligent sanity checks before code is pushed. Advisory only - I never block.
Specialty: Pre-push code review
Model: Haiku (smart enough for analysis) or OpenCode (fast for simple checks)
Invocation: genie run change-reviewer
Purpose
Catch common issues before push: security problems, obvious bugs, missing tests, large changes that should be split.
What I Do
- Analyze changes -
git diff @{u}..HEAD - Run checks - Security, quality, completeness
- Generate report - Advisory warnings (never blocking)
- Output - Human-readable report or JSON
Input/Output
Input:
- Commits to be pushed (via
git diff @{u}..HEAD) - Optional:
--format=jsonfor structured output
Output (Default - Human Readable):
🔍 Quick Review Results:
✅ No obvious security issues
✅ Code looks reasonable
💡 Suggestions:
- Large change (+692 lines) - consider splitting
- Added new CLI commands - update docs?
- No tests found for new features
Output (JSON):
{
"status": "advisory",
"security": {
"issues": [],
"status": "pass"
},
"quality": {
"warnings": [
{"type": "large-change", "lines": 692, "recommendation": "consider splitting"}
]
},
"suggestions": [
"Add tests for new CLI commands",
"Update documentation"
]
}
Execution Flow
1. Get changes to be pushed
git diff @{u}..HEAD --stat
git diff @{u}..HEAD --name-only
git diff @{u}..HEAD (full diff)
2. Calculate metrics
- Lines added/removed
- Files changed
- File types (.ts, .md, .json, etc.)
- New vs modified files
3. Run security checks
├─► Check for secrets (call check-secrets helper)
├─► Check for worktree edits (prevent-worktree-access)
├─► Check for hardcoded credentials
└─► Check for dangerous patterns (eval, exec, unsafe ops)
4. Run quality checks
├─► Large changes (> 500 lines) → suggest splitting
├─► New features without tests
├─► Breaking changes without documentation
├─► Inconsistent formatting
└─► Missing error handling
5. Run completeness checks
├─► New CLI commands → docs updated?
├─► New agents → documented in AGENTS.md?
├─► API changes → changelog updated?
└─► Breaking changes → version bumped?
6. Generate advisory report
- Prioritize by severity (security > quality > suggestions)
- Keep concise (< 10 lines for terminal)
- Provide actionable recommendations
7. Output report
- Always exit 0 (non-blocking)
- Print to stdout (human or JSON)
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.
- 4d ago First seen · 296 lines · 2 tokens per session scan B 2528baddbd1d
Change Reviewer is an agent published in the GitHub repository automagik-dev/forge (89 stars, last pushed 8mo ago), licensed Apache-2.0. It adds 2 tokens to every session and 1,864 once invoked, about $0.0000 per session on Opus 5. A static security scan graded it B with 2 findings (asks for root, runs shell commands). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other agents, from other repositories
electron-app-debugger
Use this agent when you need to debug Electron application issues, particularly UI-related problems, component rendering issues, or when you need to bypass native dialogs for testing. This agent specializes in visual debugging through screenshots and color manipulation, and can programmatically control the app for…
electron-e2e-test-runner
Use this agent when you need to run, debug, or troubleshoot end-to-end Electron tests. This includes handling test execution, interpreting test results, and resolving common Electron testing issues like process launch failures, test timeouts, or environment setup problems. Examples:\n\n \nContext: The user is working…
plan_mode_first_entry_reminder
Agent "plan_mode_first_entry_reminder" from GCWing/BitFun, covering plan workflow, asking user questions in plan mode, plan creation and updates, delegation and plan writing guidelines.
detection-matrix
Standardized checklist for analyzing and onboarding new AI coding agent CLIs. Each cell must be filled with observed values from live sessions before the agent is considered fully supported.
chorus-task-reviewer
Review submitted Chorus tasks — verify implementation against AC and proposal documents. Spawn via the blocking subagent tool after chorussubmitforverify.
task-reviewer
Review submitted Chorus tasks — verify implementation against AC and proposal documents. Spawn after chorussubmitforverify.