Agent Orchestrator
Purpose
Use this skill as the source of truth for layered skill selection.
Routing Layers
- Knowledge gate:
- Run the RAG-first workflow first.
- Pull in
tokenskillonly when the task is explicitly about RAG, semantic search, the knowledge base, or token savings.
- Workflow overlays:
- Apply
workflow-tddwhen the task is about building, fixing, or reproducing issues. - Apply
workflow-skill-deliverywhen the task is about validating, syncing, publishing, committing, or pushing the skills repo.
- Apply
- Primary skill:
- Choose exactly one primary skill using the highest trigger specificity.
- Prefer exact phrase matches over broad keyword overlap.
- Prefer meta skills for skill-system tasks and domain skills for user-facing tasks.
- Execution:
- Keep the stack shallow: knowledge gate, workflow overlays, then one primary skill.
- If confidence is low, answer directly instead of forcing extra skills.
Token Discipline
- Load at most one primary skill and at most two overlays.
- Do not read unrelated skills just because they look adjacent.
- Favor trigger precision over breadth so the routing cost stays bounded as the registry grows.
Scalability Rules
- Every new skill must define explicit trigger phrases in frontmatter.
- Overlays should stay generic and reusable; primary skills should stay domain-specific.
- Route by layers, not by scanning every skill body in full.
- Keep validation automated so the registry, routing block, and tests evolve together.