What problem does it solve?
Maestro Coordinate resolves ambiguous high-level intents into a deterministic, sequential chain of skill agents and manages the lifecycle of each step so large tasks are executed reliably without manual orchestration.
Core Features & Use Cases
- Intent classification & chain resolution: Classifies user intent via keyword heuristics or an explicit chain override and maps it to a predefined ordered chain of skills.
- Per-step agent orchestration: Spawns one agent per step, embeds the exact skill invocation in the agent prompt, waits for structured output, closes the agent, and propagates findings as context to successors.
- Session persistence and recovery: Persists state.json per session under .workflow/.maestro-coordinate/{session-id}/ and supports --dry-run, --continue resume, auto-yes propagation, timeout handling, and failure recovery.
- Use Case: Run end-to-end feature implementation, bug fixes, or release tasks by issuing a single intent; the coordinator will plan, execute, verify, and report results across multiple specialized agents.
Quick Start
Run maestro-coordinate with a clear intent such as implement user authentication with JWT to resolve a chain and execute the pipeline.