What problem does it solve? Long research, debugging, or coding tasks done inline flood the main conversation context and force serial execution. This Skill delegates self-contained work to autonomous background agents that run in parallel and report back when finished. ## Core Features & Use Cases - Parallel Subagent Spawning: Launch researcher, coder, planner, investigator, or supervisor agents with scoped tool access via subagent_spawn. - Lifecycle Management: Track, message, read output from, and abort running subagents using subagent_status, subagent_message, subagent_read, and subagent_abort. - Fork Mode: Create context-inheriting forks that share the parent's full conversation and memory for tasks that depend on prior discussion. - Use Case: While investigating a production bug, spawn an investigator subagent to trace logs and a researcher to check related documentation in parallel, then read their compact reports when they complete. ## Quick Start Spawn a researcher subagent labeled "research-auth-libraries" to compare authentication options and report back when done.