Claude-skill-registry-data maestro-core

Use when any Maestro skill loads - provides skill hierarchy, HALT/DEGRADE policies, and trigger routing rules for orchestration decisions

install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry-data
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry-data "$T" && mkdir -p ~/.claude/skills && cp -r "$T/data/maestro-core" ~/.claude/skills/majiayu000-claude-skill-registry-data-maestro-core && rm -rf "$T"
manifest: data/maestro-core/SKILL.md
source content

Maestro Core - Workflow Router

Central hub for Maestro workflow skills. Routes triggers, defines hierarchy, and handles fallbacks.

Skill Hierarchy

conductor (1) > orchestrator (2) > designing (3) > tracking (4) > specialized (5)

Higher rank wins on conflicts.

Ownership Matrix

SkillOwnsPrimary Triggers
conductorImplementation + autonomous
ci
,
ca
,
/conductor-implement
,
/conductor-autonomous
orchestratorParallel execution
co
,
/conductor-orchestrate
designingPhases 1-10 (design → track creation)
ds
,
cn
,
/conductor-newtrack
,
/conductor-design
trackingTask/bead management
bd *
,
fb
,
rb
handoffSession cycling
ho
,
/conductor-finish
,
/conductor-handoff
creating-skillsSkill authoring"create skill", "write skill"

Workflow Chain

ds/cn → design.md → /conductor-newtrack → spec.md + plan.md → fb → tracking → ci/co/ca → implementation

Routing Table

CRITICAL: After loading

maestro-core
, you MUST explicitly load the target skill via
skill(name="...")
before proceeding.

See routing-table.md for complete trigger → skill mappings, phrase triggers, and conditional routing logic.

Quick Triggers

TriggerSkill
ds
,
cn
designing
ci
conductor
ca
conductor
co
orchestrator
fb
,
rb
,
bd *
tracking
ho
handoff

Routing Flow

1. User triggers command (e.g., `ci`)
2. Load maestro-core → get routing table
3. Look up trigger → find target skill
4. MUST call skill tool to load target skill
5. Follow loaded skill instructions

Fallback Policies

ConditionActionMessage
bd
unavailable
HALT
❌ Cannot proceed: bd CLI required
conductor/
missing
DEGRADE
⚠️ Standalone mode - limited features
Agent Mail unavailableHALT
❌ Cannot proceed: Agent Mail required for coordination

Quick Reference

ConcernReference
Complete workflowworkflow-chain.md
All routing rulesrouting-table.md
Terms and conceptsglossary.md
CLI toolboxestoolboxes.md

Related Skills