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,25 +1,25 @@
1
- # GitHub Copilot Integration
2
-
3
- brainclaw integrates with GitHub Copilot through MCP tools, instruction files, and lifecycle hooks. Copilot is a Tier A agent — full MCP access, hooks, skills support, and headless CLI spawn capability since CLI 1.0.35.
4
-
5
- ## Auto-setup
6
-
1
+ # GitHub Copilot Integration
2
+
3
+ brainclaw integrates with GitHub Copilot through MCP tools, instruction files, and lifecycle hooks. Copilot is a Tier A agent — full MCP access, hooks, skills support, and headless CLI spawn capability since CLI 1.0.35.
4
+
5
+ ## Auto-setup
6
+
7
7
  `brainclaw init` detects Copilot (`gh copilot` or `copilot` CLI installed) and writes:
8
8
 
9
9
  - `.github/copilot-instructions.md` — instruction file Copilot reads automatically on each prompt
10
10
  - `.vscode/settings.json` and `.vscode/mcp.json` — project-level MCP registration used by VS Code/Copilot surfaces
11
11
  - `.github/copilot/hooks.json` — session lifecycle hooks where supported
12
12
  - `.github/skills/brainclaw-context/SKILL.md` and `.agents/skills/brainclaw/SKILL.md` — Copilot and cross-agent skill discovery
13
-
14
- Manual regeneration:
15
-
16
- ```bash
17
- brainclaw export --format copilot-instructions --write
18
- brainclaw export --format copilot-instructions --write --include-live
19
- ```
20
-
21
- ## MCP configuration
22
-
13
+
14
+ Manual regeneration:
15
+
16
+ ```bash
17
+ brainclaw export --format copilot-instructions --write
18
+ brainclaw export --format copilot-instructions --write --include-live
19
+ ```
20
+
21
+ ## MCP configuration
22
+
23
23
  VS Code/Copilot reads project MCP configuration from `.vscode/settings.json` and `.vscode/mcp.json`:
24
24
 
25
25
  ```json
@@ -28,55 +28,55 @@ VS Code/Copilot reads project MCP configuration from `.vscode/settings.json` and
28
28
  "brainclaw": {
29
29
  "command": "npx",
30
30
  "args": ["-y", "brainclaw@latest", "mcp"]
31
- }
32
- }
33
- }
34
- ```
35
-
36
- For per-session overrides (typical when spawning Copilot from a dispatcher), pass `--additional-mcp-config @<path-to-config.json>` on the CLI invocation. This was validated end-to-end during pln#440.
37
-
38
- ## Instruction files
39
-
40
- - `.github/copilot-instructions.md` — Copilot reads this automatically. Keep it lightweight and behavioural.
41
- - `.github/copilot-instructions.live.md` — optional local live companion with current plans, claims, traps, candidates, and handoffs. Write it with `brainclaw export --format copilot-instructions --write --include-live`; it stays gitignored even when the main instruction file is shared/versioned.
42
- - By default, live state flows through MCP. The live companion is parity/backstop context for native-file workflows.
43
-
44
- ## Headless invocation
45
-
46
- Since Copilot CLI 1.0.35 (validated 2026-04-24), Copilot is CLI-spawnable in headless mode. The canonical invoke template is:
47
-
48
- ```bash
49
- copilot -p "{prompt}" --allow-all --no-ask-user
50
- ```
51
-
52
- - `--allow-all` (or equivalent `--yolo`) disables interactive approval prompts (combines `--allow-all-tools --allow-all-paths --allow-all-urls`).
53
- - `--no-ask-user` runs autonomously without pausing for clarifying questions.
54
- - `-p` (or `--prompt`) takes the prompt as the next positional argument. Output is silent unless `-s` is also passed.
55
-
56
- For machine-readable output (JSONL events per line):
57
-
58
- ```bash
59
- copilot -p "{prompt}" --allow-all --no-ask-user --output-format json
60
- ```
61
-
62
- ## Capability profile
63
-
64
- | Field | Value |
65
- |-------|-------|
66
- | Tier | A |
67
- | MCP | yes |
68
- | Hooks | yes |
69
- | Auto-approve | manual (per-call) |
70
- | Skills | yes |
71
- | CLI spawnable | yes (1.0.35+) |
72
- | Max concurrent tasks | 1 |
73
- | Workflow model | interactive |
74
- | MCP config scope | project (project-level config + machine-level fallback) |
75
- | Prompt delivery | `inline_arg` (preferred), `inbox_structured` (fallback) |
76
-
77
- ## Caveats
78
-
79
- - **CLI version**: headless spawn requires Copilot CLI 1.0.35 or later. Earlier versions failed silently when invoked headless and were treated as inbox-only by brainclaw.
80
- - **Quota awareness**: Copilot enforces a per-window credit budget visible in session metadata. The dispatcher uses `max_concurrent_tasks=1` to avoid exhausting it on parallel work.
81
- - **Update cadence**: keep `copilot` updated (`copilot update`) — flags and behaviour have moved between releases (`--yolo` was added, `--additional-mcp-config` flag was renamed once).
82
- - **Windows path resolution**: on Windows, `where copilot` may resolve to multiple paths (`.exe`, `.cmd`, npm shim). The brainclaw dispatcher resolves via `where` and prefers the `.exe` form when present.
31
+ }
32
+ }
33
+ }
34
+ ```
35
+
36
+ For per-session overrides (typical when spawning Copilot from a dispatcher), pass `--additional-mcp-config @<path-to-config.json>` on the CLI invocation. This was validated end-to-end during pln#440.
37
+
38
+ ## Instruction files
39
+
40
+ - `.github/copilot-instructions.md` — Copilot reads this automatically. Keep it lightweight and behavioural.
41
+ - `.github/copilot-instructions.live.md` — optional local live companion with current plans, claims, traps, candidates, and handoffs. Write it with `brainclaw export --format copilot-instructions --write --include-live`; it stays gitignored even when the main instruction file is shared/versioned.
42
+ - By default, live state flows through MCP. The live companion is parity/backstop context for native-file workflows.
43
+
44
+ ## Headless invocation
45
+
46
+ Since Copilot CLI 1.0.35 (validated 2026-04-24), Copilot is CLI-spawnable in headless mode. The canonical invoke template is:
47
+
48
+ ```bash
49
+ copilot -p "{prompt}" --allow-all --no-ask-user
50
+ ```
51
+
52
+ - `--allow-all` (or equivalent `--yolo`) disables interactive approval prompts (combines `--allow-all-tools --allow-all-paths --allow-all-urls`).
53
+ - `--no-ask-user` runs autonomously without pausing for clarifying questions.
54
+ - `-p` (or `--prompt`) takes the prompt as the next positional argument. Output is silent unless `-s` is also passed.
55
+
56
+ For machine-readable output (JSONL events per line):
57
+
58
+ ```bash
59
+ copilot -p "{prompt}" --allow-all --no-ask-user --output-format json
60
+ ```
61
+
62
+ ## Capability profile
63
+
64
+ | Field | Value |
65
+ |-------|-------|
66
+ | Tier | A |
67
+ | MCP | yes |
68
+ | Hooks | yes |
69
+ | Auto-approve | manual (per-call) |
70
+ | Skills | yes |
71
+ | CLI spawnable | yes (1.0.35+) |
72
+ | Max concurrent tasks | 1 |
73
+ | Workflow model | interactive |
74
+ | MCP config scope | project (project-level config + machine-level fallback) |
75
+ | Prompt delivery | `inline_arg` (preferred), `inbox_structured` (fallback) |
76
+
77
+ ## Caveats
78
+
79
+ - **CLI version**: headless spawn requires Copilot CLI 1.0.35 or later. Earlier versions failed silently when invoked headless and were treated as inbox-only by brainclaw.
80
+ - **Quota awareness**: Copilot enforces a per-window credit budget visible in session metadata. The dispatcher uses `max_concurrent_tasks=1` to avoid exhausting it on parallel work.
81
+ - **Update cadence**: keep `copilot` updated (`copilot update`) — flags and behaviour have moved between releases (`--yolo` was added, `--additional-mcp-config` flag was renamed once).
82
+ - **Windows path resolution**: on Windows, `where copilot` may resolve to multiple paths (`.exe`, `.cmd`, npm shim). The brainclaw dispatcher resolves via `where` and prefers the `.exe` form when present.
@@ -1,23 +1,23 @@
1
- # Cursor Integration
2
-
3
- brainclaw works well next to Cursor because Cursor can already operate with project rules and can benefit from explicit workspace context.
4
-
5
- ## Auto-setup
6
-
7
- `brainclaw init` detects Cursor (`CURSOR_TRACE_ID`) and writes `.cursor/rules/brainclaw.md` automatically. Or manually:
8
-
9
- ```bash
10
- brainclaw export --format cursor-rules --write
11
- ```
12
-
13
- ## Recommended approach
14
-
15
- - use MCP as the default dynamic path for context, board state, plans, and claims
16
- - let the generated `.cursor/rules/brainclaw.md` tell Cursor when to consult Brainclaw and how to stay inside the workflow
17
- - use `.brainclaw/project.md` only as readable fallback (derived view, may be stale — run `brainclaw rebuild` to refresh)
18
- - rely on claims and plans when multiple agents or humans are active in the same repo
19
-
20
- ## Key point
21
-
22
- Cursor rules describe behavior.
23
- brainclaw provides the living shared state those rules should point to through MCP.
1
+ # Cursor Integration
2
+
3
+ brainclaw works well next to Cursor because Cursor can already operate with project rules and can benefit from explicit workspace context.
4
+
5
+ ## Auto-setup
6
+
7
+ `brainclaw init` detects Cursor (`CURSOR_TRACE_ID`) and writes `.cursor/rules/brainclaw.md` automatically. Or manually:
8
+
9
+ ```bash
10
+ brainclaw export --format cursor-rules --write
11
+ ```
12
+
13
+ ## Recommended approach
14
+
15
+ - use MCP as the default dynamic path for context, board state, plans, and claims
16
+ - let the generated `.cursor/rules/brainclaw.md` tell Cursor when to consult Brainclaw and how to stay inside the workflow
17
+ - use `.brainclaw/project.md` only as readable fallback (derived view, may be stale — run `brainclaw rebuild` to refresh)
18
+ - rely on claims and plans when multiple agents or humans are active in the same repo
19
+
20
+ ## Key point
21
+
22
+ Cursor rules describe behavior.
23
+ brainclaw provides the living shared state those rules should point to through MCP.
@@ -1,72 +1,72 @@
1
- # Kilo Code Integration
2
-
3
- brainclaw integrates with Kilo Code through MCP tools and instruction files, providing shared memory, plans, and coordination. Kilo Code is a fork of the Cline/Roo family with its own config paths.
4
-
5
- ## Auto-setup
6
-
7
- `brainclaw init` detects Kilo Code and writes `.kilo/rules/brainclaw.md` automatically (per the writer in `src/core/agent-files.ts`). The MCP config at `.kilo/mcp.json` is also generated when applicable.
8
-
9
- ## MCP configuration
10
-
11
- Kilo Code reads MCP servers from `~/.config/kilo/kilo.jsonc` (global) or `kilo.jsonc` (project-scoped):
12
-
13
- ```jsonc
14
- {
15
- "mcpServers": {
16
- "brainclaw": {
17
- "command": "npx",
18
- "args": ["-y", "brainclaw@latest", "mcp"]
19
- }
20
- }
21
- }
22
- ```
23
-
24
- Note: Kilo uses JSONC (JSON with comments), not plain JSON.
25
-
26
- ## Permissions
27
-
28
- Kilo Code supports per-tool permission control and per-server `alwaysAllow`:
29
-
30
- ```jsonc
31
- {
32
- "mcpServers": {
33
- "brainclaw": {
34
- "command": "npx",
35
- "args": ["-y", "brainclaw@latest", "mcp"],
36
- "alwaysAllow": ["bclaw_context", "bclaw_work", "bclaw_find", "bclaw_get"]
37
- }
38
- }
39
- }
40
- ```
41
-
42
- Individual tools can also use `permission: { tool: "allow" | "ask" | "deny" }` syntax.
43
-
44
- ## Instruction files
45
-
46
- - `AGENTS.md` — standard instruction file (shared with Codex, OpenCode)
47
- - `.kilo/rules/brainclaw.md` — Kilo-specific brainclaw rules (auto-written)
48
-
49
- ## SKILL.md discovery
50
-
51
- Kilo Code auto-discovers skills from `.kilocode/skills/`, `.claude/skills/`, and `.agents/skills/`. A single `.agents/skills/brainclaw/SKILL.md` is picked up automatically.
52
-
53
- ## Headless invocation
54
-
55
- ```bash
56
- kilo --auto --json /path/to/project
57
- ```
58
-
59
- The `--auto` flag enables YOLO mode (no approval prompts). `--json` provides structured output.
60
-
61
- ## Invoke template
62
-
63
- ```bash
64
- kilo /path/to/project
65
- ```
66
-
67
- ## Caveats
68
-
69
- - **Cline/Roo family fork**: Config patterns are similar to Cline and Roo but paths differ (`.kilo/` vs `.cline/` vs `.roo/`).
70
- - **JSONC format**: Config files use JSONC (comments allowed), not plain JSON. Parsers must handle this.
71
- - **No hooks**: Hook support is tracked in issue #5827 but not yet public.
72
- - **Windows/Linux**: Works via VS Code extension on all platforms.
1
+ # Kilo Code Integration
2
+
3
+ brainclaw integrates with Kilo Code through MCP tools and instruction files, providing shared memory, plans, and coordination. Kilo Code is a fork of the Cline/Roo family with its own config paths.
4
+
5
+ ## Auto-setup
6
+
7
+ `brainclaw init` detects Kilo Code and writes `.kilo/rules/brainclaw.md` automatically (per the writer in `src/core/agent-files.ts`). The MCP config at `.kilo/mcp.json` is also generated when applicable.
8
+
9
+ ## MCP configuration
10
+
11
+ Kilo Code reads MCP servers from `~/.config/kilo/kilo.jsonc` (global) or `kilo.jsonc` (project-scoped):
12
+
13
+ ```jsonc
14
+ {
15
+ "mcpServers": {
16
+ "brainclaw": {
17
+ "command": "npx",
18
+ "args": ["-y", "brainclaw@latest", "mcp"]
19
+ }
20
+ }
21
+ }
22
+ ```
23
+
24
+ Note: Kilo uses JSONC (JSON with comments), not plain JSON.
25
+
26
+ ## Permissions
27
+
28
+ Kilo Code supports per-tool permission control and per-server `alwaysAllow`:
29
+
30
+ ```jsonc
31
+ {
32
+ "mcpServers": {
33
+ "brainclaw": {
34
+ "command": "npx",
35
+ "args": ["-y", "brainclaw@latest", "mcp"],
36
+ "alwaysAllow": ["bclaw_context", "bclaw_work", "bclaw_find", "bclaw_get"]
37
+ }
38
+ }
39
+ }
40
+ ```
41
+
42
+ Individual tools can also use `permission: { tool: "allow" | "ask" | "deny" }` syntax.
43
+
44
+ ## Instruction files
45
+
46
+ - `AGENTS.md` — standard instruction file (shared with Codex, OpenCode)
47
+ - `.kilo/rules/brainclaw.md` — Kilo-specific brainclaw rules (auto-written)
48
+
49
+ ## SKILL.md discovery
50
+
51
+ Kilo Code auto-discovers skills from `.kilocode/skills/`, `.claude/skills/`, and `.agents/skills/`. A single `.agents/skills/brainclaw/SKILL.md` is picked up automatically.
52
+
53
+ ## Headless invocation
54
+
55
+ ```bash
56
+ kilo --auto --json /path/to/project
57
+ ```
58
+
59
+ The `--auto` flag enables YOLO mode (no approval prompts). `--json` provides structured output.
60
+
61
+ ## Invoke template
62
+
63
+ ```bash
64
+ kilo /path/to/project
65
+ ```
66
+
67
+ ## Caveats
68
+
69
+ - **Cline/Roo family fork**: Config patterns are similar to Cline and Roo but paths differ (`.kilo/` vs `.cline/` vs `.roo/`).
70
+ - **JSONC format**: Config files use JSONC (comments allowed), not plain JSON. Parsers must handle this.
71
+ - **No hooks**: Hook support is tracked in issue #5827 but not yet public.
72
+ - **Windows/Linux**: Works via VS Code extension on all platforms.