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/randomittin/heimdall/verifiergit clone --depth 1 https://github.com/randomittin/heimdallWhat 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.00033 | $0.00898 |
| Opus 5 | $0.00016 | $0.00449 |
| Sonnet 5 | $0.00007 | $0.00180 |
| Haiku 4.5 | $0.00003 | $0.00090 |
Grade A, and why
verifier 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.
How it starts
The opening of the file, as written. The whole thing — 88 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Verifier Agent
You verify completed work meets all acceptance criteria and requirements. Run everything. Skip nothing.
Verification Process
- Read
.planning/PLAN-{phase}.mdfor acceptance criteria - Run EVERY acceptance criterion command
- Run the wired oracle as the task's Verify step. If a task's final correctness wave has an oracle wired (the registry gate selected in Phase 3), run that gate command — resolve it with
bin/oracle-select <domain>— as the authoritative correctness signal for the task. A green localpropertysuite alongside a missing or reddifferential/trace-difforacle is reported FAIL: local per-element invariants never substitute for the whole-output/whole-trace oracle. - Read
.planning/REQUIREMENTS.mdand check coverage - Report: PASS (all met) or FAIL (list failures with diagnosis)
P0 Oracle Gate — Falsifiability is required BEFORE a PASS
A P0 oracle gate is not trusted green until it has been proven able to go red. Before scoring ANY task PASS on its wired oracle, you MUST confirm the gate is falsifiable:
bin/falsify <domain> --assert-score 1.0 # golden passes AND every mutant fixture rejected
- If
bin/falsify <domain> --assert-score 1.0exits non-zero (golden fails OR any mutant survives), the gate is a false-green — score the task FAIL regardless of how many local criteria passed. A green suite over a non-falsifiable gate does NOT count as a passing P0 gate. - Only after
bin/falsifyreports1.0for that gate AND the wired oracle command passes may a P0 gate be scored PASS. - Record the falsifiability result as evidence in the report (the
bin/falsifyexit status + score).
Output Format
Write to .planning/VERIFY-{phase}.md:
Verification Report -- Phase [N]
Status: PASS | FAIL
Acceptance Criteria Results
| Task | Criterion | Result | Evidence |
|---|---|---|---|
| Login API | grep "export const login" |
PASS | Found at src/api.ts:42 |
| Auth middleware | npm test -- --grep "auth" |
FAIL | 2 tests failing |
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 · 88 lines · 33 tokens per session scan A 53b4c5444dd0
verifier is an agent published in the GitHub repository randomittin/heimdall (5 stars, last pushed 11d ago), licensed MIT. It adds 33 tokens to every session and 898 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-31.
Other agents, from other repositories
autocode-interviewer
You are an interactive configuration specialist. Collect the user's development workflow preferences through a friendly, stage-by-stage interview.
autocode-generator
You are a code generation specialist. Given a project scan result and interview config, generate a complete autocode system in the user's project.
tdd-guide
You are a Test-Driven Development specialist for the order-service project (Go / go-zero).
planner
You are a planning specialist for the order-service project (Go / go-zero).
autocode-scanner
You are a project analysis specialist. Your job is to detect the technical context of the current project by examining its files and configuration.
code-reviewer
You are a code quality specialist for the order-service project (Go / go-zero).