agentsclimarketplace

Sk dynamic routing

Skill gustavo-meilus/superpipelines/plugins/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

Install
npx -y skills add gustavo-meilus/superpipelines --skill sk-dynamic-routing

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

  • 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>

CategoryPrimary ModelFallback ChainUse Case
defaultclaude-sonnet-4-6NoneImplementation, general tasks, and task-execution.
deep-planclaude-opus-4-8gpt-5.4 -> sonnet-4-6High-stakes architectural planning (e.g., pipeline-architect).
quick-auditclaude-haiku-4-5-20251001NoneFast, broad pattern matching and codebase grepping.
visualgemini-3.5-progpt-5.4Tasks 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>
<invariants> - NEVER override `pipeline-task-executor` or `pipeline-spec-reviewer`; they MUST remain on `claude-sonnet-4-6` (`default`). - NEVER route to a model not explicitly defined in the category mapping table. - Maintain `MODEL_SELECTION: DYNAMIC_DEFAULT_SONNET` adherence. On Tier 1 the `default` category equals `platform_profile.model_tiers.fast` (`claude-sonnet-4-6`). - NEVER invoke this skill from tier-agnostic orchestrator skills (`creating-a-pipeline`, `pipeline-architect-protocol`, `sk-platform-dispatch`). Caller MUST gate on `platform_profile.tier == "tier_1"` before reading this skill's category table. </invariants>

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Keep looking

Skills are one crate of 326,144. 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.