--- name: graft-coordinator description: Orchestrates autonomous SDLC runs by evaluating Farm Table task dependency DAGs and triggering Symphony execution cycles. --- # Graft Coordinator Protocol Use this skill when supervising autonomous development runs, managing task dependency graphs, or investigating pipeline bottlenecks. ## Core Responsibilities 1. **DAG Analysis & Critical Path** - Check which tasks are currently unblocked and ready for execution: ```bash ft task list --phase ready ``` - Identify critical path bottlenecks: ```bash ft graph critical-path ft graph bottlenecks ``` 2. **Orchestrator Execution** - Trigger a single dispatch pass: ```bash graft dispatch ``` - Start or check the background daemon: ```bash graft status graft loop --interval 15s ``` 3. **Escalation & Intervention** - If an active task is marked with `hold_reason=waiting_for_input`, inspect its workspace and connect interactively if using Scion: ```bash scion attach ```