brainclaw 0.19.6 → 0.19.10

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 (51) hide show
  1. package/README.md +225 -126
  2. package/dist/cli.js +8 -3
  3. package/dist/commands/accept.js +102 -104
  4. package/dist/commands/add-step.js +3 -5
  5. package/dist/commands/bootstrap.js +72 -3
  6. package/dist/commands/capability.js +3 -5
  7. package/dist/commands/claim.js +14 -12
  8. package/dist/commands/complete-step.js +3 -5
  9. package/dist/commands/constraint.js +3 -5
  10. package/dist/commands/decision.js +3 -6
  11. package/dist/commands/delete-plan.js +3 -5
  12. package/dist/commands/handoff.js +3 -5
  13. package/dist/commands/init.js +20 -0
  14. package/dist/commands/instruction.js +16 -9
  15. package/dist/commands/mcp.js +18 -22
  16. package/dist/commands/memory.js +4 -7
  17. package/dist/commands/plan.js +3 -5
  18. package/dist/commands/prune.js +27 -25
  19. package/dist/commands/reflect.js +3 -5
  20. package/dist/commands/release-claim.js +23 -20
  21. package/dist/commands/release-claims.js +22 -21
  22. package/dist/commands/rollback.js +2 -2
  23. package/dist/commands/tool.js +3 -5
  24. package/dist/commands/trap.js +3 -5
  25. package/dist/commands/update-handoff.js +3 -5
  26. package/dist/commands/update-plan.js +3 -5
  27. package/dist/commands/upgrade.js +2 -2
  28. package/dist/core/audit.js +25 -25
  29. package/dist/core/bootstrap.js +587 -4
  30. package/dist/core/candidates.js +10 -6
  31. package/dist/core/claims.js +10 -8
  32. package/dist/core/coordination.js +2 -2
  33. package/dist/core/instructions.js +4 -2
  34. package/dist/core/io.js +8 -0
  35. package/dist/core/lock.js +18 -2
  36. package/dist/core/migration.js +6 -2
  37. package/dist/core/runtime.js +18 -14
  38. package/dist/core/schema.js +69 -0
  39. package/dist/core/state.js +21 -4
  40. package/docs/cli.md +21 -1
  41. package/docs/integrations/agents.md +42 -29
  42. package/docs/integrations/claude-code.md +4 -4
  43. package/docs/integrations/codex.md +5 -5
  44. package/docs/integrations/copilot.md +3 -2
  45. package/docs/integrations/cursor.md +4 -4
  46. package/docs/integrations/mcp.md +53 -24
  47. package/docs/integrations/overview.md +53 -40
  48. package/docs/mcp-schema-changelog.md +3 -0
  49. package/docs/product/positioning.md +17 -18
  50. package/docs/quickstart.md +87 -55
  51. package/package.json +1 -2
@@ -1,24 +1,40 @@
1
1
  # MCP Integration
2
2
 
3
- brainclaw can expose collaboration and context views through MCP-readable tools.
3
+ MCP is the primary Brainclaw integration path for capable coding agents.
4
4
 
5
- ## Why MCP matters
5
+ Use it whenever the agent can retrieve or mutate shared state directly instead of relying only on static files.
6
6
 
7
- MCP is especially useful when the agent should retrieve fresh workspace state directly instead of relying only on static files.
7
+ ## Why MCP Is The Nominal Path
8
8
 
9
- That is valuable for:
9
+ MCP matters because Brainclaw's value is mostly in dynamic state:
10
10
 
11
- - ranked context retrieval
12
- - collaboration board views
13
- - write flows such as runtime notes
14
- - scoped activity retrieval
11
+ - fresh context for the exact path being edited
12
+ - current board state
13
+ - active plans and claims
14
+ - runtime observations
15
+ - handoffs and review queues
15
16
 
16
- ## Available tools
17
+ Static files still help, but they age immediately. MCP is the stronger path for live coordination.
18
+
19
+ ## Recommended Agent Pattern
20
+
21
+ The default dynamic workflow is:
22
+
23
+ 1. `bclaw_session_start` to open work and get the current board/context
24
+ 2. `bclaw_get_context` when the target path or task changes
25
+ 3. `bclaw_list_plans` and `bclaw_list_claims` to inspect active work
26
+ 4. `bclaw_claim` before editing
27
+ 5. `bclaw_write_note` for runtime observations
28
+ 6. `bclaw_session_end` to close cleanly and hand work off
29
+
30
+ This keeps session continuity inside Brainclaw instead of pushing the agent back to manual CLI usage.
31
+
32
+ ## Available Tools
17
33
 
18
34
  | Tool | Purpose |
19
35
  |---|---|
20
36
  | `bclaw_get_context` | Ranked prompt-ready context, supports `digest: true` |
21
- | `bclaw_bootstrap` | Derive brownfield bootstrap signals when memory is still sparse |
37
+ | `bclaw_bootstrap` | Derive brownfield bootstrap signals, adaptive interview prompts, and an import proposal when memory is still sparse |
22
38
  | `bclaw_get_execution_context` | Inspect local execution context and agent tooling |
23
39
  | `bclaw_write_note` | Record a runtime note, supports `autoReflect: true` |
24
40
  | `bclaw_read_handoff` | Read active handoffs |
@@ -30,22 +46,35 @@ That is valuable for:
30
46
  | `bclaw_list_candidates` | Pending or archived review queue listing |
31
47
  | `bclaw_search` | Full-text search across memory |
32
48
 
33
- ## Recommended use
49
+ ## When To Use MCP Versus Other Surfaces
34
50
 
35
- Use MCP as the dynamic access path for:
51
+ | Need | Best surface |
52
+ |---|---|
53
+ | Fresh path-scoped context | MCP |
54
+ | Current plans, claims, board state | MCP |
55
+ | Runtime writes with session continuity | MCP |
56
+ | Local behavioral reminders inside the agent UI | native agent files |
57
+ | Human inspection or scripting | CLI |
58
+ | Simple readable fallback | `.brainclaw/project.md` |
36
59
 
37
- - fresh context
38
- - runtime coordination views
39
- - structured list views for plans, claims, agents, instructions, and review queues
40
- - shared board state
41
- - write operations that should preserve session continuity
60
+ ## Starting The Server
42
61
 
43
- Readable files still matter, but MCP gives a stronger path for dynamic state.
62
+ ```bash
63
+ brainclaw mcp
64
+ ```
44
65
 
45
- ## Practical layering
66
+ In practice, most agents pick this up through generated MCP config such as `.mcp.json`, `~/.cursor/mcp.json`, or other agent-specific config files written by `brainclaw setup`, `brainclaw init`, or `brainclaw export`.
46
67
 
47
- | Surface | When to use |
48
- |---|---|
49
- | Files (`.brainclaw/project.md`) | Simple readable fallback, always available |
50
- | CLI | Explicit operational entry point, scripting |
51
- | MCP | Best dynamic integration path for capable agents |
68
+ ## Important Rule
69
+
70
+ If the agent has MCP available, do not treat the CLI as the primary runtime interface.
71
+
72
+ The CLI remains valuable for:
73
+
74
+ - setup
75
+ - bootstrap by a human operator
76
+ - scripting
77
+ - release and packaging
78
+ - debugging and fallback access
79
+
80
+ But for capable agents, MCP should be the first-class path for dynamic state.
@@ -1,61 +1,74 @@
1
1
  # Integration Overview
2
2
 
3
- brainclaw is designed to work with existing coding agents, not replace them.
4
-
5
- ## Current limitation
6
-
7
- For now, Brainclaw should be used for sequential multi-agent collaboration, not true parallel editing in the same checkout.
8
-
9
- One agent can hand work to another, and the next agent can recover good project context through shared memory, plans, claims, and handoffs. But without dedicated Git worktrees per agent/session, running several coding agents concurrently on the same project checkout is still risky and can create conflicts or unstable local state.
10
-
11
- ## Integration surfaces
12
-
13
- brainclaw can integrate through several surfaces:
14
-
15
- - **Readable files** `.brainclaw/project.md`, `AGENTS.md`, `GEMINI.md`, `.github/copilot-instructions.md`
16
- - **Native agent files** — `CLAUDE.md`, `AGENTS.md`, `GEMINI.md`, `.cursor/rules/brainclaw.md`, `.windsurfrules`, etc. (via `brainclaw export`)
17
- - **CLI commands** — direct operational entry point
18
- - **MCP tools** — dynamic access path for capable agents
19
- - **System or project instructions** static guidance for how to use brainclaw
20
-
21
- ## Recommended pattern
3
+ Brainclaw is designed to work with existing coding agents, not replace them.
4
+
5
+ The key integration rule is simple:
6
+
7
+ 1. use MCP for dynamic shared state when the agent supports it
8
+ 2. use native agent files for local behavioral guidance
9
+ 3. use the CLI for setup, operator workflows, scripting, and fallback access
10
+
11
+ ## Current Limitation
12
+
13
+ For now, Brainclaw should be used for sequential multi-agent collaboration, not true parallel editing in the same checkout.
14
+
15
+ One agent can hand work to another, and the next agent can recover good project context through shared memory, plans, claims, and handoffs. But without dedicated Git worktrees per agent/session, running several coding agents concurrently on the same project checkout is still risky and can create conflicts or unstable local state.
16
+
17
+ ## Integration Surfaces
18
+
19
+ brainclaw can integrate through several surfaces, but they do not have the same role.
20
+
21
+ | Surface | Role |
22
+ |---|---|
23
+ | **MCP tools** | primary dynamic access path for context, plans, claims, board views, and runtime writes |
24
+ | **Native agent files** | local guidance in the agent's own surface: `CLAUDE.md`, `AGENTS.md`, `GEMINI.md`, `.cursor/rules/brainclaw.md`, `.windsurfrules`, etc. |
25
+ | **Readable files** | fallback readable state such as `.brainclaw/project.md` |
26
+ | **CLI commands** | setup, scripting, release, inspection, and fallback workflows |
27
+ | **System/project instructions** | static reminders about how Brainclaw should be used in this workspace |
28
+
29
+ ## Recommended Pattern
22
30
 
23
31
  A good default pattern is:
24
32
 
25
- 1. use lightweight system instructions to tell the agent how to use brainclaw
26
- 2. retrieve fresh workspace context before significant edits
27
- 3. use shared plans and claims during execution
28
- 4. use handoffs and runtime notes when switching work or surfacing issues
33
+ 1. give the agent lightweight static instructions about how to use Brainclaw
34
+ 2. let it retrieve fresh workspace state through MCP before significant edits
35
+ 3. rely on plans, claims, and handoffs during execution
36
+ 4. keep native files and readable project state available as fallback context
37
+ 5. use hooks or repeated reminders where the host surface supports them
38
+
39
+ ## Native Files Are Support, Not The Live Source Of Truth
29
40
 
30
- ## Important principle
41
+ Generated files such as `CLAUDE.md` or `.cursor/rules/brainclaw.md` are useful because they keep Brainclaw visible inside the agent surface already in use.
31
42
 
32
- Do not rely on a single point of contact.
43
+ They are not meant to replace:
33
44
 
34
- Agents are not perfectly reliable at following instructions every time.
35
- The strongest integrations combine:
45
+ - fresh context retrieval
46
+ - live board state
47
+ - current claims
48
+ - recent runtime notes
49
+ - current handoffs
36
50
 
37
- - instructions (static)
38
- - readable workspace state (file)
39
- - MCP or CLI access (dynamic)
40
- - repeated reminders in the workflow
41
- - optional hooks where supported
51
+ For those, use MCP when available.
42
52
 
43
- ## Getting the native file written automatically
53
+ ## Getting The Native File Written Automatically
54
+
55
+ Run `brainclaw init` and Brainclaw will detect the current agent surface and write the appropriate local file automatically.
44
56
 
45
- Run `brainclaw init` — it detects the running agent and writes to its native file automatically.
46
57
  That includes OpenCode (`AGENTS.md` + `opencode.json`) and Antigravity/Gemini CLI (`GEMINI.md` + machine-local MCP config) when those environments are present.
47
58
 
48
59
  Or at any time:
49
60
 
50
61
  ```bash
51
- brainclaw export --detect
62
+ brainclaw export --detect --write
52
63
  ```
53
64
 
54
- ## Related pages
65
+ By default, generated workspace files are treated as local setup and added to `.gitignore`. `--shared` should only be used when you intentionally want the main exported instruction file to be versioned.
55
66
 
56
- - [agents.md](agents.md)
57
- - [mcp.md](mcp.md)
58
- - [copilot.md](copilot.md)
59
- - [cursor.md](cursor.md)
67
+ ## Choose Your Next Page
68
+
69
+ - [mcp.md](mcp.md) — the nominal path for capable agents
70
+ - [agents.md](agents.md) — integration principles that apply to every agent
60
71
  - [claude-code.md](claude-code.md)
61
72
  - [codex.md](codex.md)
73
+ - [cursor.md](cursor.md)
74
+ - [copilot.md](copilot.md)
@@ -24,6 +24,9 @@ This document tracks all breaking and notable changes to the brainclaw MCP serve
24
24
  - Constraints can now have a category: architecture, performance, security, reliability, compatibility, process, other
25
25
  - Decisions can now have an outcome: approved, rejected, deferred, pending
26
26
  - Doctor check `metadata_consistency` — validates capability and tool completeness
27
+ - `bclaw_bootstrap` now returns adaptive interview prompts alongside the import proposal when bootstrap confidence is incomplete
28
+ - `structuredContent.import_plan.interview` exposes `summary`, `question_count`, and audience-tagged questions
29
+ - Questions can be targeted to `cli`, `ide_chat`, or `any`
27
30
 
28
31
  **Changed**
29
32
  - MCP schema version bumped to 0.6.0 to reflect new metadata discovery capabilities
@@ -65,32 +65,31 @@ Local-first gives teams:
65
65
  - Git history for shared project state
66
66
  - compatibility with enterprise or offline environments
67
67
 
68
- ## Licensing
68
+ ## License direction
69
69
 
70
- brainclaw is published under the **Business Source License 1.1 (BSL 1.1)**.
70
+ Today, brainclaw is published under the **Business Source License 1.1 (BSL 1.1)**.
71
71
 
72
- ### What this means in practice
72
+ The direction after the closed beta is simpler:
73
73
 
74
- | Use case | Status |
75
- |----------|--------|
76
- | Personal use, open-source projects | Free |
77
- | Internal team or company use | Free |
78
- | Embedding brainclaw in a product or service you sell | Requires a commercial license |
79
- | Competitive products that replicate brainclaw's core value | Requires a commercial license |
74
+ - the local-first brainclaw core is intended to move to MIT
75
+ - remote shared-memory, hosted collaboration, advanced dashboards, and related private add-ons will stay separate commercial products
80
76
 
81
- ### Why BSL instead of MIT
77
+ The intended MIT core covers the local coordination layer:
82
78
 
83
- MIT gives users complete freedom, including the freedom to take the source, wrap it, and resell it as a competing product without contributing back. For a small independent project, that means large vendors can capture the market before the original author can sustain the work.
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
84
 
85
- BSL 1.1 preserves all the practical freedoms of open source (inspect, use, modify, contribute) while protecting the economic viability of the project. It is used by projects like MariaDB, HashiCorp Vault, and Sentry.
85
+ The commercial side is meant to cover capabilities that go beyond the local-first core:
86
86
 
87
- ### Conversion to MIT
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
88
91
 
89
- The BSL includes an automatic conversion clause: the license converts to **MIT** after 4 years from each release date. Every version of brainclaw will eventually become fully open source.
90
-
91
- ### Commercial licensing
92
-
93
- If your use case requires a commercial license, contact the project author. The intent is not to restrict legitimate internal use — it is to prevent competitive product embedding without a fair contribution back to the project.
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.
94
93
 
95
94
  ## Positioning summary
96
95
 
@@ -1,99 +1,131 @@
1
1
  # Quickstart
2
2
 
3
- This guide walks through the shortest path to getting value from brainclaw.
4
-
5
- ## Important limitation for now
6
-
7
- Do not run multiple coding agents in parallel on the same project checkout yet.
8
-
9
- brainclaw is already useful for sequential collaboration: one agent can pick up where another stopped, inspect shared context, and continue from explicit plans, claims, traps, and handoffs. But until Brainclaw supports dedicated Git worktrees per agent/session, parallel edits in the same checkout are still likely to create more Git and workspace problems than they solve.
10
-
11
- For now, prefer:
12
-
13
- 1. one active editing agent per checkout
14
- 2. explicit handoffs between agents
15
- 3. claims and context to keep continuity between sessions
16
-
17
- ## 1. Bootstrap and initialize the workspace
3
+ This guide is organized by entry path, because Brainclaw serves different surfaces with different roles.
4
+
5
+ Use this rule first:
6
+
7
+ - capable agent with MCP support: prefer MCP for dynamic state
8
+ - agent surface driven mainly by local instruction files: use generated native files plus CLI fallback
9
+ - human operator or maintainer: use the CLI directly
10
+
11
+ ## Important limitation for now
12
+
13
+ Do not run multiple coding agents in parallel on the same project checkout yet.
14
+
15
+ Brainclaw is already useful for sequential collaboration: one agent can pick up where another stopped, inspect shared context, and continue from explicit plans, claims, traps, and handoffs. But until Brainclaw supports dedicated Git worktrees per agent/session, parallel edits in the same checkout are still likely to create more Git and workspace problems than they solve.
16
+
17
+ For now, prefer:
18
+
19
+ 1. one active editing agent per checkout
20
+ 2. explicit handoffs between agents
21
+ 3. claims and context to keep continuity between sessions
22
+
23
+ ## Path 1: Agent-First With MCP
24
+
25
+ Use this path when the agent can call Brainclaw through MCP.
26
+
27
+ ### Operator bootstrap
18
28
 
19
29
  ```bash
20
30
  brainclaw setup --yes
21
31
  brainclaw init
22
32
  ```
23
33
 
24
- `setup` installs the machine-level prerequisites and agent integrations. `init` then creates the workspace state, seeds stable identity, and prepares the project memory structure.
25
- If an AI coding agent is detected in the environment, brainclaw also writes to its native instruction file automatically.
34
+ `setup` installs machine-level prerequisites and agent integrations. `init` creates the workspace state, seeds stable identity, and prepares the project memory structure.
26
35
 
27
- ## 2. Capture the first important facts
36
+ ### Agent runtime pattern
28
37
 
29
- ```bash
30
- brainclaw memory create decision "OAuth migration now goes through auth-gateway" --tag auth
31
- brainclaw memory create constraint "Payments module frozen until 2026-04-01" --tag payments
32
- brainclaw memory create trap "Checkout E2E tests are flaky on Windows" --severity high --tag tests
38
+ After the workspace is initialized, the nominal flow is:
39
+
40
+ ```text
41
+ bclaw_session_start -> open a session and return current board/context
42
+ bclaw_get_context -> fetch fresh prompt-ready context for the target path
43
+ bclaw_list_plans -> inspect active work
44
+ bclaw_claim -> claim scope before editing
45
+ bclaw_write_note -> record runtime observations
46
+ bclaw_session_end -> close session cleanly and hand work off
33
47
  ```
34
48
 
35
- These become part of the shared project memory.
49
+ Use native agent files such as `AGENTS.md`, `CLAUDE.md`, or Cursor rules as local workflow guidance, not as the only source of live state.
50
+
51
+ ## Path 2: CLI-Oriented Agent Or Fallback Workflow
36
52
 
37
- ## 3. Create a shared plan
53
+ Use this path when the agent does not have a good MCP integration yet, or when a human needs to drive the workflow directly.
54
+
55
+ ### Bootstrap and inspect
38
56
 
39
57
  ```bash
40
- brainclaw plan create "Coordinate auth rollout" --priority high
41
- brainclaw plan list
58
+ brainclaw setup --yes
59
+ brainclaw init
60
+ brainclaw export --detect --write
42
61
  ```
43
62
 
44
- ## 4. Claim work before editing
63
+ ### Record the first important facts
45
64
 
46
65
  ```bash
47
- brainclaw claim create "Taking auth rollout" --agent copilot --scope src/auth/ --plan pln_001
48
- brainclaw claim list --plan pln_001
66
+ brainclaw memory create decision "OAuth migration now goes through auth-gateway" --tag auth
67
+ brainclaw memory create constraint "Payments module frozen until 2026-04-01" --tag payments
68
+ brainclaw memory create trap "Checkout E2E tests are flaky on Windows" --severity high --tag tests
49
69
  ```
50
70
 
51
- Claims reduce collisions, but they are not a substitute for isolated worktrees yet.
52
- Use them mainly to coordinate sequential work or human/agent awareness in the same repo.
53
-
54
- ## 5. Create an explicit handoff
71
+ ### Create and claim work
55
72
 
56
73
  ```bash
57
- brainclaw memory create handoff "Review auth patch" --from copilot --to claude --plan pln_001
74
+ brainclaw plan create "Coordinate auth rollout" --priority high
75
+ brainclaw claim create "Take auth rollout" --scope src/auth/
58
76
  ```
59
77
 
60
- ## 6. Generate context for an agent
78
+ ### Refresh context before edits
61
79
 
62
80
  ```bash
63
81
  brainclaw context --for src/auth/routes.ts --digest
64
- brainclaw context --json --max-chars 1200
82
+ brainclaw status
65
83
  ```
66
84
 
67
- Use this to prepare compact context before edits or reviews.
85
+ Claims reduce collisions, but they are not a substitute for isolated worktrees yet. Use them mainly to coordinate sequential work or human/agent awareness in the same repo.
86
+
87
+ ## Path 3: Brownfield Onboarding
68
88
 
69
- ## 7. Export to your agent's native instruction file
89
+ Use this path when you are adopting Brainclaw into an existing workspace and do not want to hand-author all memory from scratch.
90
+
91
+ ### Build the initial bootstrap view
70
92
 
71
93
  ```bash
72
- brainclaw export --detect # auto-detects running agent, writes to its file
73
- brainclaw export --format claude-md --write # writes CLAUDE.md and gitignores it by default
74
- brainclaw export --format cursor-rules --write # writes .cursor/rules/brainclaw.md and gitignores it by default
75
- brainclaw export --format claude-md --write --shared # only if you intentionally want to commit it
94
+ brainclaw setup --yes
95
+ brainclaw init
96
+ brainclaw bootstrap --json
76
97
  ```
77
98
 
78
- ## 8. Inspect the current board
99
+ ### Fill the gaps
79
100
 
80
101
  ```bash
81
- brainclaw status
82
- brainclaw agent-board --agent copilot
102
+ brainclaw bootstrap --interview --audience cli
103
+ brainclaw bootstrap --interview --audience ide_chat
83
104
  ```
84
105
 
85
- ## Recommended first workflow
106
+ ### Apply or rollback managed imports
86
107
 
87
- 1. initialize the workspace
88
- 2. record 3–5 important decisions or traps
89
- 3. create one shared plan
90
- 4. use claims for touched folders
91
- 5. generate context before edits
92
- 6. hand off explicitly when switching between agents
108
+ ```bash
109
+ brainclaw bootstrap --apply
110
+ brainclaw bootstrap --uninstall
111
+ ```
93
112
 
94
- ## Next reads
113
+ Use this path when the repo already has native instruction files, partial docs, or conventions that Brainclaw should adopt selectively instead of replacing blindly.
95
114
 
96
- - [cli.md](cli.md) full command reference
115
+ ## Recommended First Workflow
116
+
117
+ 1. initialize the workspace
118
+ 2. choose the correct entry path for your surface
119
+ 3. record or import 3-5 high-signal facts
120
+ 4. create one shared plan
121
+ 5. claim scope before editing
122
+ 6. refresh context before significant edits
123
+ 7. hand off explicitly when switching between agents
124
+
125
+ ## Next Reads
126
+
127
+ - [integrations/overview.md](integrations/overview.md) — integration model by surface
128
+ - [integrations/mcp.md](integrations/mcp.md) — nominal dynamic path for capable agents
129
+ - [cli.md](cli.md) — operator and fallback reference
97
130
  - [concepts/memory.md](concepts/memory.md)
98
131
  - [concepts/plans-and-claims.md](concepts/plans-and-claims.md)
99
- - [integrations/overview.md](integrations/overview.md)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "brainclaw",
3
- "version": "0.19.6",
3
+ "version": "0.19.10",
4
4
  "description": "Shared project memory for humans and coding agents.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -10,7 +10,6 @@
10
10
  "files": [
11
11
  "dist/**/*.js",
12
12
  "docs/**/*.md",
13
- "!docs/plan.md",
14
13
  "README.md",
15
14
  "LICENSE"
16
15
  ],