Sk dynamic routing
Skill gustavo-meilus/superpipelines/skills/sk-dynamic-routing
Maps pipeline agent roles to intent-based model categories on Tier 1 (Claude Code). Use when a Tier 1 pipeline stage requires model assignment beyond the two-slot fast/deep abstraction — e.g., pure read-only audit agents, deep architectural planners, or visual-analysis roles. Non-CC tiers resolve models via platform_profile.model_tiers only; this skill must not be invoked on tier_1b/1c/1d/2.From its SKILL.md
npx -y skills add gustavo-meilus/superpipelines --skill sk-dynamic-routingAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 4 stars4 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.
SKILL.md
3.3 KB, 726 tokens by cl100k_base, as published. Nobody here has run it
Dynamic Model Routing — Intent-Based Capability Mapping
<overview> This skill is **Claude Code-scoped (tier_1 only)**. Superpipelines on Tier 1 maintains `claude-sonnet-4-6` as the baseline default for implementation workers (the Tier 1 resolution of `platform_profile.model_tiers.fast`). Certain specialized roles — fast audits, deep architectural planning, visual analysis — benefit from dynamic routing beyond the two-slot `fast`/`deep` abstraction. This skill defines the CC-specific categories and fallback chains for those overrides. Non-CC tiers do not consult this skill; they resolve models via `platform_profile.model_tiers` only. </overview> <glossary> <term name="Category">An intent-based tag that dictates the model requirement (e.g., `quick-audit`, `deep-plan`).</term> <term name="Fallback Chain">The sequence of alternative models if the primary is unavailable or rate-limited.</term> </glossary>Category Mappings
<categories_table>
| Category | Primary Model | Fallback Chain | Use Case |
|---|---|---|---|
default | claude-sonnet-4-6 | None | Implementation, general tasks, and task-execution. |
deep-plan | claude-opus-4-8 | gpt-5.4 -> sonnet-4-6 | High-stakes architectural planning (e.g., pipeline-architect). |
quick-audit | claude-haiku-4-5-20251001 | None | Fast, broad pattern matching and codebase grepping. |
visual | gemini-3.5-pro | gpt-5.4 | Tasks requiring image processing, UI screenshots, or diagram analysis. |
| </categories_table> |
Routing Protocol
<protocol> ### 1. EVALUATE INTENT - Determine the nature of the specific task or agent role. - Standard code implementation or functional review maps to category `default`.2. ASSIGN CATEGORY
- Roles exclusively concerned with planning, architecture, or deep conceptual alignment →
deep-plan. - Roles restricted to read-only utility (fast file searching, lint aggregation) →
quick-audit. - Roles that interpret screenshots or diagrams →
visual.
3. CONFIGURATION OVERRIDE
- When generating an agent or scaffold, the
model:field in the frontmatter is set to the primary model of the selected category. - A comment or meta-tag noting the category intent is added for future auditing. </protocol>
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.