Run verification

Verify what AI coding agents changed before shipping.

AI agents report completion without a structured verification step. RunTrim checks changed files, scope adherence, and missing proof after the run so risky output does not ship unreviewed.

Claude CodeCursorCodex CLIChatGPT

01 / The problem

What goes wrong

  • AI coding agents report completion but changed files are not always verified.
  • Scope drift goes undetected until a diff review or a production incident.
  • Verification debt accumulates silently across multiple sessions.

02 / Root cause

Why this happens

  • Agent UIs surface conversation output, not a structured list of changed paths.
  • Engineers move fast and skip manual diff review under time pressure.
  • Without a defined verification step, completion is assumed rather than confirmed.

03 / Without RunTrim

Manual workaround

  1. 1Run git diff after each agent session and manually review every changed file.
  2. 2Compare changes against original task intent to identify scope violations.
  3. 3Document missing proof and unresolved checks before moving to the next task.

04 / With RunTrim

RunTrim workflow

runtrim
local
$runtrim go "your task"
$runtrim watch
$runtrim check
$runtrim report

Privacy and trust

  • Source code stays local in V1.
  • No account required for the Free CLI.
  • RunTrim tracks changed file paths, run status, verification debt, and local memory.
  • Cloud sync is Pro early access and metadata-only.

05 / FAQ

Common questions

What does runtrim check do?

It evaluates the current run against the defined task, checks changed file paths against allowed scope, and surfaces verification debt and missing proof.

What is verification debt?

Verification debt is the accumulated set of checks and confirmations that were defined before the run but not yet confirmed as passing after it.

Does RunTrim run tests automatically?

No. RunTrim tracks which verifications were defined and which are still outstanding. Running the actual tests is the engineer's responsibility.

What does runtrim report produce?

A structured summary of the run including status, changed paths, risk indicators, verification debt, and recommended follow-up actions.

Does RunTrim read file contents?

RunTrim reads changed file paths and project config locally. It does not read file contents or upload source code in V1.

Related resources

Check what actually changed

Run runtrim check after every agent session to surface scope violations and verification debt before they ship.

terminal
$npm install -g runtrim
$runtrim go "your task"

Free in V1 · No account required · Local-first · Agent-agnostic