What problem does it solve? Multi-agent orchestration logic breaks when the same coordinator runs on different Copilot surfaces, because spawning tools, model selection, and SQL availability differ between CLI, VS Code, JetBrains, and GitHub.com. ## Core Features & Use Cases - Platform Detection: Identifies the runtime surface by checking for the task tool (CLI), runSubagent/agent (VS Code), or neither (inline fallback). - Adaptive Spawning: Adjusts parameters per platform, dropping agent_type, mode, model, and description on VS Code while batching parallel subagents in a single turn. - Feature Degradation Guidance: Provides a table mapping CLI-only features (SQL tool, per-spawn model selection, fire-and-forget Scribe) to their cross-platform equivalents. - Use Case: A coordinator spawning three parallel agents detects VS Code mode, issues three runSubagent calls in one turn with Scribe last, and skips read_agent polling entirely. ## Quick Start Detect the current Copilot platform and adapt the agent spawning strategy for this session.