orchestrator
Installation
SKILL.md
Orchestrator
Session lifecycle management. Auto-loaded via UserPromptSubmit hook - no manual invocation needed.
Session Entry Protocol (MANDATORY)
Every session MUST verify dev environment before starting work. Fully autonomous — no human prompts.
# 0. Check prerequisites
command -v jq >/dev/null 2>&1 || { echo "Error: jq required but not installed"; exit 1; }
# 1. Health check first (check if script exists first)
if [ -f ".claude/scripts/health-check.sh" ]; then
if ! .claude/scripts/health-check.sh; then
echo "Health check failed - attempting auto-fix..."