accessibility-patterns
WCAG 2.2 AA compliance, ARIA patterns, keyboard navigation, screen reader optimization
Agent Context Isolation
$ npx -y skills add vibeeval/vibecosystem --skill agent-context-isolation --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/agent-context-isolationContext preview
The summary Claude sees to decide when to auto-load this skill.
Agent Context Isolation
name: agent-context-isolation description: Agent Context Isolation user-invocable: false
Prevent agent output from polluting the main context window.
# 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>/`.
# 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 testsTaskOutput returns the full agent transcript. Always use file-based coordination instead.
# 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:** 1. Progress reminders stop arriving 2. Task output file size stops growing 3. Expected output file not created after reasonable time
After agent work: 1. Run the test suite directly: `bun test` 2. Report pass/fail counts 3. Only investigate failures if tests fail
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.
Agent context isolation preserves the main conversation's context budget. Reading agent outputs via TaskOutput floods context, causing:
Your AI software team. Built on Claude Code. vibecosystem turns Claude Code into a full AI software team — 138 specialized agents that plan, build, review, test, and learn from every mistake. No configuration needed — just install and code.
Repo: vibeeval/vibecosystem
WCAG 2.2 AA compliance, ARIA patterns, keyboard navigation, screen reader optimization
axe-core integration, WCAG 2.2 AA checklist, keyboard navigation testing, screen reader testing, and ARIA pattern validation.
Steam-style achievement system with XP, levels, streaks, and skill trees. Gamifies the development workflow. 25 achievements across 5 categories.
Framework for measuring and tracking agent response quality over time. Detects regressions before they reach production. Use when evaluating agent changes,…
Agent ve skill dosyalarinin yapisal dogrulamasi. Frontmatter kontrol, naming convention, zorunlu bolum kontrolu, tutarlilik denetimi. Yeni agent/skill…