route

route is a skill for Claude Code, Codex from fabriqaai/specs.md. It costs 17 tokens per session (1,032 once invoked), scanned A, original, MIT.

A project-state analyzer that decides which coding agent or workflow should handle the next step. It scans intent briefs and work-item files, then checks for active or pending work.

In plain words
What is it for?
Use it when beginning work, continuing an unfinished run, or checking what remains in a project. It can route new goals to planning and existing work to the builder.
Why use it?
It prevents work from starting in the wrong place by recognizing whether a project needs planning, execution, or resuming an existing run.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

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.

agentmods
npx agentmods add skills/fabriqaai/specs.md/route
Any agent
npx skills add fabriqaai/specs.md --skill route
Clone the repo
git clone --depth 1 https://github.com/fabriqaai/specs.md

Made for: Claude Code, Codex.

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 route

README.md
[![agentmods](https://agentmods.dev/badge/skills/fabriqaai/specs.md/route.svg)](https://agentmods.dev/skills/fabriqaai/specs.md/route)
Your own site
<a href="https://agentmods.dev/skills/fabriqaai/specs.md/route"><img src="https://agentmods.dev/badge/skills/fabriqaai/specs.md/route.svg" alt="Measured on agentmods" height="20"></a>
Per session 17 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,032 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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.00017 $0.01032
Opus 5 $0.00009 $0.00516
Sonnet 5 $0.00003 $0.00206
Haiku 4.5 $0.00002 $0.00103

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

Security

Grade A, and why

route 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 6d 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.

src/flows/fire/agents/orchestrator/skills/route/SKILL.md · 147 lines

What it actually says

<file_system_scan critical="true">
  Use these EXACT glob patterns:

  <pattern purpose="Find intent briefs">
    .specs-fire/intents/*/brief.md
  </pattern>

  <pattern purpose="Find work items">
    .specs-fire/intents/*/work-items/*.md
  </pattern>

  Work items are {work-item-id}.md files directly in work-items/ folder.
</file_system_scan>

<action>Reconcile: add discovered items to state as pending</action>
<action>Parse current project state</action>
    Plan run scope and start execution? [Y/n]
  </output>
  <check if="response == y">
    <route_to>builder-agent (run-plan)</route_to>
  </check>
  <stop/>
</check>
    Work items delivered:
    {list completed work items}

    Ready for next intent? [Y/n]
  </output>
</check>
  What do you want to build?
</output>
<route_to>planner-agent (intent-capture)</route_to>

<routing_decision_tree>

state.yaml + file system scan
    │
    ├── runs.active? ─────────────> Builder (run-execute, resume)
    │
    ├── pending work items? ──────> Builder (run-plan, then execute)
    │
    ├── intent without work items? > Planner (work-item-decompose)
    │
    └── no active intents ────────> Planner (intent-capture)

</routing_decision_tree>

<context_passed_to_agents> To Planner:

context:
  action: intent-capture | work-item-decompose
  intent_id: {if decomposing}

To Builder:

context:
  action: run-plan | run-execute | resume
  pending_items: [{list of pending work items}]  # for run-plan
  run_id: {if resuming}

</context_passed_to_agents>

<success_criteria> File system scanned for untracked intents/work-items State reconciled with file system Correct agent selected based on state Context passed to target agent </success_criteria>

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. 6d ago First seen · 147 lines · 17 tokens per session scan A f5cb32a78799

Subscribe to this mod's changes

route is a skill published in the GitHub repository fabriqaai/specs.md (206 stars, last pushed 13d ago), licensed MIT. It adds 17 tokens to every session and 1,032 once invoked, about $0.0001 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 skills, from other repositories

acceptance-orchestrator-v2

Acceptance Orchestrator workflow skill. Use this skill when the user needs a coding task should be driven end-to-end from issue intake through implementation, review, deployment, and acceptance verification with minimal human re-intervention and the operator should preserve the upstream workflow, copied support files…

diegosouzapw/awesome-omni-skills · 71 tokens

acceptance-orchestrator

Acceptance Orchestrator workflow skill. Use this skill when the user needs a coding task should be driven end-to-end from issue intake through implementation, review, deployment, and acceptance verification with minimal human re-intervention and the operator should preserve the upstream workflow, copied support files…

diegosouzapw/awesome-omni-skills · 69 tokens

swarm-advanced

Advanced swarm orchestration patterns for research, development, testing, and complex distributed workflows.

ruvnet/RuView · 21 tokens

agent-harness-fault-injection

Use when an agent workflow needs deterministic recovery evidence for sandbox, MCP/tool, worker, checkpoint, memory, or orchestration failures.

sickn33/agentic-awesome-skills · 34 tokens

agenttrace-session-audit

Audit local AI coding-agent sessions with agenttrace for cost, tool failures, latency, anomalies, health, diffs, and CI gates.

sickn33/agentic-awesome-skills · 34 tokens

akf-trust-metadata

The AI native file format. EXIF for AI — stamps every file with trust scores, source provenance, and compliance metadata. Embeds into 20+ formats (DOCX, PDF, images, code). EU AI Act, SOX, HIPAA auditing.

sickn33/agentic-awesome-skills · 60 tokens