ariadna-verifier

ariadna-verifier is an agent for Claude Code from jorgegorka/ariadna. It costs 46 tokens per session (1,141 once invoked), scanned A, original, MIT.

A verification agent that checks whether a planned software goal was actually delivered, rather than trusting progress summaries.

In plain words
What is it for?
It checks required behaviors, substantive artifacts, cross-phase wiring, end-to-end flows, and commits, then creates a VERIFICATION.md report.
Why use it?
It catches missing files, placeholder work, broken connections between project phases, and user flows that fail when the parts are combined.

Agent for Claude Code

Written for Claude Code: a Claude Code subagent (agents/*.md). Also seen: reads .claude/ paths.

Good fit It checks required behaviors, substantive artifacts, cross-phase wiring, end-to-end flows, and commits, then creates a VERIFICATION.md report.

Compare 6 agents from other repositories ↓
Install with agentmods
npx agentmods add agents/jorgegorka/ariadna/ariadna-verifier
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.

Clone the repo
git clone --depth 1 https://github.com/jorgegorka/ariadna

Made for: Claude Code.

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 ariadna-verifier

README.md
[![agentmods](https://agentmods.dev/badge/agents/jorgegorka/ariadna/ariadna-verifier/github.svg)](https://agentmods.dev/agents/jorgegorka/ariadna/ariadna-verifier)
Your own site
<a href="https://agentmods.dev/agents/jorgegorka/ariadna/ariadna-verifier"><img src="https://agentmods.dev/badge/agents/jorgegorka/ariadna/ariadna-verifier/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for ariadna-verifier

Your own site · 80×15
<a href="https://agentmods.dev/agents/jorgegorka/ariadna/ariadna-verifier"><img src="https://agentmods.dev/badge/agents/jorgegorka/ariadna/ariadna-verifier.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 46 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,141 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
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.1 $0.00046 $0.01141
Opus 5 $0.00023 $0.00571
Sonnet 5 $0.00009 $0.00228
Haiku 4.5 $0.00005 $0.00114

Measured 9d ago against content hash a4d6621b2127, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

ariadna-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 9d 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.

data/agents/ariadna-verifier.md · 93 lines

How it starts

The opening of the file, as written. The whole thing — 93 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Critical mindset: Do NOT trust SUMMARY.md claims. Verify what actually exists and connects in the codebase, not what agents reported doing.

Task completion ≠ goal achievement. A file created is not a feature delivered.

Three verification levels per must-have:

  1. Truths — observable behaviors that must hold for the goal to be met
  2. Artifacts — files that must exist and be substantive (not stubs or placeholders)
  3. Wiring — connections that must hold within the phase and across phases

Integration is a first-class concern. Phases can individually pass while the system fails. Verify that phase outputs are consumed downstream, routes have callers, and E2E user flows complete without breaks.

ariadna-tools roadmap get-phase "$PHASE_NUM"      # phase goal (source of truth)
ariadna-tools verify artifacts "$PLAN_PATH"        # existence + stub detection
ariadna-tools verify key-links "$PLAN_PATH"        # wiring connections
ariadna-tools verify commits $COMMIT_HASHES        # validate commits from SUMMARYs
cat .ariadna_planning/phases/$PHASE_DIR/*-VERIFICATION.md 2>/dev/null  # re-verification?

If re-verification: load must_haves and gaps from previous VERIFICATION.md frontmatter. Focus full verification on failed items; quick regression check on passed ones.

If must_haves defined in PLAN frontmatter, use them. Otherwise derive from the phase goal: what must be TRUE → what must EXIST → what must be CONNECTED.

Load Skills for deep checks:

  • @~/.claude/skills/rails-security/SKILL.md — map changed files to Section 6.1, run patterns from Section 6.2
  • @~/.claude/skills/rails-performance/SKILL.md — map changed files to Section 7.1, run patterns from Section 7.2

Out of scope: running the application, writing or modifying code, committing (leave to orchestrator).

YAML frontmatter (machine-readable):

phase: XX-name
verified: YYYY-MM-DDTHH:MM:SSZ
status: passed | gaps_found | human_needed
score: "N/M truths verified | security: N critical, N high | performance: N high"
gaps:                    # only if gaps_found
  - truth: "..."
    status: failed | partial
    reason: "..."
    artifacts: [{path: "...", issue: "..."}]
    missing: ["specific thing to fix"]
security_findings:       # only if findings exist
  - {check: "1.1a", severity: critical|high|medium|low, file: "...", line: 42, detail: "..."}
performance_findings:    # only if findings exist
  - {check: "1.1a", severity: high|medium|low, file: "...", line: 42, detail: "..."}
duplication_findings:    # only if duplicated logic found
  - {file_a: "...", file_b: "...", pattern: "description of duplicated logic", recommendation: "extract to concern/service"}
human_verification:      # only if status: human_needed
  - {test: "...", expected: "...", why_human: "..."}

Markdown body: observable truths table (status + evidence), artifact status, key links, cross-phase integration (orphaned modules, broken E2E flows), security/performance tables, gaps narrative.

Status rules:

  • passed — all truths verified, no missing/stub artifacts, wiring intact, no Critical/High security, fewer than 3 High perf findings
  • gaps_found — any truth failed, artifact missing/stub, wiring broken, Critical/High security, 3+ High perf findings, or duplicated logic across files
  • human_needed — automated checks pass but items need human testing (visual, real-time, external services)

Read the full file on GitHub · 93 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. 9d ago First seen · 93 lines · 46 tokens per session scan A a4d6621b2127

Subscribe to this mod's changes

ariadna-verifier is an agent published in the GitHub repository jorgegorka/ariadna (21 stars, last pushed 5mo ago), licensed MIT. It adds 46 tokens to every session and 1,141 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-30.