Commit bf691b4
committed
feat: add multi-agent team memory support (v2.0)
- Add agent ID schema with actor attribution and scope filtering
- Implement ScopedMemoryManager for dual-layer memory (team + agent)
- Add team configuration file _omp/config.yaml
- Implement handoff workflow for agent-to-agent task transfer
- Update templates with multi-agent support documentation
- Extend xmemory-types with MemoryScope, AgentDefinition, HandoffRecord
- Update README with v2.0 features
New types:
- MemoryScope: 'team' | 'agent'
- AgentDefinition: id, role, channels, description
- AgentRole: coordinator, architect, developer, etc.
- TeamConfig: team name, runId, agents array
- ActorAttribution: actorId, actorType, timestamp
- HandoffRecord: fromAgent, toAgent, context, progress
Architecture:
- Team shared memory: _omp/memory/
- Agent private memory: _omp/agents/{agent_id}/memory/
- Handoff records: _omp/memory/handoffs/1 parent 2fb94d0 commit bf691b4
11 files changed
Lines changed: 743 additions & 12 deletions
File tree
- _bmad-output/planning-artifacts/research
- cli
- src/lib/memory
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
868 | 868 | | |
869 | 869 | | |
870 | 870 | | |
871 | | - | |
872 | 871 | | |
873 | 872 | | |
874 | 873 | | |
875 | 874 | | |
876 | 875 | | |
877 | | - | |
| 876 | + | |
878 | 877 | | |
879 | 878 | | |
880 | 879 | | |
881 | 880 | | |
| 881 | + | |
| 882 | + | |
| 883 | + | |
| 884 | + | |
| 885 | + | |
| 886 | + | |
| 887 | + | |
882 | 888 | | |
883 | 889 | | |
884 | 890 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
695 | 695 | | |
696 | 696 | | |
697 | 697 | | |
698 | | - | |
| 698 | + | |
| 699 | + | |
| 700 | + | |
| 701 | + | |
| 702 | + | |
| 703 | + | |
| 704 | + | |
| 705 | + | |
| 706 | + | |
| 707 | + | |
| 708 | + | |
| 709 | + | |
| 710 | + | |
| 711 | + | |
| 712 | + | |
699 | 713 | | |
700 | 714 | | |
701 | 715 | | |
| |||
706 | 720 | | |
707 | 721 | | |
708 | 722 | | |
709 | | - | |
710 | | - | |
711 | | - | |
712 | | - | |
713 | | - | |
714 | | - | |
715 | | - | |
716 | 723 | | |
| 724 | + | |
717 | 725 | | |
718 | 726 | | |
719 | 727 | | |
720 | | - | |
721 | 728 | | |
722 | 729 | | |
723 | 730 | | |
| |||
Lines changed: 41 additions & 0 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
| 30 | + | |
| 31 | + | |
| 32 | + | |
| 33 | + | |
| 34 | + | |
| 35 | + | |
| 36 | + | |
| 37 | + | |
| 38 | + | |
| 39 | + | |
| 40 | + | |
| 41 | + | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | 1 | | |
2 | 2 | | |
3 | | - | |
| 3 | + | |
4 | 4 | | |
5 | 5 | | |
6 | 6 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
2 | 2 | | |
3 | 3 | | |
4 | 4 | | |
| 5 | + | |
5 | 6 | | |
6 | 7 | | |
7 | 8 | | |
| |||
14 | 15 | | |
15 | 16 | | |
16 | 17 | | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
0 commit comments