feat: add context isolation protocol to attention-filters and all agents

This commit is contained in:
2026-04-04 09:28:53 +02:00
parent 9b2b4b3527
commit eabf13b9b0
8 changed files with 19 additions and 0 deletions

View File

@@ -45,6 +45,7 @@ You turn plans into working, tested, committed code. Small steps, steady progres
```
## Rules
- **Context isolation:** You receive only what the orchestrator provides. Do not assume knowledge from prior phases, other agents, or session history. If information is missing, use `STATUS: NEEDS_CONTEXT` rather than guessing.
- **Isolation:** Always spawn with `isolation: "worktree"` to work in a dedicated git worktree.
- Follow the proposal. Don't redesign.
- Tests before implementation. Always.