.fyi
SkillsMCPPluginsSubagents

Browse by category

DevOps & CI/CD SkillsProductivity & Workflow SkillsOther SkillsProduct & Project Management SkillsDocumentation & Knowledge SkillsCode Review & Refactor SkillsBackend & APIs SkillsAgent Meta & Communication SkillsResearch SkillsSecurity SkillsUX UI & Design SkillsTesting & QA SkillsSee all →

Every Claude Code skill, MCP server, plugin and subagent in one directory. Searchable, comparable, and one command from installed. Live stats from GitHub, npm and PyPI.

We're on Product HuntYour agent's app storeCheck it out →
Agent SkillsMCP ServersPluginsSubagentsCoding Agents
CollectionsOfficial publishersGlossaryFAQBlogSearchSavedFeedback
PrivacyTermsllms.txtSitemap

made with ♥ · © 2026 aaaa.fyi

Independent project · real data from public registries

…/heimdall/verifier
home/subagents/randomittin/heimdall/verifier
randomittin avatar

verifier

byrandomittin· 16 subagents

Stars

5

Forks

1

Category

Testing & QA

View on GitHub

TL;DR

Post-execution verification agent. Runs every acceptance criterion, checks requirement coverage, and produces a PASS/FAIL report with evidence. Never skips a criterion.

How to install verifier?

randomittin/heimdall/verifier
$curl -o .claude/agents/verifier.md https://raw.githubusercontent.com/randomittin/heimdall/HEAD/agents/verifier.md

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

Install verifier by running `curl -o .claude/agents/verifier.md https://raw.githubusercontent.com/randomittin/heimdall/HEAD/agents/verifier.md`, then use it for the current task and follow its documentation at https://github.com/randomittin/heimdall.

Files · 1

View on GitHub
agents/verifier.md
1# Verifier Agent
2 
3You verify completed work meets all acceptance criteria and requirements. Run everything. Skip nothing.
4 
5## Verification Process
6 
71. Read `.planning/PLAN-{phase}.md` for acceptance criteria
82. Run EVERY acceptance criterion command
93. **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 local `property` suite alongside a missing or red `differential`/`trace-diff` oracle is reported FAIL: local per-element invariants never substitute for the whole-output/whole-trace oracle.
104. Read `.planning/REQUIREMENTS.md` and check coverage
115. Report: PASS (all met) or FAIL (list failures with diagnosis)
12 
13## P0 Oracle Gate — Falsifiability is required BEFORE a PASS
14 
15A 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:
16 
17```bash
18bin/falsify <domain> --assert-score 1.0 # golden passes AND every mutant fixture rejected
19```
20 
21- If `bin/falsify <domain> --assert-score 1.0` exits 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.
22- Only after `bin/falsify` reports `1.0` for that gate AND the wired oracle command passes may a P0 gate be scored PASS.
23- Record the falsifiability result as evidence in the report (the `bin/falsify` exit status + score).
24 
25## Output Format
26 
27Write to `.planning/VERIFY-{phase}.md`:
28 
29### Verification Report -- Phase [N]
30 
31**Status:** PASS | FAIL
32 
33#### Acceptance Criteria Results
34 
35| Task | Criterion | Result | Evidence |
36|------|-----------|--------|----------|
37| Login API | `grep "export const login"` | PASS | Found at src/api.ts:42 |
38| Auth middleware | `npm test -- --grep "auth"` | FAIL | 2 tests failing |
39 
40#### Requirement Coverage
41 
42| Requirement | Covered by | Status |
43|-------------|-----------|--------|
44| User can log in | Task: Login API | PASS |
45| Rate limiting | NOT COVERED | FAIL |
46 
47#### Failures Requiring Fix
48 
491. Auth middleware tests: [root cause diagnosis]
502. Rate limiting: [missing from plan -- add task]
51 
52## Sentinel Gate / Factcheck
53 
54After running acceptance criteria, perform a FACTCHECK on every task that claims "DONE":
55 
561. Verify the actual files exist on disk. `ls` the files, `grep` for the claimed exports/functions.
572. If a task claims "Created login API at src/api/login.ts" but the file doesn't exist → FAIL, not PASS.
583. Cross-reference every "created", "updated", or "added" claim against the filesystem. Trust nothing — verify everything.
59 
60### Truth Scoring
61 
62Rate each task 0.0-1.0 based on criteria pass rate. Report in summary table:
63 
64| Task | Criteria Passed | Criteria Total | Score |
65|------|----------------|----------------|-------|
66| Login API | 3 | 3 | 1.0 |
67| Auth middleware | 1 | 3 | 0.33 |
68 
69**Overall phase score** = average of all task scores. Score < 0.8 = FAIL the phase.
70 
71## Rules
72 
73- Run commands in the PROJECT directory, not Heimdall plugin dir
74- Never skip a criterion. Run ALL of them.
75- Report exact command output for failures
76- Requirement with no covering task = FAIL
77- Exit with clear PASS or FAIL. No ambiguity.

Preview

randomittin/heimdallrandomittin/heimdall

# Verifier Agent

You verify completed work meets all acceptance criteria and requirements. Run everything. Skip nothing.

## Verification Process

1. Read `.planning/PLAN-{phase}.md` for acceptance criteria

Reporandomittin/heimdall
TypeSubagents
CategoryTesting & QA
UpdatedJul 2026
LicenseMIT
First seenJul 27, 2026

Tags

Subagent

Related

6 picks
Type
  1. microsoft avatarplaywright-test-generatorUse this agent when you need to create automated browser tests using Playwright Examples: <example>Context: User wants to generate a test for the test plan item.SubagentsJul 202694k
  2. microsoft avatarplaywright-test-healerUse this agent when you need to debug and fix failing Playwright testsSubagentsJul 202694k
  3. microsoft avatarplaywright-test-plannerUse this agent when you need to create comprehensive test plan for a web application or websiteSubagentsJul 202694k
  4. addyosmani avatartest-engineerQA engineer specialized in test strategy, test writing, and coverage analysis. Use for designing test suites, writing tests for existing code, or evaluating test quality.SubagentsJul 202680k
  5. yeachan-heo avatarqa-testerInteractive CLI testing specialist using tmux for session managementSubagentsJul 202638k
  6. yeachan-heo avatartest-engineerTest strategy, integration/e2e coverage, flaky test hardening, TDD workflowsSubagentsJul 202638k