brainclaw 1.9.0 → 1.10.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 (149) hide show
  1. package/README.md +631 -499
  2. package/dist/brainclaw-vscode.vsix +0 -0
  3. package/dist/cli.js +18 -1
  4. package/dist/commands/code-map.js +129 -0
  5. package/dist/commands/codev.js +7 -0
  6. package/dist/commands/harvest.js +1 -1
  7. package/dist/commands/hooks.js +73 -73
  8. package/dist/commands/init.js +1 -1
  9. package/dist/commands/install-hooks.js +78 -78
  10. package/dist/commands/mcp-read-handlers.js +57 -14
  11. package/dist/commands/mcp.js +200 -13
  12. package/dist/commands/run-profile.js +3 -2
  13. package/dist/commands/switch.js +125 -93
  14. package/dist/commands/version.js +1 -1
  15. package/dist/core/agent-capability.js +19 -4
  16. package/dist/core/agent-files.js +131 -119
  17. package/dist/core/code-map/backend.js +123 -0
  18. package/dist/core/code-map/core.js +81 -0
  19. package/dist/core/code-map/drafts.js +2 -0
  20. package/dist/core/code-map/extractor.js +29 -0
  21. package/dist/core/code-map/finalizer.js +191 -0
  22. package/dist/core/code-map/freshness.js +108 -0
  23. package/dist/core/code-map/ids.js +0 -0
  24. package/dist/core/code-map/importable.js +35 -0
  25. package/dist/core/code-map/indexes.js +197 -0
  26. package/dist/core/code-map/lang/java/imports.scm +17 -0
  27. package/dist/core/code-map/lang/java/index.js +254 -0
  28. package/dist/core/code-map/lang/java/tags.scm +48 -0
  29. package/dist/core/code-map/lang/php/imports.scm +21 -0
  30. package/dist/core/code-map/lang/php/index.js +251 -0
  31. package/dist/core/code-map/lang/php/tags.scm +44 -0
  32. package/dist/core/code-map/lang/provider.js +9 -0
  33. package/dist/core/code-map/lang/providers.js +24 -0
  34. package/dist/core/code-map/lang/python/imports.scm +90 -0
  35. package/dist/core/code-map/lang/python/index.js +364 -0
  36. package/dist/core/code-map/lang/python/tags.scm +81 -0
  37. package/dist/core/code-map/lang/query-runtime.js +374 -0
  38. package/dist/core/code-map/lang/registry.js +125 -0
  39. package/dist/core/code-map/lang/typescript/imports.scm +90 -0
  40. package/dist/core/code-map/lang/typescript/index.js +306 -0
  41. package/dist/core/code-map/lang/typescript/tags.js.scm +106 -0
  42. package/dist/core/code-map/lang/typescript/tags.scm +151 -0
  43. package/dist/core/code-map/lock.js +210 -0
  44. package/dist/core/code-map/materialized.js +51 -0
  45. package/dist/core/code-map/memory-reader.js +59 -0
  46. package/dist/core/code-map/paths.js +53 -0
  47. package/dist/core/code-map/query.js +568 -0
  48. package/dist/core/code-map/refresh.js +0 -0
  49. package/dist/core/code-map/resolve.js +177 -0
  50. package/dist/core/code-map/store.js +206 -0
  51. package/dist/core/code-map/types.js +288 -0
  52. package/dist/core/code-map/vocabulary.js +57 -0
  53. package/dist/core/code-map/wasm-loader.js +294 -0
  54. package/dist/core/code-map/work-section.js +206 -0
  55. package/dist/core/codev-prompts.js +38 -38
  56. package/dist/core/codev-rounds.js +4 -0
  57. package/dist/core/default-profiles/doctor.yaml +11 -11
  58. package/dist/core/default-profiles/janitor.yaml +11 -11
  59. package/dist/core/default-profiles/onboarder.yaml +11 -11
  60. package/dist/core/default-profiles/reviewer.yaml +13 -13
  61. package/dist/core/dispatcher.js +1 -1
  62. package/dist/core/entity-operations.js +29 -3
  63. package/dist/core/execution-adapters.js +11 -10
  64. package/dist/core/execution-profile.js +58 -0
  65. package/dist/core/execution.js +1 -1
  66. package/dist/core/facade-schema.js +9 -0
  67. package/dist/core/instruction-templates.js +2 -0
  68. package/dist/core/loops/verbs.js +0 -1
  69. package/dist/core/mcp-command-resolution.js +3 -1
  70. package/dist/core/messaging.js +2 -2
  71. package/dist/core/protocol-skills.js +164 -164
  72. package/dist/core/runtime-signals.js +1 -1
  73. package/dist/core/search.js +19 -2
  74. package/dist/core/security-guard.js +207 -207
  75. package/dist/core/spawn-check.js +16 -2
  76. package/dist/core/staleness.js +1 -1
  77. package/dist/core/store-resolution.js +67 -11
  78. package/dist/core/worktree.js +18 -18
  79. package/dist/facts.js +9 -5
  80. package/dist/facts.json +8 -4
  81. package/dist/vendor/web-tree-sitter/tree-sitter.js +3980 -0
  82. package/dist/vendor/web-tree-sitter/tree-sitter.wasm +0 -0
  83. package/dist/wasm/tree-sitter-java.wasm +0 -0
  84. package/dist/wasm/tree-sitter-javascript.wasm +0 -0
  85. package/dist/wasm/tree-sitter-php.wasm +0 -0
  86. package/dist/wasm/tree-sitter-python.wasm +0 -0
  87. package/dist/wasm/tree-sitter-tsx.wasm +0 -0
  88. package/dist/wasm/tree-sitter-typescript.wasm +0 -0
  89. package/dist/wasm/tree-sitter.wasm +0 -0
  90. package/docs/PROTOCOL.md +1 -1
  91. package/docs/adapters/openclaw.md +43 -43
  92. package/docs/architecture/project-refs.md +328 -328
  93. package/docs/cli.md +2131 -2093
  94. package/docs/code-map.md +198 -0
  95. package/docs/concepts/coordination.md +52 -52
  96. package/docs/concepts/coordinator-runbook.md +129 -129
  97. package/docs/concepts/dispatch-lifecycle.md +245 -245
  98. package/docs/concepts/event-log-store.md +928 -928
  99. package/docs/concepts/ideation-loop.md +317 -317
  100. package/docs/concepts/loop-engine.md +520 -511
  101. package/docs/concepts/mcp-governance.md +268 -268
  102. package/docs/concepts/memory.md +84 -84
  103. package/docs/concepts/multi-agent-workflows.md +167 -167
  104. package/docs/concepts/observer-protocol.md +361 -361
  105. package/docs/concepts/plans-and-claims.md +217 -217
  106. package/docs/concepts/project-md-convention.md +35 -35
  107. package/docs/concepts/runtime-notes.md +38 -38
  108. package/docs/concepts/troubleshooting.md +254 -254
  109. package/docs/concepts/workspace-bootstrapping.md +142 -142
  110. package/docs/context-format-changelog.md +35 -35
  111. package/docs/context-format.md +48 -48
  112. package/docs/index.md +65 -65
  113. package/docs/integrations/agents.md +158 -158
  114. package/docs/integrations/claude-code.md +23 -23
  115. package/docs/integrations/cline.md +77 -77
  116. package/docs/integrations/continue.md +55 -55
  117. package/docs/integrations/copilot.md +68 -68
  118. package/docs/integrations/cursor.md +23 -23
  119. package/docs/integrations/kilocode.md +72 -72
  120. package/docs/integrations/mcp.md +385 -378
  121. package/docs/integrations/mistral-vibe.md +122 -122
  122. package/docs/integrations/openclaw.md +92 -92
  123. package/docs/integrations/opencode.md +84 -84
  124. package/docs/integrations/overview.md +115 -115
  125. package/docs/integrations/roo.md +71 -71
  126. package/docs/integrations/windsurf.md +77 -77
  127. package/docs/mcp-schema-changelog.md +364 -356
  128. package/docs/playbooks/integration/index.md +121 -121
  129. package/docs/playbooks/orchestration.md +37 -0
  130. package/docs/playbooks/productivity/index.md +99 -99
  131. package/docs/playbooks/team/index.md +117 -117
  132. package/docs/product/agent-first-model.md +184 -184
  133. package/docs/product/entity-model-audit.md +462 -462
  134. package/docs/product/positioning.md +86 -86
  135. package/docs/quickstart-existing-project.md +107 -107
  136. package/docs/quickstart.md +183 -183
  137. package/docs/release-maintenance.md +79 -79
  138. package/docs/reputation.md +52 -52
  139. package/docs/review.md +45 -45
  140. package/docs/security.md +212 -212
  141. package/docs/server-operations.md +118 -118
  142. package/docs/storage.md +106 -106
  143. package/package.json +86 -66
  144. package/docs/concepts/event-log-store-critique-A.md +0 -333
  145. package/docs/concepts/event-log-store-critique-B.md +0 -353
  146. package/docs/concepts/event-log-store-phase0-measurements.md +0 -58
  147. package/docs/concepts/event-log-store-proposal-A.md +0 -365
  148. package/docs/concepts/event-log-store-proposal-B.md +0 -404
  149. package/docs/concepts/identity-model-proposal.md +0 -371
@@ -1,70 +1,70 @@
1
- # Positioning
2
-
3
- brainclaw is a **local-first coordination layer for humans and coding agents**.
4
-
5
- It is not trying to become another coding agent, another hosted team platform, or another opaque memory service.
6
-
7
- ## The problem
8
-
9
- Coding agents are good at local generation but weak at shared project state.
10
-
11
- They often struggle with:
12
-
13
- - remembering active constraints
14
- - keeping track of recent decisions
15
- - avoiding known traps
16
- - coordinating shared plans
17
- - handling handoffs cleanly
18
- - avoiding collisions on files
19
- - adapting instructions across different workspaces on the same machine
20
-
21
- Traditional agent instruction files help, but they are relatively static.
22
- They do not provide a living coordination layer for a workspace.
23
-
24
- ## What brainclaw does differently
25
-
26
- brainclaw turns the workspace into a shared layer of:
27
-
28
- - project memory
29
- - implementation state
30
- - coordination state
31
- - prompt-ready context
32
-
33
- Instead of relying only on fixed instruction files, brainclaw exposes fresh workspace state through files, CLI commands, and MCP tools.
34
-
35
- It also writes directly to each agent's native instruction format — `CLAUDE.md`, `.cursor/rules/`, `.windsurfrules`, etc. — so the right context is always in the right place.
36
-
37
- ## What brainclaw is not
38
-
39
- - a replacement for your coding agents
40
- - a project management SaaS
41
- - a black-box orchestration platform
42
- - a cloud memory layer
43
- - a replacement for Git
44
-
45
- It sits next to existing tools and helps them collaborate more like a development team.
46
-
47
- ## Core product promise
48
-
49
- brainclaw helps coding agents and humans work together around a shared workspace by making the important things explicit:
50
-
51
- - what the project should remember
52
- - what is currently being worked on
53
- - who is touching which files
54
- - what needs to be handed off
55
- - what context is relevant right now
56
-
57
- ## Why local-first matters
58
-
59
- Local-first gives teams:
60
-
61
- - full control over data
62
- - no network dependency
63
- - no hidden storage
64
- - plain text and JSON artifacts
65
- - Git history for shared project state
66
- - compatibility with enterprise or offline environments
67
-
1
+ # Positioning
2
+
3
+ brainclaw is a **local-first coordination layer for humans and coding agents**.
4
+
5
+ It is not trying to become another coding agent, another hosted team platform, or another opaque memory service.
6
+
7
+ ## The problem
8
+
9
+ Coding agents are good at local generation but weak at shared project state.
10
+
11
+ They often struggle with:
12
+
13
+ - remembering active constraints
14
+ - keeping track of recent decisions
15
+ - avoiding known traps
16
+ - coordinating shared plans
17
+ - handling handoffs cleanly
18
+ - avoiding collisions on files
19
+ - adapting instructions across different workspaces on the same machine
20
+
21
+ Traditional agent instruction files help, but they are relatively static.
22
+ They do not provide a living coordination layer for a workspace.
23
+
24
+ ## What brainclaw does differently
25
+
26
+ brainclaw turns the workspace into a shared layer of:
27
+
28
+ - project memory
29
+ - implementation state
30
+ - coordination state
31
+ - prompt-ready context
32
+
33
+ Instead of relying only on fixed instruction files, brainclaw exposes fresh workspace state through files, CLI commands, and MCP tools.
34
+
35
+ It also writes directly to each agent's native instruction format — `CLAUDE.md`, `.cursor/rules/`, `.windsurfrules`, etc. — so the right context is always in the right place.
36
+
37
+ ## What brainclaw is not
38
+
39
+ - a replacement for your coding agents
40
+ - a project management SaaS
41
+ - a black-box orchestration platform
42
+ - a cloud memory layer
43
+ - a replacement for Git
44
+
45
+ It sits next to existing tools and helps them collaborate more like a development team.
46
+
47
+ ## Core product promise
48
+
49
+ brainclaw helps coding agents and humans work together around a shared workspace by making the important things explicit:
50
+
51
+ - what the project should remember
52
+ - what is currently being worked on
53
+ - who is touching which files
54
+ - what needs to be handed off
55
+ - what context is relevant right now
56
+
57
+ ## Why local-first matters
58
+
59
+ Local-first gives teams:
60
+
61
+ - full control over data
62
+ - no network dependency
63
+ - no hidden storage
64
+ - plain text and JSON artifacts
65
+ - Git history for shared project state
66
+ - compatibility with enterprise or offline environments
67
+
68
68
  ## License
69
69
 
70
70
  brainclaw core is published under the **MIT License**.
@@ -75,22 +75,22 @@ The product split is:
75
75
  - remote shared-memory, hosted collaboration, advanced dashboards, and related private add-ons will stay separate commercial products
76
76
 
77
77
  The MIT core covers the local coordination layer:
78
-
79
- - local project memory
80
- - local MCP and CLI workflows
81
- - onboarding and bootstrap
82
- - plans, claims, handoffs, and runtime notes
83
- - local agent integrations
84
-
85
- The commercial side is meant to cover capabilities that go beyond the local-first core:
86
-
87
- - shared memory through the cloud for agents working across machines
88
- - hosted sync and collaboration services
89
- - advanced dashboards
90
- - private add-ons around those hosted features
91
-
92
- The goal is not to ship a stripped-down teaser. The goal is to keep the public core complete and useful on its own, while keeping remote and hosted features in a separate product line.
93
-
94
- ## Positioning summary
95
-
96
- > A local-first coordination layer for humans and coding agents.
78
+
79
+ - local project memory
80
+ - local MCP and CLI workflows
81
+ - onboarding and bootstrap
82
+ - plans, claims, handoffs, and runtime notes
83
+ - local agent integrations
84
+
85
+ The commercial side is meant to cover capabilities that go beyond the local-first core:
86
+
87
+ - shared memory through the cloud for agents working across machines
88
+ - hosted sync and collaboration services
89
+ - advanced dashboards
90
+ - private add-ons around those hosted features
91
+
92
+ The goal is not to ship a stripped-down teaser. The goal is to keep the public core complete and useful on its own, while keeping remote and hosted features in a separate product line.
93
+
94
+ ## Positioning summary
95
+
96
+ > A local-first coordination layer for humans and coding agents.
@@ -1,11 +1,11 @@
1
- # Joining a project that already uses brainclaw
2
-
3
- You cloned a repo and noticed `.brainclaw/` already exists — someone (or something) has set it up before you. This page walks through the read-then-register path for arriving on a configured project, which is **different** from creating a new one.
4
-
5
- If the repo is brand new and `.brainclaw/` is absent, see [quickstart.md](quickstart.md) instead.
6
-
7
- ## When to use this page
8
-
1
+ # Joining a project that already uses brainclaw
2
+
3
+ You cloned a repo and noticed `.brainclaw/` already exists — someone (or something) has set it up before you. This page walks through the read-then-register path for arriving on a configured project, which is **different** from creating a new one.
4
+
5
+ If the repo is brand new and `.brainclaw/` is absent, see [quickstart.md](quickstart.md) instead.
6
+
7
+ ## When to use this page
8
+
9
9
  | Situation | Use |
10
10
  |---|---|
11
11
  | Repo has no `.brainclaw/` | [quickstart.md](quickstart.md) (`brainclaw init`) |
@@ -17,23 +17,23 @@ The three commands now target different lifecycle stages:
17
17
  - `init` creates or refreshes project setup safely
18
18
  - `bootstrap` extracts project context into memory
19
19
  - `enable-agent` explicitly joins another agent to the same project
20
-
21
- ## Step 0 — verify your install is compatible
22
-
23
- ```bash
24
- brainclaw --version
25
- ```
26
-
27
- Compare with what the project expects. If `.brainclaw/config.yaml` has a `version_policy` block, it tells you the minimum version the project requires. If your local version is older, `brainclaw doctor --json` will surface a `version_policy` failure.
28
-
29
- To upgrade:
30
-
31
- ```bash
32
- npm install -g brainclaw@latest
33
- ```
34
-
35
- (or pull the team's local-pack tarball from `.releases/` if the project doesn't publish to npm.)
36
-
20
+
21
+ ## Step 0 — verify your install is compatible
22
+
23
+ ```bash
24
+ brainclaw --version
25
+ ```
26
+
27
+ Compare with what the project expects. If `.brainclaw/config.yaml` has a `version_policy` block, it tells you the minimum version the project requires. If your local version is older, `brainclaw doctor --json` will surface a `version_policy` failure.
28
+
29
+ To upgrade:
30
+
31
+ ```bash
32
+ npm install -g brainclaw@latest
33
+ ```
34
+
35
+ (or pull the team's local-pack tarball from `.releases/` if the project doesn't publish to npm.)
36
+
37
37
  ## Step 1 — bootstrap this machine if needed
38
38
 
39
39
  ```bash
@@ -67,89 +67,89 @@ These commands:
67
67
  If you use multiple agents on the same project, run `enable-agent` once per agent.
68
68
 
69
69
  ## Step 3 — read what already exists
70
-
71
- Before touching code, load the project's accumulated knowledge so you don't re-discover what others already learned.
72
-
73
- ### Via the CLI (you, the human)
74
-
75
- ```bash
76
- brainclaw context # full project memory as text (constraints, decisions, traps, plans)
77
- brainclaw agent-board # current state of plans, claims, and open handoffs
78
- brainclaw stale list # what looks abandoned and might need attention
79
- ```
80
-
81
- ### Via your agent (recommended day-to-day)
82
-
83
- Tell the agent to call:
84
-
85
- ```text
86
- bclaw_work(intent="resume")
87
- ```
88
-
89
- This single MCP call returns: open plans, recent decisions, active constraints, known traps, latest handoff narrative, plus a context-diff hint. Your agent reads that *before* writing any code.
90
-
91
- For a narrower view focused on the area you're about to touch:
92
-
93
- ```text
94
- bclaw_context(kind="memory", path="src/<area>/")
95
- ```
96
-
70
+
71
+ Before touching code, load the project's accumulated knowledge so you don't re-discover what others already learned.
72
+
73
+ ### Via the CLI (you, the human)
74
+
75
+ ```bash
76
+ brainclaw context # full project memory as text (constraints, decisions, traps, plans)
77
+ brainclaw agent-board # current state of plans, claims, and open handoffs
78
+ brainclaw stale list # what looks abandoned and might need attention
79
+ ```
80
+
81
+ ### Via your agent (recommended day-to-day)
82
+
83
+ Tell the agent to call:
84
+
85
+ ```text
86
+ bclaw_work(intent="resume")
87
+ ```
88
+
89
+ This single MCP call returns: open plans, recent decisions, active constraints, known traps, latest handoff narrative, plus a context-diff hint. Your agent reads that *before* writing any code.
90
+
91
+ For a narrower view focused on the area you're about to touch:
92
+
93
+ ```text
94
+ bclaw_context(kind="memory", path="src/<area>/")
95
+ ```
96
+
97
97
  ## Step 4 — discover in-flight work
98
-
99
- Several things may be already underway when you arrive:
100
-
101
- ```bash
102
- # Plans that other agents/humans started
103
- brainclaw plan list --status in_progress
104
-
105
- # Scopes someone else has claimed (don't touch those without coordination)
106
- brainclaw claim list
107
-
108
- # Sequences with parallel lanes still active
109
- brainclaw sequence list --status active
110
-
111
- # Open handoffs waiting for a reviewer
112
- brainclaw inbox list
113
- ```
114
-
115
- Or one-shot via MCP:
116
-
117
- ```text
118
- bclaw_context(kind="board")
119
- ```
120
-
121
- The board surfaces all four (plans, claims, sequences, handoffs) in one structured response.
122
-
98
+
99
+ Several things may be already underway when you arrive:
100
+
101
+ ```bash
102
+ # Plans that other agents/humans started
103
+ brainclaw plan list --status in_progress
104
+
105
+ # Scopes someone else has claimed (don't touch those without coordination)
106
+ brainclaw claim list
107
+
108
+ # Sequences with parallel lanes still active
109
+ brainclaw sequence list --status active
110
+
111
+ # Open handoffs waiting for a reviewer
112
+ brainclaw inbox list
113
+ ```
114
+
115
+ Or one-shot via MCP:
116
+
117
+ ```text
118
+ bclaw_context(kind="board")
119
+ ```
120
+
121
+ The board surfaces all four (plans, claims, sequences, handoffs) in one structured response.
122
+
123
123
  ## Step 5 — pick what to work on
124
-
125
- You have a few honest options:
126
-
127
- 1. **Pick up an open handoff** — `brainclaw inbox list` shows handoffs targeted at you (or unassigned). Read the handoff narrative, then claim its scope and start.
128
- 2. **Take a `todo` plan** — `brainclaw plan list --status todo` returns work nobody has started yet.
129
- 3. **Start something new** — create a fresh plan with `bclaw_create(entity="plan", data={…})`, then claim its scope. Make sure you're not duplicating an existing plan first.
130
-
131
- In all three cases, the workflow is then the same: `bclaw_work(intent="execute", scope=…, planId=…)` opens a session, claims the scope (with an isolated git worktree), and loads the relevant context.
132
-
124
+
125
+ You have a few honest options:
126
+
127
+ 1. **Pick up an open handoff** — `brainclaw inbox list` shows handoffs targeted at you (or unassigned). Read the handoff narrative, then claim its scope and start.
128
+ 2. **Take a `todo` plan** — `brainclaw plan list --status todo` returns work nobody has started yet.
129
+ 3. **Start something new** — create a fresh plan with `bclaw_create(entity="plan", data={…})`, then claim its scope. Make sure you're not duplicating an existing plan first.
130
+
131
+ In all three cases, the workflow is then the same: `bclaw_work(intent="execute", scope=…, planId=…)` opens a session, claims the scope (with an isolated git worktree), and loads the relevant context.
132
+
133
133
  ## Step 6 — verify your setup is healthy before commiting changes
134
-
135
- Once you've started working, sanity-check:
136
-
137
- ```bash
138
- brainclaw doctor
139
- ```
140
-
141
- This runs a series of checks: state validity, MCP runtime health (post-pln#478), agent-integration declarations, claim hygiene, freshness markers. If anything is amber or red, see [docs/concepts/troubleshooting.md](concepts/troubleshooting.md) for the runbook.
142
-
143
- ## What this page does *not* cover
144
-
145
- - **Creating a new project** → [quickstart.md](quickstart.md)
146
- - **Extracting context from an existing repo without `.brainclaw/`** → [bootstrap](concepts/workspace-bootstrapping.md)
134
+
135
+ Once you've started working, sanity-check:
136
+
137
+ ```bash
138
+ brainclaw doctor
139
+ ```
140
+
141
+ This runs a series of checks: state validity, MCP runtime health (post-pln#478), agent-integration declarations, claim hygiene, freshness markers. If anything is amber or red, see [docs/concepts/troubleshooting.md](concepts/troubleshooting.md) for the runbook.
142
+
143
+ ## What this page does *not* cover
144
+
145
+ - **Creating a new project** → [quickstart.md](quickstart.md)
146
+ - **Extracting context from an existing repo without `.brainclaw/`** → [bootstrap](concepts/workspace-bootstrapping.md)
147
147
  - **Setting up brainclaw on your machine for the first time** → [docs/integrations/overview.md](integrations/overview.md) (`brainclaw setup-machine` or the broader `brainclaw setup` flow)
148
- - **Recovering from a degraded state** → [docs/concepts/troubleshooting.md](concepts/troubleshooting.md)
149
-
150
- ## See also
151
-
152
- - [docs/quickstart.md](quickstart.md) — full first-time setup (greenfield)
153
- - [docs/concepts/plans-and-claims.md](concepts/plans-and-claims.md) — claim/plan model
154
- - [docs/concepts/multi-agent-workflows.md](concepts/multi-agent-workflows.md) — coordination patterns once you're settled in
155
- - [docs/concepts/troubleshooting.md](concepts/troubleshooting.md) — when things go wrong
148
+ - **Recovering from a degraded state** → [docs/concepts/troubleshooting.md](concepts/troubleshooting.md)
149
+
150
+ ## See also
151
+
152
+ - [docs/quickstart.md](quickstart.md) — full first-time setup (greenfield)
153
+ - [docs/concepts/plans-and-claims.md](concepts/plans-and-claims.md) — claim/plan model
154
+ - [docs/concepts/multi-agent-workflows.md](concepts/multi-agent-workflows.md) — coordination patterns once you're settled in
155
+ - [docs/concepts/troubleshooting.md](concepts/troubleshooting.md) — when things go wrong