What problem does it solve?
It standardizes how all mission agents start, validate, run, and hand off work so that each feature executes within the Maestro mission boundaries.
Core Features & Use Cases
- Mission Startup & Baseline Validation: Reads mission context, guidance, and validation contracts, then runs the manifest-defined baseline tests before doing any feature work.
- Deterministic Service Orchestration: Starts required services from
.maestro/bootstrap/services.yaml, waits for health checks, and stops immediately if a service fails.
- Feature Execution Delegation & Safety Guardrails: Enforces that after startup it delegates to the feature’s
agentType skill, and if the skill is missing or mission scope can’t be completed it returns to the orchestrator safely.
- Cleanup, Final Validation, and Structured Reporting: Ensures validators pass, performs cleanup, and returns an
EndFeatureRun report with commands, observations, and discovered issues.
- Use Case: Apply this as the REQUIRED base procedure for every mission feature implementation to keep multi-agent runs consistent, reviewable, and safe.
Quick Start
Use the maestro framework to run your mission feature with a valid agentType, then let this base skill handle startup validation, service readiness, feature delegation, and structured handoff.