brainclaw 1.5.5 → 1.6.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (43) hide show
  1. package/dist/brainclaw-vscode.vsix +0 -0
  2. package/dist/cli.js +124 -7
  3. package/dist/commands/bootstrap-loop.js +206 -0
  4. package/dist/commands/loop.js +156 -0
  5. package/dist/commands/loops-handlers.js +110 -55
  6. package/dist/commands/mcp-read-handlers.js +37 -0
  7. package/dist/commands/mcp.js +621 -202
  8. package/dist/commands/questions.js +180 -0
  9. package/dist/commands/reply.js +190 -0
  10. package/dist/commands/session-end.js +105 -3
  11. package/dist/commands/session-start.js +32 -53
  12. package/dist/commands/switch.js +17 -1
  13. package/dist/core/agentrun-reconciler.js +65 -0
  14. package/dist/core/claims.js +29 -0
  15. package/dist/core/dispatch-status.js +219 -0
  16. package/dist/core/entity-operations.js +128 -9
  17. package/dist/core/execution-adapters.js +38 -2
  18. package/dist/core/facade-schema.js +55 -0
  19. package/dist/core/federation-cloud.js +27 -12
  20. package/dist/core/federation-materialize.js +57 -0
  21. package/dist/core/instruction-templates.js +2 -0
  22. package/dist/core/loops/bootstrap-acquire.js +195 -0
  23. package/dist/core/loops/facade-schema.js +68 -1
  24. package/dist/core/loops/hooks/bootstrap-write.js +144 -0
  25. package/dist/core/loops/hooks/notify-operator.js +148 -0
  26. package/dist/core/loops/hooks/survey-source-reader.js +256 -0
  27. package/dist/core/loops/index.js +8 -2
  28. package/dist/core/loops/next-expected.js +63 -0
  29. package/dist/core/loops/presets/bootstrap.js +75 -0
  30. package/dist/core/loops/presets/index.js +16 -0
  31. package/dist/core/loops/store.js +224 -4
  32. package/dist/core/loops/types.js +346 -1
  33. package/dist/core/loops/verbs.js +739 -6
  34. package/dist/core/schema.js +28 -2
  35. package/dist/core/state.js +62 -0
  36. package/dist/facts.js +7 -5
  37. package/dist/facts.json +6 -4
  38. package/docs/concepts/dispatch-lifecycle.md +228 -0
  39. package/docs/concepts/loop-engine.md +55 -0
  40. package/docs/concepts/multi-agent-workflows.md +167 -166
  41. package/docs/concepts/troubleshooting.md +10 -2
  42. package/docs/integrations/overview.md +14 -12
  43. package/package.json +1 -1
@@ -1,166 +1,167 @@
1
- # Multi-Agent Workflows
2
-
3
- brainclaw is built around a small set of memory primitives — **plans**, **claims**, **handoffs**, **decisions**, **traps**, and **runtime notes** — that work the same way whether you're orchestrating multiple agents in parallel right now or letting the next agent (or the next you) pick up the work next week.
4
-
5
- This doc walks through four concrete scenarios. Pick the one that matches what you're doing.
6
-
7
- ---
8
-
9
- ## 1. Active orchestration — parallel work across agent instances
10
-
11
- **Scenario** — you have a sequence of independent lanes and want several agents (same agent, different instances, or several different agents) to work on them in parallel.
12
-
13
- **Walkthrough**:
14
-
15
- 1. Capture the work as plans, then group them into a sequence with explicit lane labels and dependencies:
16
-
17
- ```text
18
- bclaw_create(entity="plan", data={ text: "Refactor auth module", … })
19
- bclaw_create(entity="plan", data={ text: "Add e2e tests", … })
20
-
21
- # Then, via CLI or a follow-up call:
22
- brainclaw sequence create "auth-refactor-cycle" --items '[
23
- {"planId":"pln_aaa","rank":1,"lane":"refactor"},
24
- {"planId":"pln_bbb","rank":2,"lane":"tests","hard_after":["pln_aaa"]}
25
- ]' --status active
26
- ```
27
-
28
- 2. Dispatch the sequence — the dispatcher picks up the ready lanes (no `hard_after` blocking), creates one claim + worktree per lane, and routes inbox messages by `claim_id`:
29
-
30
- ```text
31
- bclaw_dispatch(intent="execute", agents=[<your agents>])
32
- ```
33
-
34
- 3. Each spawned worker runs in its own worktree (so concurrent edits don't collide), reads its inbox, and progresses the plan. Coordinator polls `bclaw_context(kind="board")` to follow progress.
35
-
36
- 4. As each lane lands a commit, merge it into master and release the claim. Lanes with `hard_after` unblock automatically once their predecessors are `done`.
37
-
38
- **What the primitives do here**: claims isolate scope per lane, the sequence's `hard_after` graph orders the work, and worktrees give Git-level isolation so parallel commits don't conflict.
39
-
40
- ---
41
-
42
- ## 2. Agent switching — when an agent runs out of credits mid-task
43
-
44
- **Scenario** — your active agent hits a credit/quota limit while a task is half-done. You want the next agent (a different model, a fresh instance, anything you have available) to resume cleanly without re-explaining the whole project.
45
-
46
- **Walkthrough**:
47
-
48
- 1. Before the active agent shuts down, close out properly:
49
-
50
- ```text
51
- bclaw_session_end(narrative="Implemented X. Need to finish Y. Tests for Z still pending.")
52
- ```
53
-
54
- This snapshots the session, releases the active claims, and writes a handoff with the narrative + commit list.
55
-
56
- 2. Bring up the next agent (any compatible one). Its first call is `bclaw_work(intent="resume")`:
57
-
58
- ```text
59
- bclaw_work(intent="resume")
60
- ```
61
-
62
- This returns the session context: open plans, recent decisions, active constraints, known traps, the latest handoff narrative, and any unfinished claims it can adopt.
63
-
64
- 3. The new agent reads the handoff, picks up the right plan, and either creates a fresh claim on the same scope or adopts the existing one:
65
-
66
- ```text
67
- bclaw_work(intent="execute", planId="pln_…", scope="src/...")
68
- ```
69
-
70
- 4. From here on it's a normal session — the new agent has all the context the previous one had.
71
-
72
- **What the primitives do here**: the handoff carries the narrative and the file delta, the session record carries the runtime context, and shared memory (decisions, constraints, traps) means the new agent doesn't relearn what the previous one already knows.
73
-
74
- ---
75
-
76
- ## 3. Project recovery — returning to a project after weeks
77
-
78
- **Scenario** — you (or an agent on your behalf) come back to a project after a couple of weeks. You don't remember exactly where things stood. You want to ramp back up in a few minutes, not an afternoon.
79
-
80
- **Walkthrough**:
81
-
82
- 1. From the project root, ask any compatible agent to load context with the canonical facade:
83
-
84
- ```text
85
- bclaw_work(intent="resume")
86
- ```
87
-
88
- You get back: in-progress plans, blocked plans, decisions taken since you left, active constraints, known traps, recent handoffs, and a session continuity hint (where the last session left off).
89
-
90
- 2. If you want a narrower view focused on one area:
91
-
92
- ```text
93
- bclaw_context(kind="memory", path="src/auth", profile="briefing")
94
- ```
95
-
96
- 3. Capture the things you remember in the moment — even rough — as runtime notes. They live in memory and can be promoted later to durable decisions or traps:
97
-
98
- ```text
99
- bclaw_create(entity="runtime_note", data={ text: "Token rotation logic was the next thing to ship" })
100
- ```
101
-
102
- 4. Pick the next plan, claim its scope, and start working. The agent has everything it needs.
103
-
104
- **What the primitives do here**: durable memory means decisions and constraints survive long absences, the session continuity record bridges the gap between runs, and runtime notes give a low-friction way to capture half-formed ideas as they come back to you.
105
-
106
- ---
107
-
108
- ## 4. Team async — multiple humans and agents on the same project
109
-
110
- **Scenario** — two or more people work on the same project, possibly with their own agents. Everyone needs to see the same plans, the same constraints, the same decisions, without constant Slack pings.
111
-
112
- **Walkthrough**:
113
-
114
- 1. Whenever someone takes a non-trivial decision (architecture, library choice, naming convention), capture it once:
115
-
116
- ```text
117
- bclaw_create(entity="decision", data={ text: "Use OAuth 2.0 with PKCE", outcome: "approved" })
118
- bclaw_create(entity="constraint", data={ text: "All auth endpoints must rate-limit", category: "security" })
119
- bclaw_create(entity="trap", data={ text: "Don't import from src/legacy/", severity: "high" })
120
- ```
121
-
122
- These become visible to every agent (and every teammate's agent) on the next `bclaw_context` call.
123
-
124
- 2. When someone starts a non-trivial chunk of work, claim its scope so others can see it:
125
-
126
- ```text
127
- bclaw_work(intent="execute", scope="src/auth", task="Token rotation rework")
128
- ```
129
-
130
- The agent board (`bclaw_context(kind="board")` or `brainclaw agent-board`) now shows that scope as taken — anyone considering the same area sees the claim and either coordinates or picks something else.
131
-
132
- 3. When work is ready for review, hand it off explicitly. The handoff includes the file delta, the narrative, and any open questions:
133
-
134
- ```text
135
- bclaw_coordinate(intent="review", task="Auth refactor ready for review", scope="src/auth")
136
- ```
137
-
138
- 4. Reviewers pick up the handoff via inbox (`bclaw_read_inbox`) and respond either by accepting + closing it, or by sending back fixes through the same coordination loop.
139
-
140
- **What the primitives do here**: shared memory means every teammate's agent operates with the same constraints and traps, claims prevent double-work even without coordination meetings, and handoffs replace ad-hoc "hey, can you look at this?" pings with auditable artifacts.
141
-
142
- ---
143
-
144
- ## How the four scenarios share the same model
145
-
146
- Notice that the four walkthroughs above use the **same primitives**, just composed differently:
147
-
148
- | Primitive | Active orchestration | Agent switching | Project recovery | Team async |
149
- |---|---|---|---|---|
150
- | **plan** | unit of work in a lane | what the next agent picks up | what you ramp back into | what teammates see in the board |
151
- | **claim** | scope lock per lane | snapshotted on session_end, adoptable later | shows what was in flight | prevents teammates from double-editing |
152
- | **handoff** | between sequential lanes | carries the narrative + delta | bridges across the gap | replaces "ping me when ready" |
153
- | **decision / constraint / trap** | guides every spawned worker | survives the credit-limit cutover | reminds you of past choices | propagates team knowledge |
154
- | **runtime_note** | per-lane observations | quick captures before shutdown | half-formed thoughts on return | informal observations to share |
155
-
156
- You don't pick a "mode" up front. You compose the primitives in whatever way fits the moment, and brainclaw keeps them durable across all of it.
157
-
158
- ---
159
-
160
- ## Next reads
161
-
162
- - [memory.md](memory.md) — what counts as memory and how it's organized
163
- - [plans-and-claims.md](plans-and-claims.md) — coordination layer in depth
164
- - [loop-engine.md](loop-engine.md) — structured multi-turn protocols (review loops, ideation, etc.)
165
- - [memory-staleness.md](memory-staleness.md) — how brainclaw signals when stored items may be outdated
166
- - [../integrations/overview.md](../integrations/overview.md) — connecting your specific agent
1
+ # Multi-Agent Workflows
2
+
3
+ brainclaw is built around a small set of memory primitives — **plans**, **claims**, **handoffs**, **decisions**, **traps**, and **runtime notes** — that work the same way whether you're orchestrating multiple agents in parallel right now or letting the next agent (or the next you) pick up the work next week.
4
+
5
+ This doc walks through four concrete scenarios. Pick the one that matches what you're doing.
6
+
7
+ ---
8
+
9
+ ## 1. Active orchestration — parallel work across agent instances
10
+
11
+ **Scenario** — you have a sequence of independent lanes and want several agents (same agent, different instances, or several different agents) to work on them in parallel.
12
+
13
+ **Walkthrough**:
14
+
15
+ 1. Capture the work as plans, then group them into a sequence with explicit lane labels and dependencies:
16
+
17
+ ```text
18
+ bclaw_create(entity="plan", data={ text: "Refactor auth module", … })
19
+ bclaw_create(entity="plan", data={ text: "Add e2e tests", … })
20
+
21
+ # Then, via CLI or a follow-up call:
22
+ brainclaw sequence create "auth-refactor-cycle" --items '[
23
+ {"planId":"pln_aaa","rank":1,"lane":"refactor"},
24
+ {"planId":"pln_bbb","rank":2,"lane":"tests","hard_after":["pln_aaa"]}
25
+ ]' --status active
26
+ ```
27
+
28
+ 2. Dispatch the sequence — the dispatcher picks up the ready lanes (no `hard_after` blocking), creates one claim + worktree per lane, and routes inbox messages by `claim_id`:
29
+
30
+ ```text
31
+ bclaw_dispatch(intent="execute", agents=[<your agents>])
32
+ ```
33
+
34
+ 3. Each spawned worker runs in its own worktree (so concurrent edits don't collide), reads its inbox, and progresses the plan. Coordinator polls `bclaw_context(kind="board")` to follow progress.
35
+
36
+ 4. As each lane lands a commit, merge it into master and release the claim. Lanes with `hard_after` unblock automatically once their predecessors are `done`.
37
+
38
+ **What the primitives do here**: claims isolate scope per lane, the sequence's `hard_after` graph orders the work, and worktrees give Git-level isolation so parallel commits don't conflict.
39
+
40
+ ---
41
+
42
+ ## 2. Agent switching — when an agent runs out of credits mid-task
43
+
44
+ **Scenario** — your active agent hits a credit/quota limit while a task is half-done. You want the next agent (a different model, a fresh instance, anything you have available) to resume cleanly without re-explaining the whole project.
45
+
46
+ **Walkthrough**:
47
+
48
+ 1. Before the active agent shuts down, close out properly:
49
+
50
+ ```text
51
+ bclaw_session_end(narrative="Implemented X. Need to finish Y. Tests for Z still pending.")
52
+ ```
53
+
54
+ This snapshots the session, releases the active claims, and writes a handoff with the narrative + commit list.
55
+
56
+ 2. Bring up the next agent (any compatible one). Its first call is `bclaw_work(intent="resume")`:
57
+
58
+ ```text
59
+ bclaw_work(intent="resume")
60
+ ```
61
+
62
+ This returns the session context: open plans, recent decisions, active constraints, known traps, the latest handoff narrative, and any unfinished claims it can adopt.
63
+
64
+ 3. The new agent reads the handoff, picks up the right plan, and either creates a fresh claim on the same scope or adopts the existing one:
65
+
66
+ ```text
67
+ bclaw_work(intent="execute", planId="pln_…", scope="src/...")
68
+ ```
69
+
70
+ 4. From here on it's a normal session — the new agent has all the context the previous one had.
71
+
72
+ **What the primitives do here**: the handoff carries the narrative and the file delta, the session record carries the runtime context, and shared memory (decisions, constraints, traps) means the new agent doesn't relearn what the previous one already knows.
73
+
74
+ ---
75
+
76
+ ## 3. Project recovery — returning to a project after weeks
77
+
78
+ **Scenario** — you (or an agent on your behalf) come back to a project after a couple of weeks. You don't remember exactly where things stood. You want to ramp back up in a few minutes, not an afternoon.
79
+
80
+ **Walkthrough**:
81
+
82
+ 1. From the project root, ask any compatible agent to load context with the canonical facade:
83
+
84
+ ```text
85
+ bclaw_work(intent="resume")
86
+ ```
87
+
88
+ You get back: in-progress plans, blocked plans, decisions taken since you left, active constraints, known traps, recent handoffs, and a session continuity hint (where the last session left off).
89
+
90
+ 2. If you want a narrower view focused on one area:
91
+
92
+ ```text
93
+ bclaw_context(kind="memory", path="src/auth", profile="briefing")
94
+ ```
95
+
96
+ 3. Capture the things you remember in the moment — even rough — as runtime notes. They live in memory and can be promoted later to durable decisions or traps:
97
+
98
+ ```text
99
+ bclaw_create(entity="runtime_note", data={ text: "Token rotation logic was the next thing to ship" })
100
+ ```
101
+
102
+ 4. Pick the next plan, claim its scope, and start working. The agent has everything it needs.
103
+
104
+ **What the primitives do here**: durable memory means decisions and constraints survive long absences, the session continuity record bridges the gap between runs, and runtime notes give a low-friction way to capture half-formed ideas as they come back to you.
105
+
106
+ ---
107
+
108
+ ## 4. Team async — multiple humans and agents on the same project
109
+
110
+ **Scenario** — two or more people work on the same project, possibly with their own agents. Everyone needs to see the same plans, the same constraints, the same decisions, without constant Slack pings.
111
+
112
+ **Walkthrough**:
113
+
114
+ 1. Whenever someone takes a non-trivial decision (architecture, library choice, naming convention), capture it once:
115
+
116
+ ```text
117
+ bclaw_create(entity="decision", data={ text: "Use OAuth 2.0 with PKCE", outcome: "approved" })
118
+ bclaw_create(entity="constraint", data={ text: "All auth endpoints must rate-limit", category: "security" })
119
+ bclaw_create(entity="trap", data={ text: "Don't import from src/legacy/", severity: "high" })
120
+ ```
121
+
122
+ These become visible to every agent (and every teammate's agent) on the next `bclaw_context` call.
123
+
124
+ 2. When someone starts a non-trivial chunk of work, claim its scope so others can see it:
125
+
126
+ ```text
127
+ bclaw_work(intent="execute", scope="src/auth", task="Token rotation rework")
128
+ ```
129
+
130
+ The agent board (`bclaw_context(kind="board")` or `brainclaw agent-board`) now shows that scope as taken — anyone considering the same area sees the claim and either coordinates or picks something else.
131
+
132
+ 3. When work is ready for review, hand it off explicitly. The handoff includes the file delta, the narrative, and any open questions:
133
+
134
+ ```text
135
+ bclaw_coordinate(intent="review", task="Auth refactor ready for review", scope="src/auth")
136
+ ```
137
+
138
+ 4. Reviewers pick up the handoff via inbox (`bclaw_read_inbox`) and respond either by accepting + closing it, or by sending back fixes through the same coordination loop.
139
+
140
+ **What the primitives do here**: shared memory means every teammate's agent operates with the same constraints and traps, claims prevent double-work even without coordination meetings, and handoffs replace ad-hoc "hey, can you look at this?" pings with auditable artifacts.
141
+
142
+ ---
143
+
144
+ ## How the four scenarios share the same model
145
+
146
+ Notice that the four walkthroughs above use the **same primitives**, just composed differently:
147
+
148
+ | Primitive | Active orchestration | Agent switching | Project recovery | Team async |
149
+ |---|---|---|---|---|
150
+ | **plan** | unit of work in a lane | what the next agent picks up | what you ramp back into | what teammates see in the board |
151
+ | **claim** | scope lock per lane | snapshotted on session_end, adoptable later | shows what was in flight | prevents teammates from double-editing |
152
+ | **handoff** | between sequential lanes | carries the narrative + delta | bridges across the gap | replaces "ping me when ready" |
153
+ | **decision / constraint / trap** | guides every spawned worker | survives the credit-limit cutover | reminds you of past choices | propagates team knowledge |
154
+ | **runtime_note** | per-lane observations | quick captures before shutdown | half-formed thoughts on return | informal observations to share |
155
+
156
+ You don't pick a "mode" up front. You compose the primitives in whatever way fits the moment, and brainclaw keeps them durable across all of it.
157
+
158
+ ---
159
+
160
+ ## Next reads
161
+
162
+ - [memory.md](memory.md) — what counts as memory and how it's organized
163
+ - [plans-and-claims.md](plans-and-claims.md) — coordination layer in depth
164
+ - [loop-engine.md](loop-engine.md) — structured multi-turn protocols (review loops, ideation, etc.)
165
+ - [dispatch-lifecycle.md](dispatch-lifecycle.md) — what actually happens when a dispatch goes wrong: 6-entity dance, brief-ack sentinel, stdout/stderr logs, observability decision tree
166
+ - [memory-staleness.md](memory-staleness.md) — how brainclaw signals when stored items may be outdated
167
+ - [../integrations/overview.md](../integrations/overview.md) — connecting your specific agent
@@ -187,17 +187,24 @@ brainclaw stale resolve <plan_id> # → dropped (default for stale)
187
187
  ```bash
188
188
  # 1. Is the worker process still alive?
189
189
  ps -ef | grep <agent-binary> # codex, claude, copilot, …
190
+ # Windows: Get-Process -Id <pid> # or `tasklist /FI "PID eq <pid>"`
190
191
 
191
192
  # 2. Did the brief-ack file land?
192
193
  ls .brainclaw/coordination/runtime/ack/<assignment_id>.ack
193
194
  # If yes → spawn started, worker is somewhere in its loop
194
195
  # If no → spawn never started or died before the wrap shell ran touch
195
196
 
196
- # 3. Inspect the worktree for activity
197
+ # 3. (pln#504) What did the worker actually say? stdout/stderr capture
198
+ # Spawned workers now route their streams to per-assignment log files. If the
199
+ # worker died silently, the error usually shows up here.
200
+ cat .brainclaw/coordination/runtime/log/<assignment_id>.stdout.log
201
+ cat .brainclaw/coordination/runtime/log/<assignment_id>.stderr.log
202
+
203
+ # 4. Inspect the worktree for activity
197
204
  git -C <worktree> log --oneline -5
198
205
  git -C <worktree> status
199
206
 
200
- # 4. Check the run log
207
+ # 5. Check the run log
201
208
  brainclaw inbox list --agent <agent>
202
209
  # or via MCP: bclaw_assignment_events(assignmentId="<id>")
203
210
  ```
@@ -213,6 +220,7 @@ brainclaw inbox list --agent <agent>
213
220
 
214
221
  ## See also
215
222
 
223
+ - [`docs/concepts/dispatch-lifecycle.md`](dispatch-lifecycle.md) — the entity model + FSMs + observability decision tree underlying every diagnostic step on this page
216
224
  - [`docs/concepts/memory-staleness.md`](memory-staleness.md) — staleness signals and resolve flow in depth
217
225
  - [`docs/concepts/loop-engine.md`](loop-engine.md) — multi-turn loops (review-fix), recovery semantics for in-flight loops
218
226
  - [`docs/concepts/upgrade-cli.md`](upgrade-cli.md) — `brainclaw upgrade` design + rollback path
@@ -1,15 +1,17 @@
1
1
  # Integration Overview
2
2
 
3
- Brainclaw works alongside your existing coding agents. It does not replace them — it gives them a shared memory and coordination layer they can all read from and write to.
4
-
5
- ## Onboarding model
6
-
7
- There are two separate setup scopes:
8
-
9
- - **Machine scope** `brainclaw setup-machine` (or the broader `brainclaw setup`) detects agents on this machine and writes the machine-level MCP/user config Brainclaw manages.
10
- - **Project scope** — `brainclaw init` creates or refreshes `.brainclaw/` for the current repository and rewrites the managed project/agent files safely.
11
-
12
- That split is deliberate. A fresh machine may need MCP registration before any repository is touched, while an existing project may already have `.brainclaw/` and only need a safe refresh for the arriving agent.
3
+ Brainclaw works alongside your existing coding agents. It does not replace them — it gives them a shared memory and coordination layer they can all read from and write to.
4
+
5
+ For coordination internals — what happens when brainclaw spawns or routes work to another agent (claims, assignments, brief-ack sentinels, stdout/stderr log files, FSM transitions) — see [../concepts/dispatch-lifecycle.md](../concepts/dispatch-lifecycle.md).
6
+
7
+ ## Onboarding model
8
+
9
+ There are two separate setup scopes:
10
+
11
+ - **Machine scope** — `brainclaw setup-machine` (or the broader `brainclaw setup`) detects agents on this machine and writes the machine-level MCP/user config Brainclaw manages.
12
+ - **Project scope** `brainclaw init` creates or refreshes `.brainclaw/` for the current repository and rewrites the managed project/agent files safely.
13
+
14
+ That split is deliberate. A fresh machine may need MCP registration before any repository is touched, while an existing project may already have `.brainclaw/` and only need a safe refresh for the arriving agent.
13
15
 
14
16
  ## How agents connect to brainclaw
15
17
 
@@ -52,11 +54,11 @@ The agent gets dynamic context injected at every prompt. The instruction file ca
52
54
 
53
55
  **Today:** Claude Code
54
56
 
55
- ### Standard integration (MCP, no hooks)
57
+ ### Standard integration (MCP, no hooks)
56
58
 
57
59
  The agent can call brainclaw tools but doesn't get automatic context injection. The instruction file is more directive — it tells the agent it MUST call specific tools before working, and includes the most critical traps statically. For agents without hooks, an opt-in `.live.md` companion (regenerated on session-end and handoff) carries plans, claims, traps, candidates, and handoffs as a parity backstop.
58
60
 
59
- **Today:** Cursor, Windsurf, Cline, Roo, Continue, Kilocode, OpenCode, Codex, GitHub Copilot, Antigravity/Gemini CLI, Mistral Vibe
61
+ **Today:** Cursor, Windsurf, Cline, Roo, Continue, Kilocode, OpenCode, Codex, GitHub Copilot, Antigravity/Gemini CLI, Mistral Vibe
60
62
 
61
63
  ### Limited integration (no MCP)
62
64
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "brainclaw",
3
- "version": "1.5.5",
3
+ "version": "1.6.0",
4
4
  "description": "Shared project memory for humans and coding agents.",
5
5
  "type": "module",
6
6
  "bin": {