agentsclimarketplace

Skill router

Skill hussi9/skill-router/codex-skill/skill-router

Skill + Agent + Model + Thinking depth — auto-routed before any tool fires. One SKILL.md for Claude Code. 90% routing accuracy, per-step model enforcement, 30%+ savings on multi-step chains.

Install
npx -y skills add hussi9/skill-router --skill skill-router

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 17 stars17 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

Route non-trivial Codex tasks to the right local execution lane and capability set. Use when Codex needs to decide between direct execution, a local skill, an enabled plugin, or an MCP/tool surface; when the user asks which skill or workflow to use; when you want to inspect the local Codex inventory; or when a task needs a compact lane + capability + verification recommendation before work begins.

SKILL.md

4.6 KB, as published. Nobody here has run it

Skill Router

Use this skill to make Codex routing environment-aware instead of guess-based.

Quick Start

  1. Classify the task into a lane:
    • direct
    • broken
    • build
    • operate
    • review
    • plan
  2. Run scripts/scan_codex_inventory.py to inspect local skills, plugins, and MCP servers.
  3. Match the task against the most specific local capability first.
  4. Return a compact recommendation using the routing contract in references/routing-contract.md.

Lane Selection

LaneExamplesDefault ReasoningDefault Thinking
directtrivial read, one command, factual answerfastnone
brokenbug, regression, crash, failing test, broken buildstandardthink
buildnew feature, component, integration, workflowstandardthink
operaterefactor, automate, configure, document, deploystandardnone
reviewcode review, risk review, security reviewstandardthink-hard
planbroad, ambiguous, multi-stage, scope decisionsfrontierultrathink

Escalate to frontier reasoning + ultrathink for: production incidents, auth/permissions changes, architecture decisions where rollback is expensive.

If a task spans multiple lanes, choose the first critical lane and note the downstream chain.

Capability Resolution

Prefer, in order:

  1. repo instructions already in force
  2. local Codex skills
  3. enabled plugins
  4. configured MCP/tool surfaces
  5. direct execution

Rules:

  • prefer one strong local capability over a long chain
  • prefer the most specific capability over the most famous one
  • fall back to direct execution if no strong local match exists
  • do not search the internet for skills by default
  • do not auto-install anything silently

Inventory Scan

Use the bundled script:

python3 scripts/scan_codex_inventory.py
python3 scripts/scan_codex_inventory.py --query deploy
python3 scripts/scan_codex_inventory.py --json

Use the inventory scan when:

  • you need to know which local capability is actually present
  • multiple possible skills might match
  • the task mentions a tool or platform and you want to confirm availability

Output Contract

Always return:

  • lane
  • chosen capability or fallback
  • reasoning tier: fast, standard, or frontier
  • verification plan
  • short notes only if needed

See references/routing-contract.md for the canonical shape.

Named Chains (Optional)

If AGENTS.md declares saved chain sequences, check them BEFORE computing fresh from the lane tables. Match by substring on the user's prompt; first match wins.

# in AGENTS.md
chains:
  - name: ship-feature
    when: ["ship the feature", "lets implement"]
    chain: writing-plans → frontend + db
    thinking: think

Per-step models / agents resolve from the lane tables unless chain.model or chain.thinking overrides globally, or steps[].model overrides per step.

Dispatch Protocol — Per-Step Model Enforcement

When a chain step needs a different model than the parent session, dispatch that step as a Codex sub-task with model: set explicitly. Steps that match the parent model run inline.

For each step in the chain:
  IF step.model == parent_model AND not parallel-fan-out:
      → run inline
  ELSE:
      → spawn sub-task with model=<step.model>, agent=<step.agent>
  Parallel steps (`+`) launch concurrently.

Thinking Depth

Each lane row carries an optional Thinking value: none / think / think-hard / ultrathink. Pre-pend the keyword to the dispatch prompt to allocate extended-thinking budget. Production incidents and architecture decisions default to ultrathink; mechanical work to none.

Codex-Specific Notes

  • this skill is local-first
  • this skill is for routing and orchestration, not governance
  • for enterprise governance, policy, and proof of judgment, use Sentigent instead of expanding this skill into a control plane

Resources

scripts/

  • scan_codex_inventory.py: inspect installed local Codex skills, enabled plugins, and configured MCP servers

references/

  • routing-contract.md: required output shape for recommendations
  • product-boundary.md: product boundary and audience definition for the Codex version

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.