agent-context-isolation▌
parcadei/continuous-claude-v3 · updated Apr 8, 2026
Prevent agent output from polluting the main context window.
Agent Context Isolation
Prevent agent output from polluting the main context window.
Rules
1. Use Background Agents with File-Based Coordination
# RIGHT - background agent writes to file, main reads file
Task(subagent_type="...", run_in_background=true, prompt="... Output to: /path/to/file.md")
# WRONG - foreground agent dumps full transcript into main context
Task(subagent_type="...", run_in_background=false)
Background agents with run_in_background=true isolate their context. Have them write results to files in .claude/cache/agents/<agent-type>/.
2. Never Use TaskOutput to Retrieve Results
# WRONG - dumps entire transcript (70k+ tokens) into context
TaskOutput(task_id="<id>")
TaskOutput(task_id="<id>", block=true)
# RIGHT - check expected output files
Bash("ls -la .claude/cache/agents/<agent-type>/")
Bash("bun test") # verify with tests
TaskOutput returns the full agent transcript. Always use file-based coordination instead.
3. Monitor Agent Progress via System Reminders
# System reminders come automatically:
# "Agent a42a16e progress: 6 new tools used, 88914 new tokens"
# To detect completion:
# - Watch for progress reminders to stop arriving
# - Poll for expected output files: find .claude/cache/agents -name "*.md" -mmin -5
# - Check task output file size growth: wc -c /tmp/claude/.../tasks/<id>.output
Stuck agent detection:
- Progress reminders stop arriving
- Task output file size stops growing
- Expected output file not created after reasonable time
4. Verify with Tests, Not Output
After agent work:
- Run the test suite directly:
bun test - Report pass/fail counts
- Only investigate failures if tests fail
5. File-Based Agent Pipeline Pattern
Research agent → .claude/cache/agents/oracle/output.md
↓
Plan agent → .claude/cache/agents/plan-agent/output.md (reads research)
↓
Validate agent → .claude/cache/agents/validate-agent/output.md (reads plan)
↓
Implement agent → src/module.ts (reads validated plan)
Each agent reads the previous agent's file output, not TaskOutput.
Why This Matters
Agent context isolation preserves the main conversation's context budget. Reading agent outputs via TaskOutput floods context, causing:
- Mid-conversation compaction
- Lost context about user's original request
- Repeated explanations needed
Source
- Session where TaskOutput flooded 70k+ tokens into main context
- Session 2026-01-01: Successfully used background agents with file-based coordination for SDK Phase 3
Discussion
Product Hunt–style comments (not star reviews)- No comments yet — start the thread.
Ratings
4.6★★★★★72 reviews- ★★★★★Aditi Harris· Dec 28, 2024
Useful defaults in agent-context-isolation — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.
- ★★★★★Aditi Taylor· Dec 28, 2024
agent-context-isolation has been reliable in day-to-day use. Documentation quality is above average for community skills.
- ★★★★★Nia Kim· Dec 24, 2024
We added agent-context-isolation from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.
- ★★★★★James Haddad· Dec 20, 2024
Solid pick for teams standardizing on skills: agent-context-isolation is focused, and the summary matches what you get after install.
- ★★★★★Aditi Garcia· Dec 16, 2024
I recommend agent-context-isolation for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
- ★★★★★James Mensah· Dec 8, 2024
agent-context-isolation fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.
- ★★★★★Shikha Mishra· Dec 4, 2024
agent-context-isolation has been reliable in day-to-day use. Documentation quality is above average for community skills.
- ★★★★★Yash Thakker· Nov 23, 2024
Solid pick for teams standardizing on skills: agent-context-isolation is focused, and the summary matches what you get after install.
- ★★★★★Aditi Wang· Nov 23, 2024
agent-context-isolation is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.
- ★★★★★Omar Dixit· Nov 19, 2024
We added agent-context-isolation from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.
showing 1-10 of 72