rune-skill-router

Routes every agent request through the correct Rune skill using intent classification tables.

1|Updated Mar 22, 2026
One-click install
npx skills add https://github.com/dangvu008/VietTruyen --skill rune-skill-router-dangvu008
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: rune-skill-router
Source: https://github.com/dangvu008/VietTruyen/tree/main/.agents/skills/rune-skill-router
Command: npx skills add https://github.com/dangvu008/VietTruyen --skill rune-skill-router-dangvu008

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? AI agents often write code or answer technical questions without following structured workflows, skipping quality gates and constraints. This Skill acts as a mandatory routing layer that classifies every request and directs it through the correct Rune skill before any action is taken. ## Core Features & Use Cases - Request Classification: Categorizes every message into CODE_CHANGE, QUESTION, DEBUG_REQUEST, REVIEW_REQUEST, or EXPLORE with FULL or LITE enforcement levels. - Four-Tier Routing Table: Maps user intents to Tier 1 entry skills (cook, team, launch, rescue, audit), Tier 2 power-user skills, Tier 3 internal utilities, and Tier 4 domain extension packs. - Adaptive Routing Overrides: Reads routing-overrides.json from .rune/metrics to apply learned routing rules and model hints based on past failures. - Use Case: When a user says "fix the login bug and add tests", the router chains rune-debug for diagnosis, rune-fix for the patch, and rune-test for coverage, emitting a routing proof line in the response. ## Quick Start Ask the agent to implement a feature or fix a bug and it will classify the request, announce the routed skill, and follow that skill's workflow before writing any code.

Frequently Asked Questions about rune-skill-router

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I route AI agent requests through the correct skill?

Classify the request into CODE_CHANGE, QUESTION, DEBUG_REQUEST, REVIEW_REQUEST, or EXPLORE, then match intent keywords against the routing table. FULL enforcement types must invoke a skill via the Skill tool before any code is written.

What is a skill router in an AI agent workflow?

A skill router is a meta-enforcement layer that intercepts every user request and directs it to the appropriate specialized skill. It prevents agents from freelancing code without following structured workflows and quality gates.

Can routing be skipped for simple or trivial tasks?

Pure conversational replies, meta-questions about the system, and single-line factual answers are exempt. Users can also explicitly override with phrases like "skip routing", which is logged and respected.

How does adaptive routing with overrides work?

The router reads .rune/metrics/routing-overrides.json before standard routing. Matching rules apply override actions or model hints, but overrides cannot bypass layer discipline, quality gates, or route to non-existent skills.

What happens when a request matches multiple skills?

Compound intents resolve by priority: L1 orchestrators before L2 skills, then L3 utilities. For example, "add auth and deploy" routes to cook first, then deploy after cook completes.

When should domain extension packs be loaded?

L4 packs load when user intent matches domain signals like trading, SaaS billing, or LLM workflows. Split packs load only the index plus the specific skill file needed, keeping context usage minimal.