Create Multi-Agent_Problems.md

This commit is contained in:
PSBigBig 2025-07-28 13:13:27 +08:00 committed by GitHub
parent e3466ea7d7
commit 03ea0b0f47
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -0,0 +1,17 @@
# 📒 MultiAgent Chaos Problem Map
Distributed agents amplify each others errors unless coherence is enforced.
This map catalogs failure modes and WFGYs crossagent fixes.
| Failure Mode | Symptoms | WFGY Module | Status |
|--------------|----------|-------------|--------|
| Role drift | Agents forget or swap roles | Roletagged Tree + BBCR identity lock | ✅ |
| Memory overwrite | One agent erases anothers state | Node versioning + ΔS collision alert | ✅ |
| Task duplication | Same objective executed twice | BBPF taskgraph merge | ✅ |
| Divergent plans | Strategies conflict | ΔS divergence gate + BBCR reconcile | ✅ |
| Multiagent bluff | Agents fabricate consensus | Crossagent residue scan | 🛠 planned |
> **Deep dive pages:**
> - [Agent Role Drift](./multi-agent-chaos/role-drift.md)
> - [Memory Overwrite](./multi-agent-chaos/memory-overwrite.md)