Change Reviewer

Change Reviewer is an agent for coding agents from automagik-dev/forge. It costs 2 tokens per session (1,864 once invoked), scanned B, original, Apache-2.0.

An advisory code reviewer that performs quick checks on changes before they are pushed. Advisory means it reports concerns but does not stop the push.

In plain words
What is it for?
Use it to inspect the commits waiting to be pushed, run security and quality checks, and produce a readable or JSON report with warnings and suggestions.
Why use it?
It can catch obvious security issues, bugs, missing tests, or changes that may be too large to review comfortably.

Agent

Install

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.

agentmods
npx agentmods add agents/automagik-dev/forge/change-reviewer
Clone the repo
git clone --depth 1 https://github.com/automagik-dev/forge

Wrote 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.

agentmods badge for Change Reviewer

README.md
[![agentmods](https://agentmods.dev/badge/agents/automagik-dev/forge/change-reviewer.svg)](https://agentmods.dev/agents/automagik-dev/forge/change-reviewer)
Your own site
<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>
Per session 2 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,864 The whole file, excluding the scripts and references it only reads on demand.
Security scan B 2 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce 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

Measured 4d ago against content hash 2528baddbd1d, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

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');
Origin

Copies of this mod

1 near-identical copy found in the catalogue:

.genie/code/agents/change-reviewer.md · 296 lines

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

  1. Analyze changes - git diff @{u}..HEAD
  2. Run checks - Security, quality, completeness
  3. Generate report - Advisory warnings (never blocking)
  4. Output - Human-readable report or JSON

Input/Output

Input:

  • Commits to be pushed (via git diff @{u}..HEAD)
  • Optional: --format=json for 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)

Read the full file on GitHub · 296 lines

Changes

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.

  1. 4d ago First seen · 296 lines · 2 tokens per session scan B 2528baddbd1d

Subscribe to this mod's changes

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.

Related

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…

sahithvibudhi/vibe-tree · 380 tokens

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…

sahithvibudhi/vibe-tree · 365 tokens

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.

GCWing/BitFun · 0 tokens

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.

sstraus/tuicommander · 0 tokens

chorus-task-reviewer

Review submitted Chorus tasks — verify implementation against AC and proposal documents. Spawn via the blocking subagent tool after chorussubmitforverify.

Chorus-AIDLC/Chorus · 32 tokens

task-reviewer

Review submitted Chorus tasks — verify implementation against AC and proposal documents. Spawn after chorussubmitforverify.

Chorus-AIDLC/Chorus · 20 tokens