| name | gz-skill-router |
| persona | main-session |
| description | Route agents to the correct skill for a given task type. Use when starting a session, when unsure which skill applies, or when an agent needs to discover the right workflow for a task. |
| category | agent-operations |
| lifecycle_state | active |
| owner | gzkit-governance |
| last_reviewed | "2026-07-26T00:00:00.000Z" |
| metadata | {"skill-version":"6.3.0","govzero-framework-version":"v6"} |
| model | haiku |
gz-skill-router
Route agents to the correct gzkit skill based on task type. This is a lookup
aid, not an orchestrator โ it maps intent to the right workflow entry point.
When to Use
- Starting a new session and unsure which skill applies
- Task description is ambiguous across multiple skill domains
- Onboarding a new agent to gzkit's skill catalog
When NOT to Use
- You already know which skill to invoke
- The task is a simple CLI command (just run it)
Decision Tree
Task arrives
โ
โโโ Exploring a new idea or feature?
โ โโโ Vague idea, needs design dialogue โโโโโโโ gz-design
โ โโโ Ready to define product requirements โโโโ gz-prd
โ โโโ Ready to record an architecture decision โ gz-plan
โ
โโโ Creating or managing ADRs?
โ โโโ Create a new ADR with interview โโโโโโโโโ gz-adr-create
โ โโโ Promote a pool ADR to canonical โโโโโโโโโ gz-adr-promote
โ โโโ Evaluate ADR quality (scoring) โโโโโโโโโโ gz-adr-evaluate
โ โโโ Check ADR lifecycle/OBPI status โโโโโโโโโ gz-adr-status
โ โโโ Sync ADR governance state (all layers) โโ gz-adr-sync
โ โโโ Build ADR-to-artifact traceability โโโโโโ gz-adr-map
โ โโโ Emit a receipt event to the ledger โโโโโโ gz-adr-emit-receipt
โ
โโโ Working on an OBPI?
โ โโโ Decompose ADR into OBPI briefs โโโโโโโโโโ gz-obpi-specify
โ โโโ Audit plan alignment before coding โโโโโโ gz-plan-audit
โ โโโ In-flight defect fix (โค10 lines, โค2 files) โ AGENTS.md ยง Defect-fix routing (direct fix; skip pipeline)
โ โโโ Execute the full implementation pipeline โ gz-obpi-pipeline
โ โโโ Claim/release OBPI work locks โโโโโโโโโโโ gz-obpi-lock
โ โโโ Review code quality after implementation โ gz-obpi-simplify
โ โโโ Reconcile briefs against evidence โโโโโโโ gz-obpi-sync
โ
โโโ Auditing or closing out?
โ โโโ Gate 5 audit (COMPLETED โ VALIDATED) โโโโ gz-adr-audit
โ โโโ Human attestation ceremony โโโโโโโโโโโโโโ gz-adr-closeout-ceremony
โ โโโ GHI-driven patch release โโโโโโโโโโโโโโโโ gz-patch-release
โ
โโโ Running checks or validation?
โ โโโ Full quality checks (lint+test+type) โโโโ gz-check
โ โโโ Gate compliance for an ADR โโโโโโโโโโโโโโ gz-check
โ โโโ Gate 2 implementation verification โโโโโโ gz-implement
โ โโโ Validate governance artifacts โโโโโโโโโโโ gz-validate
โ โโโ Query artifact relationships โโโโโโโโโโโโ gz-state
โ โโโ Report gate/lifecycle status โโโโโโโโโโโโ gz-status
โ โโโ Audit CLI doc coverage โโโโโโโโโโโโโโโโโโ gz-cli-audit
โ
โโโ Governance infrastructure?
โ โโโ Initialize gzkit scaffolding โโโโโโโโโโโโ gz-init
โ โโโ Create/refresh constitution โโโโโโโโโโโโโ gz-constitute
โ โโโ Validate config path coherence โโโโโโโโโโ gz-check-config-paths
โ โโโ Record semver migration events โโโโโโโโโโ gz-migrate-semver
โ
โโโ Agent & repository operations?
โ โโโ Sync skill mirrors and surfaces โโโโโโโโโ gz-agent-sync
โ โโโ Commit and push with quality gates โโโโโโ git-sync
โ โโโ Preserve context across sessions โโโโโโโโ gz-session-handoff
โ โโโ Run maintenance chores โโโโโโโโโโโโโโโโโโ gz-chore-runner
โ โโโ Repository hygiene and cleanup โโโโโโโโโโ gz-tidy
โ
โโโ Cross-repository?
โโโ AirlineOps governance parity scan โโโโโโโ airlineops-parity-scan
Keyword Lookup
| Intent / Keyword | Skill |
|---|
| design, brainstorm, explore, "let's build" | gz-design |
| create ADR, new ADR, book ADR | gz-adr-create |
| promote pool ADR | gz-adr-promote |
| evaluate ADR, score ADR, red-team | gz-adr-evaluate |
| ADR status, lifecycle | gz-adr-status |
| specify, decompose, create briefs | gz-obpi-specify |
| plan audit, alignment check | gz-plan-audit |
| implement, execute pipeline, run OBPI | gz-obpi-pipeline |
| lock, claim, release OBPI | gz-obpi-lock |
| simplify, code review, craft | gz-obpi-simplify |
| reconcile, audit briefs, sync table | gz-obpi-sync |
| audit ADR, Gate 5, validate ADR | gz-adr-audit |
| closeout, ceremony, attest | gz-adr-closeout-ceremony |
| patch release, cut release | gz-patch-release |
| check, lint, test, quality | gz-check |
| gates, gate compliance | gz-check |
| status, blockers, next actions | gz-status |
| state, artifact graph, lineage | gz-state |
| validate, schema, surfaces | gz-validate |
| sync, mirrors, control surfaces | gz-agent-sync |
| commit, push, git sync | git-sync |
| handoff, session, context | gz-session-handoff |
| chore, maintenance | gz-chore-runner |
| tidy, cleanup, hygiene | gz-tidy |
| parity, airlineops | airlineops-parity-scan |
Skill Catalog Commands
Use these to discover and scaffold skills directly from the CLI:
uv run gz skill list
uv run gz skill new <slug>
Staleness Warning
This router must be updated when skills are added, renamed, or retired. After
any skill catalog change, verify this decision tree still covers all active
skills. The gz-agent-sync skill should trigger a router review.
Attribution
Routing pattern adapted from using-agent-skills in
addyosmani/agent-skills (MIT).
Related
AGENTS.md ยง Available Skills (the authoritative catalog)
gz-agent-sync (triggers after skill changes)