Question 01 · Isolation
A team’s /analyze-codebase skill produces a comprehensive report:
dependency graph, coverage counts, quality metrics. Developers report that after running
it, Claude becomes less responsive in the session and loses the original
task. What closes the gap?
Why A
Do the verbose work somewhere the main context cannot see.
context: fork spawns a subagent with its own context window. The verbose
analysis happens there. When the subagent returns, only its structured final response
appears in the main session — the raw intermediate output never does. The main
context stays lean and the original task stays on its decision‑critical path.