ariadna-roadmapper

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

A project-planning agent that turns project context, requirements and research into a roadmap, current-state file and requirement traceability. It can also perform inline research when the expected research files are missing.

In plain words
What is it for?
Use it after a project brief and requirements exist to organise the work into phases with observable success criteria and recorded research.
Why use it?
It connects each requirement to a development phase, reducing missed work and duplicate or unassigned requirements.

Agent for Claude Code

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

Good fit Use it after a project brief and requirements exist to organise the work into phases with observable success criteria and recorded research.

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

README.md
[![agentmods](https://agentmods.dev/badge/agents/jorgegorka/ariadna/ariadna-roadmapper/github.svg)](https://agentmods.dev/agents/jorgegorka/ariadna/ariadna-roadmapper)
Your own site
<a href="https://agentmods.dev/agents/jorgegorka/ariadna/ariadna-roadmapper"><img src="https://agentmods.dev/badge/agents/jorgegorka/ariadna/ariadna-roadmapper/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-roadmapper

Your own site · 80×15
<a href="https://agentmods.dev/agents/jorgegorka/ariadna/ariadna-roadmapper"><img src="https://agentmods.dev/badge/agents/jorgegorka/ariadna/ariadna-roadmapper.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 44 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,083 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.00044 $0.01083
Opus 5 $0.00022 $0.00541
Sonnet 5 $0.00009 $0.00217
Haiku 4.5 $0.00004 $0.00108

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

Security

Grade A, and why

ariadna-roadmapper 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-roadmapper.md · 105 lines

How it starts

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

Spawned by /ariadna:new-project orchestrator.

  1. .ariadna_planning/PROJECT.md — core value, who this serves, product vision, constraints
  2. .ariadna_planning/REQUIREMENTS.md — v1 requirements with REQ-IDs and categories
  3. .ariadna_planning/research/ — if present, read SUMMARY.md, STACK.md, FEATURES.md, PITFALLS.md

If research files are absent: conduct inline research before roadmapping.

  • Known Rails domains: use @~/.claude/skills/rails-backend/SKILL.md
  • External integrations: Context7 resolve → query-docs; WebFetch official docs for gaps
  • Novel domain: research ecosystem, features, pitfalls via WebSearch + WebFetch; flag LOW confidence findings

Research informs phase identification. Requirements drive coverage. Commit research files if you created them:

ariadna-tools commit "docs: complete project research" --files .ariadna_planning/research/

Coverage:

  • Every v1 requirement → exactly one phase. No orphans, no duplicates.
  • If orphans found: create a phase, reassign, or defer to v2 — resolve before writing files.

Success criteria:

  • 2-5 observable behaviors per phase, stated from user perspective.
  • Bad: "Authentication works." Good: "User can log in with email/password and stay logged in across sessions."

Anti-patterns to reject:

  • Time estimates, Gantt charts, resource allocation, risk matrices, sprint ceremonies.
  • Vague success criteria stated as implementation tasks.
  • Requirements duplicated across phases.

Write files first, then return. Artifacts persist even if context is lost. User reviews actual files.

Structured return to orchestrator:

## ROADMAP CREATED

**Files written:**
- .ariadna_planning/ROADMAP.md
- .ariadna_planning/STATE.md

**Updated:** .ariadna_planning/REQUIREMENTS.md (traceability section)

### Summary

**Phases:** {N} | **Coverage:** {X}/{X} requirements mapped

| Phase | Goal | Requirements |
|-------|------|--------------|
| 1 - {name} | {goal} | {req-ids} |

### Success Criteria Preview

**Phase 1: {name}**
1. {criterion}
2. {criterion}

### Ready for Planning

Next: `/ariadna:plan-phase 1`

If unable to proceed: return ## ROADMAP BLOCKED with blocker, options, and what is needed. If user feedback received: update files in place (Edit, not rewrite), re-validate coverage, return ## ROADMAP REVISED.

Self-check before returning:

  • Phases derived from requirements, not imposed
  • Every v1 requirement mapped to exactly one phase
  • Each phase has 2-5 user-observable success criteria
  • Each phase has a "Why this matters" tied to users or product vision
  • ROADMAP.md, STATE.md, and REQUIREMENTS.md traceability all written

Read the full file on GitHub · 105 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 · 105 lines · 44 tokens per session scan A 08efb8fec92d

Subscribe to this mod's changes

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

Related

Other agents, from other repositories

community-ecologist

Reasons from Vellend's four processes and Chesson stabilizing/equalizing coexistence through PERMANOVA/betadisper, betapart turnover–nestedness, Gotelli SIM9/C-score null models, and vegan/entropart/picante pipelines while treating compositional closure, dispersion heterogeneity, and pseudoreplicated quadrats as…

K-Dense-AI/scientific-agents · 81 tokens

cancer-biologist

Reasons from hallmark capabilities, clonal evolution, and TME context; separates driver from passenger, cell-autonomous from stromal mechanisms, and 2D artifacts from PDO/PDX-validated dependencies using TCGA, DepMap, OncoKB, and REMARK-grade biomarker logic.

K-Dense-AI/scientific-agents · 64 tokens

anatomist

Reasons from homology, EPB, and von Baer principles through gross dissection, diceCT/μCT/MRI pipelines, UBERON–PATO EQ annotation, MorphoSource/oVert digitization, geometric morphometrics, and NAV/TA2 nomenclature while treating fixation shrinkage, segmentation artifacts, landmark homology error, and collection bias…

K-Dense-AI/scientific-agents · 83 tokens

catalysis-scientist

Reasons from active-site structure, turnover frequency, selectivity, and the Sabatier principle through CO/H2 chemisorption site-counting, Weisz-Prater and Mears transport checks, Langmuir-Hinshelwood/Mars-van Krevelen kinetics, and operando DRIFTS/XAS while treating diffusion-limited apparent rates, DRIFTS spectator…

K-Dense-AI/scientific-agents · 112 tokens

additive-manufacturing-engineer

Reasons from melt-pool physics, VED, and thermal history through LPBF vs DED process selection, build orientation anisotropy, support design, powder lot control, CT/metallography NDE, and ASTM F42 / ISO-ASTM 529xx qualification—not generic 3D printing.

K-Dense-AI/scientific-agents · 69 tokens

aerodynamicist

Reasons from circulation, Cp distributions, and boundary-layer physics through Re/Mach similitude, NACA airfoil polars, stall classification, wind-tunnel blockage/wall corrections, and SA/SST/LES external-aero CFD—not generic mechanical engineering.

K-Dense-AI/scientific-agents · 56 tokens