byterover-cli 1.8.0 → 2.0.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 (1255) hide show
  1. package/README.md +64 -564
  2. package/bin/kill-daemon.js +78 -0
  3. package/bin/run.js +2 -2
  4. package/dist/agent/core/domain/blob/types.d.ts +8 -2
  5. package/dist/agent/core/domain/llm/index.d.ts +1 -1
  6. package/dist/agent/core/domain/llm/index.js +1 -1
  7. package/dist/agent/core/domain/llm/registry.js +353 -14
  8. package/dist/agent/core/domain/llm/schemas.d.ts +13 -13
  9. package/dist/agent/core/domain/llm/schemas.js +3 -3
  10. package/dist/agent/core/domain/llm/types.d.ts +15 -5
  11. package/dist/agent/core/domain/llm/types.js +8 -2
  12. package/dist/agent/core/domain/sandbox/types.d.ts +6 -0
  13. package/dist/agent/core/domain/session/session-metadata.d.ts +7 -2
  14. package/dist/agent/core/domain/session/session-metadata.js +14 -4
  15. package/dist/agent/core/domain/streaming/types.d.ts +2 -0
  16. package/dist/agent/core/domain/tools/types.d.ts +2 -0
  17. package/dist/agent/core/interfaces/i-chat-session.d.ts +1 -1
  18. package/dist/agent/core/interfaces/i-cipher-agent.d.ts +62 -0
  19. package/dist/agent/core/interfaces/i-curate-service.d.ts +23 -8
  20. package/dist/agent/core/interfaces/i-history-storage.d.ts +8 -0
  21. package/dist/agent/core/interfaces/i-key-storage.d.ts +11 -0
  22. package/dist/agent/core/interfaces/i-llm-service.d.ts +1 -1
  23. package/dist/agent/core/interfaces/i-sandbox-service.d.ts +26 -0
  24. package/dist/agent/core/interfaces/i-session-persistence.d.ts +3 -36
  25. package/dist/agent/core/interfaces/i-session-persistence.js +1 -1
  26. package/dist/agent/infra/agent/agent-schemas.d.ts +26 -5
  27. package/dist/agent/infra/agent/agent-schemas.js +10 -3
  28. package/dist/agent/infra/agent/cipher-agent.d.ts +87 -2
  29. package/dist/agent/infra/agent/cipher-agent.js +191 -16
  30. package/dist/agent/infra/agent/interactive-loop.js +1 -5
  31. package/dist/agent/infra/agent/provider-update-config.d.ts +19 -0
  32. package/dist/agent/infra/agent/service-initializer.d.ts +27 -6
  33. package/dist/agent/infra/agent/service-initializer.js +46 -60
  34. package/dist/agent/infra/blob/blob-storage-factory.d.ts +1 -1
  35. package/dist/agent/infra/blob/blob-storage-factory.js +1 -1
  36. package/dist/agent/infra/blob/sqlite-blob-storage.js +8 -5
  37. package/dist/agent/infra/file-system/file-system-service.js +6 -3
  38. package/dist/agent/infra/http/internal-llm-http-service.d.ts +9 -5
  39. package/dist/agent/infra/http/internal-llm-http-service.js +12 -7
  40. package/dist/agent/infra/llm/{internal-llm-service.d.ts → agent-llm-service.d.ts} +52 -7
  41. package/dist/agent/infra/llm/{internal-llm-service.js → agent-llm-service.js} +302 -90
  42. package/dist/agent/infra/llm/context/compaction/compaction-service.d.ts +14 -12
  43. package/dist/agent/infra/llm/context/compaction/compaction-service.js +26 -9
  44. package/dist/agent/infra/llm/context/compression/reactive-overflow.js +12 -3
  45. package/dist/agent/infra/llm/context/context-manager.d.ts +44 -3
  46. package/dist/agent/infra/llm/context/context-manager.js +203 -98
  47. package/dist/agent/infra/llm/context/deferred-effects.d.ts +30 -0
  48. package/dist/agent/infra/llm/context/deferred-effects.js +40 -0
  49. package/dist/agent/infra/llm/formatters/gemini-formatter.d.ts +1 -1
  50. package/dist/agent/infra/llm/formatters/gemini-formatter.js +14 -10
  51. package/dist/agent/infra/llm/generators/ai-sdk-content-generator.d.ts +33 -0
  52. package/dist/agent/infra/llm/generators/ai-sdk-content-generator.js +166 -0
  53. package/dist/agent/infra/llm/generators/ai-sdk-message-converter.d.ts +20 -0
  54. package/dist/agent/infra/llm/generators/ai-sdk-message-converter.js +182 -0
  55. package/dist/agent/infra/llm/generators/index.d.ts +3 -3
  56. package/dist/agent/infra/llm/generators/index.js +3 -3
  57. package/dist/agent/infra/llm/generators/retryable-content-generator.d.ts +7 -0
  58. package/dist/agent/infra/llm/generators/retryable-content-generator.js +29 -5
  59. package/dist/agent/infra/llm/index.d.ts +1 -2
  60. package/dist/agent/infra/llm/index.js +2 -3
  61. package/dist/agent/infra/llm/model-capabilities.d.ts +1 -0
  62. package/dist/agent/infra/llm/model-capabilities.js +31 -0
  63. package/dist/agent/infra/llm/providers/anthropic.d.ts +7 -0
  64. package/dist/agent/infra/llm/providers/anthropic.js +27 -0
  65. package/dist/agent/infra/llm/providers/byterover.d.ts +9 -0
  66. package/dist/agent/infra/llm/providers/byterover.js +37 -0
  67. package/dist/agent/infra/llm/providers/cerebras.d.ts +7 -0
  68. package/dist/agent/infra/llm/providers/cerebras.js +31 -0
  69. package/dist/agent/infra/llm/providers/cohere.d.ts +7 -0
  70. package/dist/agent/infra/llm/providers/cohere.js +26 -0
  71. package/dist/agent/infra/llm/providers/deepinfra.d.ts +7 -0
  72. package/dist/agent/infra/llm/providers/deepinfra.js +26 -0
  73. package/dist/agent/infra/llm/providers/glm.d.ts +7 -0
  74. package/dist/agent/infra/llm/providers/glm.js +30 -0
  75. package/dist/agent/infra/llm/providers/google-vertex.d.ts +15 -0
  76. package/dist/agent/infra/llm/providers/google-vertex.js +36 -0
  77. package/dist/agent/infra/llm/providers/google.d.ts +7 -0
  78. package/dist/agent/infra/llm/providers/google.js +25 -0
  79. package/dist/agent/infra/llm/providers/groq.d.ts +7 -0
  80. package/dist/agent/infra/llm/providers/groq.js +26 -0
  81. package/dist/agent/infra/llm/providers/index.d.ts +24 -0
  82. package/dist/agent/infra/llm/providers/index.js +75 -0
  83. package/dist/agent/infra/llm/providers/minimax.d.ts +7 -0
  84. package/dist/agent/infra/llm/providers/minimax.js +30 -0
  85. package/dist/agent/infra/llm/providers/mistral.d.ts +7 -0
  86. package/dist/agent/infra/llm/providers/mistral.js +26 -0
  87. package/dist/agent/infra/llm/providers/moonshot.d.ts +7 -0
  88. package/dist/agent/infra/llm/providers/moonshot.js +30 -0
  89. package/dist/agent/infra/llm/providers/openai-compatible.d.ts +9 -0
  90. package/dist/agent/infra/llm/providers/openai-compatible.js +30 -0
  91. package/dist/agent/infra/llm/providers/openai.d.ts +7 -0
  92. package/dist/agent/infra/llm/providers/openai.js +26 -0
  93. package/dist/agent/infra/llm/providers/openrouter.d.ts +7 -0
  94. package/dist/agent/infra/llm/providers/openrouter.js +26 -0
  95. package/dist/agent/infra/llm/providers/perplexity.d.ts +7 -0
  96. package/dist/agent/infra/llm/providers/perplexity.js +26 -0
  97. package/dist/agent/infra/llm/providers/togetherai.d.ts +7 -0
  98. package/dist/agent/infra/llm/providers/togetherai.js +26 -0
  99. package/dist/agent/infra/llm/providers/types.d.ts +81 -0
  100. package/dist/agent/infra/llm/providers/types.js +7 -0
  101. package/dist/agent/infra/llm/providers/vercel.d.ts +7 -0
  102. package/dist/agent/infra/llm/providers/vercel.js +32 -0
  103. package/dist/agent/infra/llm/providers/xai.d.ts +7 -0
  104. package/dist/agent/infra/llm/providers/xai.js +26 -0
  105. package/dist/agent/infra/llm/retry/retry-policy.d.ts +13 -0
  106. package/dist/agent/infra/llm/retry/retry-policy.js +207 -0
  107. package/dist/agent/infra/llm/tokenizers/openrouter-tokenizer.js +1 -1
  108. package/dist/agent/infra/llm/tool-output-processor.d.ts +16 -4
  109. package/dist/agent/infra/llm/tool-output-processor.js +61 -16
  110. package/dist/agent/infra/sandbox/curate-result-collector.d.ts +30 -0
  111. package/dist/agent/infra/sandbox/curate-result-collector.js +39 -0
  112. package/dist/agent/infra/sandbox/curate-service.d.ts +4 -1
  113. package/dist/agent/infra/sandbox/curate-service.js +12 -3
  114. package/dist/agent/infra/sandbox/local-sandbox.d.ts +13 -0
  115. package/dist/agent/infra/sandbox/local-sandbox.js +41 -4
  116. package/dist/agent/infra/sandbox/sandbox-service.d.ts +40 -5
  117. package/dist/agent/infra/sandbox/sandbox-service.js +97 -14
  118. package/dist/agent/infra/sandbox/tools-sdk.d.ts +42 -4
  119. package/dist/agent/infra/sandbox/tools-sdk.js +29 -4
  120. package/dist/agent/infra/session/chat-session.d.ts +1 -1
  121. package/dist/agent/infra/session/chat-session.js +2 -2
  122. package/dist/agent/infra/session/session-event-forwarder.js +6 -3
  123. package/dist/agent/infra/session/session-manager.d.ts +12 -2
  124. package/dist/agent/infra/session/session-manager.js +25 -8
  125. package/dist/agent/infra/session/session-metadata-store.d.ts +17 -10
  126. package/dist/agent/infra/session/session-metadata-store.js +12 -87
  127. package/dist/agent/infra/storage/blob-history-storage.d.ts +5 -0
  128. package/dist/agent/infra/storage/blob-history-storage.js +15 -0
  129. package/dist/agent/infra/storage/dual-format-history-storage.d.ts +6 -0
  130. package/dist/agent/infra/storage/dual-format-history-storage.js +16 -0
  131. package/dist/agent/infra/storage/message-storage-service.js +134 -22
  132. package/dist/agent/infra/storage/sqlite-key-storage.d.ts +8 -0
  133. package/dist/agent/infra/storage/sqlite-key-storage.js +47 -13
  134. package/dist/agent/infra/system-prompt/contributors/context-tree-structure-contributor.js +3 -3
  135. package/dist/agent/infra/tools/implementations/code-exec-tool.js +43 -2
  136. package/dist/agent/infra/tools/implementations/curate-tool.d.ts +98 -32
  137. package/dist/agent/infra/tools/implementations/curate-tool.js +86 -23
  138. package/dist/agent/infra/tools/implementations/memory-path-matcher.d.ts +48 -0
  139. package/dist/agent/infra/tools/implementations/memory-path-matcher.js +217 -0
  140. package/dist/agent/infra/tools/implementations/memory-symbol-tree.d.ts +101 -0
  141. package/dist/agent/infra/tools/implementations/memory-symbol-tree.js +259 -0
  142. package/dist/agent/infra/tools/implementations/search-knowledge-service.d.ts +48 -6
  143. package/dist/agent/infra/tools/implementations/search-knowledge-service.js +317 -41
  144. package/dist/agent/infra/tools/implementations/search-knowledge-tool.d.ts +2 -1
  145. package/dist/agent/infra/tools/implementations/search-knowledge-tool.js +50 -6
  146. package/dist/agent/infra/tools/tool-registry.js +2 -2
  147. package/dist/agent/infra/transport/transport-event-bridge.d.ts +42 -0
  148. package/dist/agent/infra/transport/transport-event-bridge.js +90 -0
  149. package/dist/agent/infra/validation/workspace-validator.d.ts +3 -3
  150. package/dist/agent/infra/validation/workspace-validator.js +3 -8
  151. package/dist/agent/resources/prompts/curate-detail-preservation.yml +29 -1
  152. package/dist/agent/resources/prompts/system-prompt.yml +346 -102
  153. package/dist/agent/resources/tools/code_exec.txt +97 -0
  154. package/dist/agent/resources/tools/curate.txt +25 -13
  155. package/dist/agent/resources/tools/detect_domains.txt +4 -3
  156. package/dist/oclif/commands/connectors/index.d.ts +12 -0
  157. package/dist/oclif/commands/connectors/index.js +53 -0
  158. package/dist/oclif/commands/connectors/install.d.ts +31 -0
  159. package/dist/oclif/commands/connectors/install.js +148 -0
  160. package/dist/oclif/commands/connectors/list.d.ts +5 -0
  161. package/dist/oclif/commands/connectors/list.js +8 -0
  162. package/dist/oclif/commands/{curate.d.ts → curate/index.d.ts} +11 -7
  163. package/dist/oclif/commands/curate/index.js +256 -0
  164. package/dist/oclif/commands/curate/view.d.ts +18 -0
  165. package/dist/oclif/commands/curate/view.js +104 -0
  166. package/dist/oclif/commands/debug.d.ts +35 -0
  167. package/dist/oclif/commands/debug.js +436 -0
  168. package/dist/oclif/commands/hub/index.d.ts +5 -0
  169. package/dist/oclif/commands/hub/index.js +7 -0
  170. package/dist/oclif/commands/hub/install.d.ts +23 -0
  171. package/dist/oclif/commands/hub/install.js +74 -0
  172. package/dist/oclif/commands/hub/list.d.ts +13 -0
  173. package/dist/oclif/commands/hub/list.js +65 -0
  174. package/dist/oclif/commands/hub/registry/add.d.ts +19 -0
  175. package/dist/oclif/commands/hub/registry/add.js +74 -0
  176. package/dist/oclif/commands/hub/registry/index.d.ts +5 -0
  177. package/dist/oclif/commands/hub/registry/index.js +7 -0
  178. package/dist/oclif/commands/hub/registry/list.d.ts +12 -0
  179. package/dist/oclif/commands/hub/registry/list.js +49 -0
  180. package/dist/oclif/commands/hub/registry/remove.d.ts +15 -0
  181. package/dist/oclif/commands/hub/registry/remove.js +46 -0
  182. package/dist/oclif/commands/login.d.ts +4 -0
  183. package/dist/oclif/commands/login.js +51 -31
  184. package/dist/oclif/commands/main.d.ts +3 -17
  185. package/dist/oclif/commands/main.js +15 -96
  186. package/dist/oclif/commands/mcp.js +24 -5
  187. package/dist/oclif/commands/model/index.d.ts +15 -0
  188. package/dist/oclif/commands/model/index.js +59 -0
  189. package/dist/oclif/commands/model/list.d.ts +17 -0
  190. package/dist/oclif/commands/model/list.js +89 -0
  191. package/dist/oclif/commands/model/switch.d.ts +21 -0
  192. package/dist/oclif/commands/model/switch.js +81 -0
  193. package/dist/oclif/commands/providers/connect.d.ts +28 -0
  194. package/dist/oclif/commands/providers/connect.js +141 -0
  195. package/dist/oclif/commands/providers/disconnect.d.ts +14 -0
  196. package/dist/oclif/commands/providers/disconnect.js +61 -0
  197. package/dist/oclif/commands/providers/index.d.ts +15 -0
  198. package/dist/oclif/commands/providers/index.js +59 -0
  199. package/dist/oclif/commands/providers/list.d.ts +12 -0
  200. package/dist/oclif/commands/providers/list.js +45 -0
  201. package/dist/oclif/commands/providers/switch.d.ts +17 -0
  202. package/dist/oclif/commands/providers/switch.js +61 -0
  203. package/dist/oclif/commands/pull.d.ts +1 -6
  204. package/dist/oclif/commands/pull.js +46 -49
  205. package/dist/oclif/commands/push.d.ts +1 -7
  206. package/dist/oclif/commands/push.js +66 -59
  207. package/dist/oclif/commands/query.d.ts +5 -7
  208. package/dist/oclif/commands/query.js +142 -43
  209. package/dist/oclif/commands/restart.d.ts +95 -0
  210. package/dist/oclif/commands/restart.js +333 -0
  211. package/dist/oclif/commands/space/list.d.ts +12 -0
  212. package/dist/oclif/commands/space/list.js +66 -0
  213. package/dist/oclif/commands/space/switch.d.ts +17 -0
  214. package/dist/oclif/commands/space/switch.js +87 -0
  215. package/dist/oclif/commands/status.d.ts +4 -9
  216. package/dist/oclif/commands/status.js +94 -49
  217. package/dist/oclif/hooks/prerun/validate-brv-config-version.d.ts +16 -11
  218. package/dist/oclif/hooks/prerun/validate-brv-config-version.js +67 -24
  219. package/dist/oclif/lib/daemon-client.d.ts +40 -0
  220. package/dist/oclif/lib/daemon-client.js +142 -0
  221. package/dist/oclif/lib/json-response.d.ts +9 -0
  222. package/dist/oclif/lib/json-response.js +10 -0
  223. package/dist/oclif/lib/task-client.d.ts +68 -0
  224. package/dist/oclif/lib/task-client.js +227 -0
  225. package/dist/server/config/environment.d.ts +1 -1
  226. package/dist/server/config/environment.js +2 -2
  227. package/dist/server/constants.d.ts +30 -1
  228. package/dist/server/constants.js +43 -2
  229. package/dist/server/core/domain/client/client-info.d.ts +82 -0
  230. package/dist/server/core/domain/client/client-info.js +87 -0
  231. package/dist/server/core/domain/entities/agent.d.ts +3 -6
  232. package/dist/server/core/domain/entities/agent.js +49 -54
  233. package/dist/server/core/domain/entities/brv-config.d.ts +31 -10
  234. package/dist/server/core/domain/entities/brv-config.js +68 -39
  235. package/dist/server/core/domain/entities/connector-type.d.ts +1 -11
  236. package/dist/server/core/domain/entities/connector-type.js +1 -10
  237. package/dist/server/core/domain/entities/context-tree-snapshot.d.ts +2 -11
  238. package/dist/server/core/domain/entities/curate-log-entry.d.ts +41 -0
  239. package/dist/server/core/domain/entities/curation-status.d.ts +28 -0
  240. package/dist/server/core/domain/entities/provider-config.d.ts +14 -1
  241. package/dist/server/core/domain/entities/provider-config.js +17 -6
  242. package/dist/server/core/domain/entities/provider-registry.d.ts +3 -1
  243. package/dist/server/core/domain/entities/provider-registry.js +230 -10
  244. package/dist/server/core/domain/errors/task-error.d.ts +17 -4
  245. package/dist/server/core/domain/errors/task-error.js +35 -10
  246. package/dist/server/core/domain/knowledge/markdown-writer.d.ts +58 -1
  247. package/dist/server/core/domain/knowledge/markdown-writer.js +288 -30
  248. package/dist/server/core/domain/knowledge/memory-scoring.d.ts +118 -0
  249. package/dist/server/core/domain/knowledge/memory-scoring.js +217 -0
  250. package/dist/server/core/domain/knowledge/relation-parser.d.ts +16 -0
  251. package/dist/server/core/domain/knowledge/relation-parser.js +21 -8
  252. package/dist/server/core/domain/project/project-info.d.ts +54 -0
  253. package/dist/server/core/domain/project/project-info.js +62 -0
  254. package/dist/server/core/domain/transport/schemas.d.ts +97 -19
  255. package/dist/server/core/domain/transport/schemas.js +40 -1
  256. package/dist/server/core/domain/transport/task-info.d.ts +21 -0
  257. package/dist/server/core/interfaces/agent/i-agent-pool.d.ts +88 -0
  258. package/dist/server/core/interfaces/client/i-client-manager.d.ts +117 -0
  259. package/dist/server/core/interfaces/context-tree/i-context-file-reader.d.ts +5 -1
  260. package/dist/server/core/interfaces/context-tree/i-context-tree-merger.d.ts +80 -0
  261. package/dist/server/core/interfaces/context-tree/i-context-tree-service.d.ts +5 -0
  262. package/dist/server/core/interfaces/context-tree/i-context-tree-snapshot-service.d.ts +15 -0
  263. package/dist/server/core/interfaces/daemon/i-agent-idle-timeout-policy.d.ts +39 -0
  264. package/dist/server/core/interfaces/daemon/i-daemon-resilience.d.ts +24 -0
  265. package/dist/server/core/interfaces/daemon/i-heartbeat-writer.d.ts +28 -0
  266. package/dist/server/core/interfaces/daemon/i-idle-timeout-policy.d.ts +34 -0
  267. package/dist/server/core/interfaces/daemon/i-shutdown-handler.d.ts +20 -0
  268. package/dist/server/core/interfaces/daemon/index.d.ts +4 -0
  269. package/dist/server/core/interfaces/daemon/index.js +2 -0
  270. package/dist/server/core/interfaces/executor/i-curate-executor.d.ts +2 -2
  271. package/dist/server/core/interfaces/executor/i-query-executor.d.ts +2 -2
  272. package/dist/server/core/interfaces/hub/i-hub-install-service.d.ts +45 -0
  273. package/dist/server/core/interfaces/hub/i-hub-keychain-store.d.ts +27 -0
  274. package/dist/server/core/interfaces/hub/i-hub-registry-config-store.d.ts +27 -0
  275. package/dist/server/core/interfaces/hub/i-hub-registry-service.d.ts +30 -0
  276. package/dist/server/core/interfaces/hub/i-hub-registry-service.js +1 -0
  277. package/dist/server/core/interfaces/i-provider-config-store.d.ts +3 -1
  278. package/dist/server/core/interfaces/i-provider-model-fetcher.d.ts +59 -0
  279. package/dist/server/core/interfaces/i-provider-model-fetcher.js +7 -0
  280. package/dist/server/core/interfaces/process/i-task-lifecycle-hook.d.ts +27 -0
  281. package/dist/server/core/interfaces/process/i-task-lifecycle-hook.js +1 -0
  282. package/dist/server/core/interfaces/project/i-project-registry.d.ts +46 -0
  283. package/dist/server/core/interfaces/project/i-project-registry.js +1 -0
  284. package/dist/server/core/interfaces/routing/i-project-router.d.ts +45 -0
  285. package/dist/server/core/interfaces/routing/i-project-router.js +1 -0
  286. package/dist/server/core/interfaces/routing/index.d.ts +1 -0
  287. package/dist/server/core/interfaces/routing/index.js +1 -0
  288. package/dist/server/core/interfaces/session/i-session-reader.d.ts +13 -0
  289. package/dist/server/core/interfaces/session/i-session-reader.js +1 -0
  290. package/dist/server/core/interfaces/state/i-auth-state-store.d.ts +68 -0
  291. package/dist/server/core/interfaces/state/i-auth-state-store.js +1 -0
  292. package/dist/server/core/interfaces/state/i-project-state-loader.d.ts +110 -0
  293. package/dist/server/core/interfaces/state/i-project-state-loader.js +1 -0
  294. package/dist/server/core/interfaces/storage/i-curate-log-store.d.ts +20 -0
  295. package/dist/server/core/interfaces/storage/i-curate-log-store.js +1 -0
  296. package/dist/server/core/interfaces/storage/i-global-config-store.d.ts +1 -15
  297. package/dist/server/core/interfaces/storage/i-mcp-config-writer.d.ts +5 -1
  298. package/dist/server/core/interfaces/storage/i-project-config-store.d.ts +6 -1
  299. package/dist/server/core/interfaces/transport/i-transport-server.d.ts +12 -2
  300. package/dist/server/core/interfaces/usecase/i-curate-log-use-case.d.ts +12 -0
  301. package/dist/server/core/interfaces/usecase/i-curate-log-use-case.js +1 -0
  302. package/dist/server/infra/client/client-manager.d.ts +51 -0
  303. package/dist/server/infra/client/client-manager.js +144 -0
  304. package/dist/server/infra/cogit/context-tree-to-push-context-mapper.js +2 -2
  305. package/dist/server/infra/config/auto-init.d.ts +14 -0
  306. package/dist/server/infra/config/auto-init.js +18 -0
  307. package/dist/server/infra/config/file-config-store.d.ts +1 -0
  308. package/dist/server/infra/config/file-config-store.js +15 -7
  309. package/dist/server/infra/connectors/mcp/json-mcp-config-writer.d.ts +1 -2
  310. package/dist/server/infra/connectors/mcp/json-mcp-config-writer.js +9 -8
  311. package/dist/server/infra/connectors/mcp/mcp-connector-config.d.ts +29 -6
  312. package/dist/server/infra/connectors/mcp/mcp-connector-config.js +28 -1
  313. package/dist/server/infra/connectors/mcp/mcp-connector.js +5 -5
  314. package/dist/server/infra/connectors/mcp/toml-mcp-config-writer.d.ts +1 -2
  315. package/dist/server/infra/connectors/rules/rules-connector-config.d.ts +8 -0
  316. package/dist/server/infra/connectors/rules/rules-connector-config.js +8 -0
  317. package/dist/server/infra/connectors/rules/rules-connector.js +34 -7
  318. package/dist/server/infra/connectors/shared/constants.d.ts +5 -0
  319. package/dist/server/infra/connectors/shared/constants.js +12 -0
  320. package/dist/server/infra/connectors/shared/rule-segment-patcher.d.ts +29 -0
  321. package/dist/server/infra/connectors/shared/rule-segment-patcher.js +208 -0
  322. package/dist/server/infra/connectors/skill/skill-connector-config.d.ts +79 -20
  323. package/dist/server/infra/connectors/skill/skill-connector-config.js +74 -10
  324. package/dist/server/infra/connectors/skill/skill-connector.d.ts +31 -4
  325. package/dist/server/infra/connectors/skill/skill-connector.js +136 -39
  326. package/dist/server/infra/context-tree/file-context-file-reader.js +6 -2
  327. package/dist/server/infra/context-tree/file-context-tree-merger.d.ts +51 -0
  328. package/dist/server/infra/context-tree/file-context-tree-merger.js +261 -0
  329. package/dist/server/infra/context-tree/file-context-tree-service.d.ts +1 -0
  330. package/dist/server/infra/context-tree/file-context-tree-service.js +6 -1
  331. package/dist/server/infra/context-tree/file-context-tree-snapshot-service.d.ts +2 -4
  332. package/dist/server/infra/context-tree/file-context-tree-snapshot-service.js +19 -9
  333. package/dist/server/infra/context-tree/hash-utils.d.ts +6 -0
  334. package/dist/server/infra/context-tree/hash-utils.js +9 -0
  335. package/dist/server/infra/daemon/agent-idle-timeout-policy.d.ts +36 -0
  336. package/dist/server/infra/daemon/agent-idle-timeout-policy.js +89 -0
  337. package/dist/server/infra/daemon/agent-logger.d.ts +10 -0
  338. package/dist/server/infra/daemon/agent-logger.js +22 -0
  339. package/dist/server/infra/daemon/agent-pool.d.ts +112 -0
  340. package/dist/server/infra/daemon/agent-pool.js +335 -0
  341. package/dist/server/infra/daemon/agent-process.d.ts +21 -0
  342. package/dist/server/infra/daemon/agent-process.js +610 -0
  343. package/dist/server/infra/daemon/brv-server.d.ts +23 -0
  344. package/dist/server/infra/daemon/brv-server.js +405 -0
  345. package/dist/server/infra/daemon/daemon-resilience.d.ts +34 -0
  346. package/dist/server/infra/daemon/daemon-resilience.js +100 -0
  347. package/dist/server/infra/daemon/heartbeat.d.ts +28 -0
  348. package/dist/server/infra/daemon/heartbeat.js +81 -0
  349. package/dist/server/infra/daemon/idle-timeout-policy.d.ts +38 -0
  350. package/dist/server/infra/daemon/idle-timeout-policy.js +91 -0
  351. package/dist/server/infra/daemon/index.d.ts +5 -0
  352. package/dist/server/infra/daemon/index.js +11 -0
  353. package/dist/server/infra/daemon/port-selector.d.ts +28 -0
  354. package/dist/server/infra/daemon/port-selector.js +45 -0
  355. package/dist/server/infra/daemon/project-task-queue.d.ts +54 -0
  356. package/dist/server/infra/daemon/project-task-queue.js +103 -0
  357. package/dist/server/infra/daemon/session-resolver.d.ts +26 -0
  358. package/dist/server/infra/daemon/session-resolver.js +88 -0
  359. package/dist/server/infra/daemon/shutdown-handler.d.ts +42 -0
  360. package/dist/server/infra/daemon/shutdown-handler.js +101 -0
  361. package/dist/server/infra/executor/curate-executor.d.ts +10 -2
  362. package/dist/server/infra/executor/curate-executor.js +87 -13
  363. package/dist/server/infra/executor/direct-search-responder.d.ts +11 -8
  364. package/dist/server/infra/executor/direct-search-responder.js +16 -14
  365. package/dist/server/infra/executor/folder-pack-executor.js +58 -17
  366. package/dist/server/infra/executor/query-executor.d.ts +23 -6
  367. package/dist/server/infra/executor/query-executor.js +145 -39
  368. package/dist/server/infra/http/provider-model-fetcher-registry.d.ts +31 -0
  369. package/dist/server/infra/http/provider-model-fetcher-registry.js +121 -0
  370. package/dist/server/infra/http/provider-model-fetchers.d.ts +108 -0
  371. package/dist/server/infra/http/provider-model-fetchers.js +582 -0
  372. package/dist/server/infra/hub/composite-hub-registry-service.d.ts +17 -0
  373. package/dist/server/infra/hub/composite-hub-registry-service.js +54 -0
  374. package/dist/server/infra/hub/hub-auth-headers.d.ts +11 -0
  375. package/dist/server/infra/hub/hub-auth-headers.js +29 -0
  376. package/dist/server/infra/hub/hub-install-service.d.ts +22 -0
  377. package/dist/server/infra/hub/hub-install-service.js +99 -0
  378. package/dist/server/infra/hub/hub-keychain-store.d.ts +29 -0
  379. package/dist/server/infra/hub/hub-keychain-store.js +98 -0
  380. package/dist/server/infra/hub/hub-registry-config-store.d.ts +24 -0
  381. package/dist/server/infra/hub/hub-registry-config-store.js +92 -0
  382. package/dist/server/infra/hub/hub-registry-service.d.ts +33 -0
  383. package/dist/server/infra/hub/hub-registry-service.js +109 -0
  384. package/dist/server/infra/mcp/mcp-mode-detector.d.ts +21 -0
  385. package/dist/server/infra/mcp/mcp-mode-detector.js +25 -0
  386. package/dist/server/infra/mcp/mcp-server.d.ts +15 -9
  387. package/dist/server/infra/mcp/mcp-server.js +84 -98
  388. package/dist/server/infra/mcp/tools/brv-curate-tool.d.ts +5 -10
  389. package/dist/server/infra/mcp/tools/brv-curate-tool.js +47 -17
  390. package/dist/server/infra/mcp/tools/brv-query-tool.d.ts +4 -1
  391. package/dist/server/infra/mcp/tools/brv-query-tool.js +39 -12
  392. package/dist/server/infra/mcp/tools/index.d.ts +1 -0
  393. package/dist/server/infra/mcp/tools/index.js +1 -0
  394. package/dist/server/infra/mcp/tools/resolve-client-cwd.d.ts +17 -0
  395. package/dist/server/infra/mcp/tools/resolve-client-cwd.js +27 -0
  396. package/dist/server/infra/mcp/tools/task-result-waiter.js +6 -5
  397. package/dist/server/infra/process/broadcast-utils.d.ts +16 -0
  398. package/dist/server/infra/process/broadcast-utils.js +22 -0
  399. package/dist/server/infra/process/connection-coordinator.d.ts +85 -0
  400. package/dist/server/infra/process/connection-coordinator.js +333 -0
  401. package/dist/server/infra/process/curate-log-handler.d.ts +35 -0
  402. package/dist/server/infra/process/curate-log-handler.js +179 -0
  403. package/dist/server/infra/process/feature-handlers.d.ts +25 -0
  404. package/dist/server/infra/process/feature-handlers.js +165 -0
  405. package/dist/server/infra/process/index.d.ts +6 -7
  406. package/dist/server/infra/process/index.js +5 -6
  407. package/dist/server/infra/process/task-router.d.ts +139 -0
  408. package/dist/server/infra/process/task-router.js +503 -0
  409. package/dist/server/infra/process/transport-handlers.d.ts +55 -117
  410. package/dist/server/infra/process/transport-handlers.js +50 -437
  411. package/dist/server/infra/process/types.d.ts +5 -0
  412. package/dist/server/infra/process/types.js +1 -0
  413. package/dist/server/infra/project/project-registry.d.ts +37 -0
  414. package/dist/server/infra/project/project-registry.js +147 -0
  415. package/dist/server/infra/provider/env-provider-detector.d.ts +33 -0
  416. package/dist/server/infra/provider/env-provider-detector.js +52 -0
  417. package/dist/server/infra/provider/provider-config-resolver.d.ts +30 -0
  418. package/dist/server/infra/provider/provider-config-resolver.js +167 -0
  419. package/dist/server/infra/provider/vertex-ai-utils.d.ts +10 -0
  420. package/dist/server/infra/provider/vertex-ai-utils.js +28 -0
  421. package/dist/server/infra/routing/project-router.d.ts +35 -0
  422. package/dist/server/infra/routing/project-router.js +60 -0
  423. package/dist/server/infra/session/session-reader.d.ts +18 -0
  424. package/dist/server/infra/session/session-reader.js +17 -0
  425. package/dist/server/infra/state/auth-state-store.d.ts +55 -0
  426. package/dist/server/infra/state/auth-state-store.js +111 -0
  427. package/dist/server/infra/state/project-state-loader.d.ts +69 -0
  428. package/dist/server/infra/state/project-state-loader.js +154 -0
  429. package/dist/server/infra/storage/file-curate-log-store.d.ts +61 -0
  430. package/dist/server/infra/storage/file-curate-log-store.js +198 -0
  431. package/dist/server/infra/storage/file-global-config-store.d.ts +0 -2
  432. package/dist/server/infra/storage/file-global-config-store.js +0 -19
  433. package/dist/server/infra/storage/file-onboarding-preference-store.d.ts +1 -1
  434. package/dist/server/infra/storage/file-onboarding-preference-store.js +7 -8
  435. package/dist/server/infra/storage/file-provider-config-store.d.ts +3 -2
  436. package/dist/server/infra/storage/file-provider-config-store.js +3 -3
  437. package/dist/server/infra/storage/file-provider-keychain-store.d.ts +31 -0
  438. package/dist/server/infra/storage/file-provider-keychain-store.js +110 -0
  439. package/dist/server/infra/storage/file-token-store.d.ts +2 -5
  440. package/dist/server/infra/storage/file-token-store.js +2 -5
  441. package/dist/server/infra/storage/provider-keychain-store.d.ts +2 -33
  442. package/dist/server/infra/storage/provider-keychain-store.js +4 -71
  443. package/dist/server/infra/storage/token-store.d.ts +3 -8
  444. package/dist/server/infra/storage/token-store.js +4 -11
  445. package/dist/server/infra/transport/agent-instance-discovery.d.ts +20 -0
  446. package/dist/server/infra/transport/agent-instance-discovery.js +32 -0
  447. package/dist/server/infra/transport/handlers/agent-dto-mapper.d.ts +6 -0
  448. package/dist/server/infra/transport/handlers/agent-dto-mapper.js +16 -0
  449. package/dist/server/infra/transport/handlers/auth-handler.d.ts +60 -0
  450. package/dist/server/infra/transport/handlers/auth-handler.js +257 -0
  451. package/dist/server/infra/transport/handlers/config-handler.d.ts +13 -0
  452. package/dist/server/infra/transport/handlers/config-handler.js +22 -0
  453. package/dist/server/infra/transport/handlers/connectors-handler.d.ts +23 -0
  454. package/dist/server/infra/transport/handlers/connectors-handler.js +73 -0
  455. package/dist/server/infra/transport/handlers/handler-types.d.ts +23 -0
  456. package/dist/server/infra/transport/handlers/handler-types.js +21 -0
  457. package/dist/server/infra/transport/handlers/hub-handler.d.ts +34 -0
  458. package/dist/server/infra/transport/handlers/hub-handler.js +218 -0
  459. package/dist/server/infra/transport/handlers/index.d.ts +26 -0
  460. package/dist/server/infra/transport/handlers/index.js +13 -0
  461. package/dist/server/infra/transport/handlers/init-handler.d.ts +50 -0
  462. package/dist/server/infra/transport/handlers/init-handler.js +157 -0
  463. package/dist/server/infra/transport/handlers/model-handler.d.ts +22 -0
  464. package/dist/server/infra/transport/handlers/model-handler.js +107 -0
  465. package/dist/server/infra/transport/handlers/provider-handler.d.ts +25 -0
  466. package/dist/server/infra/transport/handlers/provider-handler.js +101 -0
  467. package/dist/server/infra/transport/handlers/pull-handler.d.ts +35 -0
  468. package/dist/server/infra/transport/handlers/pull-handler.js +87 -0
  469. package/dist/server/infra/transport/handlers/push-handler.d.ts +37 -0
  470. package/dist/server/infra/transport/handlers/push-handler.js +109 -0
  471. package/dist/server/infra/transport/handlers/reset-handler.d.ts +23 -0
  472. package/dist/server/infra/transport/handlers/reset-handler.js +33 -0
  473. package/dist/server/infra/transport/handlers/space-handler.d.ts +44 -0
  474. package/dist/server/infra/transport/handlers/space-handler.js +206 -0
  475. package/dist/server/infra/transport/handlers/status-handler.d.ts +29 -0
  476. package/dist/server/infra/transport/handlers/status-handler.js +99 -0
  477. package/dist/server/infra/transport/index.d.ts +1 -1
  478. package/dist/server/infra/transport/index.js +0 -1
  479. package/dist/server/infra/transport/port-utils.d.ts +0 -35
  480. package/dist/server/infra/transport/port-utils.js +0 -62
  481. package/dist/server/infra/transport/socket-io-transport-server.d.ts +6 -1
  482. package/dist/server/infra/transport/socket-io-transport-server.js +30 -10
  483. package/dist/server/infra/transport/transport-connector.d.ts +13 -0
  484. package/dist/server/infra/transport/transport-connector.js +18 -0
  485. package/dist/server/infra/usecase/curate-log-use-case.d.ts +32 -0
  486. package/dist/server/infra/usecase/curate-log-use-case.js +142 -0
  487. package/dist/server/templates/sections/brv-instructions.md +8 -0
  488. package/dist/server/templates/sections/command-reference.md +5 -2
  489. package/dist/server/templates/sections/workflow.md +2 -0
  490. package/dist/server/templates/skill/SKILL.md +138 -59
  491. package/dist/server/utils/config-xdg-sync.d.ts +13 -0
  492. package/dist/server/utils/config-xdg-sync.js +25 -0
  493. package/dist/server/utils/curate-result-parser.d.ts +121 -0
  494. package/dist/server/utils/curate-result-parser.js +120 -0
  495. package/dist/server/utils/global-config-path.d.ts +1 -1
  496. package/dist/server/utils/global-config-path.js +5 -2
  497. package/dist/server/utils/global-data-path.d.ts +2 -2
  498. package/dist/server/utils/global-data-path.js +8 -3
  499. package/dist/server/utils/path-utils.d.ts +38 -0
  500. package/dist/server/utils/path-utils.js +92 -0
  501. package/dist/server/utils/process-logger.js +1 -1
  502. package/dist/server/utils/server-main-resolver.d.ts +9 -0
  503. package/dist/server/utils/server-main-resolver.js +17 -0
  504. package/dist/shared/transport/events/agent-events.d.ts +16 -0
  505. package/dist/shared/transport/events/agent-events.js +10 -0
  506. package/dist/shared/transport/events/auth-events.d.ts +45 -0
  507. package/dist/shared/transport/events/auth-events.js +11 -0
  508. package/dist/shared/transport/events/config-events.d.ts +18 -0
  509. package/dist/shared/transport/events/config-events.js +5 -0
  510. package/dist/shared/transport/events/connector-events.d.ts +35 -0
  511. package/dist/shared/transport/events/connector-events.js +6 -0
  512. package/dist/shared/transport/events/hub-events.d.ts +62 -0
  513. package/dist/shared/transport/events/hub-events.js +10 -0
  514. package/dist/shared/transport/events/index.d.ts +123 -0
  515. package/dist/shared/transport/events/index.js +73 -0
  516. package/dist/shared/transport/events/init-events.d.ts +41 -0
  517. package/dist/shared/transport/events/init-events.js +8 -0
  518. package/dist/shared/transport/events/llm-events.d.ts +13 -0
  519. package/dist/shared/transport/events/llm-events.js +13 -0
  520. package/dist/shared/transport/events/model-events.d.ts +30 -0
  521. package/dist/shared/transport/events/model-events.js +5 -0
  522. package/dist/shared/transport/events/onboarding-events.d.ts +18 -0
  523. package/dist/shared/transport/events/onboarding-events.js +5 -0
  524. package/dist/shared/transport/events/provider-events.d.ts +44 -0
  525. package/dist/shared/transport/events/provider-events.js +8 -0
  526. package/dist/shared/transport/events/pull-events.d.ts +26 -0
  527. package/dist/shared/transport/events/pull-events.js +5 -0
  528. package/dist/shared/transport/events/push-events.d.ts +27 -0
  529. package/dist/shared/transport/events/push-events.js +5 -0
  530. package/dist/shared/transport/events/reset-events.d.ts +6 -0
  531. package/dist/shared/transport/events/reset-events.js +3 -0
  532. package/dist/shared/transport/events/session-events.d.ts +3 -0
  533. package/dist/shared/transport/events/session-events.js +3 -0
  534. package/dist/shared/transport/events/space-events.d.ts +30 -0
  535. package/dist/shared/transport/events/space-events.js +4 -0
  536. package/dist/shared/transport/events/status-events.d.ts +7 -0
  537. package/dist/shared/transport/events/status-events.js +3 -0
  538. package/dist/shared/transport/events/task-events.d.ts +19 -0
  539. package/dist/shared/transport/events/task-events.js +9 -0
  540. package/dist/shared/transport/types/auth-scheme.d.ts +1 -0
  541. package/dist/shared/transport/types/auth-scheme.js +1 -0
  542. package/dist/shared/transport/types/dto.d.ts +112 -0
  543. package/dist/shared/transport/types/dto.js +6 -0
  544. package/dist/shared/transport/types/index.d.ts +1 -0
  545. package/dist/shared/transport/types/index.js +1 -0
  546. package/dist/shared/types/agent.d.ts +5 -0
  547. package/dist/shared/types/agent.js +27 -0
  548. package/dist/shared/types/connector-type.d.ts +18 -0
  549. package/dist/shared/types/connector-type.js +26 -0
  550. package/dist/shared/types/context-tree-changes.d.ts +11 -0
  551. package/dist/shared/types/context-tree-changes.js +1 -0
  552. package/dist/shared/types/index.d.ts +3 -0
  553. package/dist/shared/types/index.js +2 -0
  554. package/dist/tui/app/index.d.ts +9 -0
  555. package/dist/tui/app/index.js +4 -0
  556. package/dist/tui/app/layouts/main-layout.d.ts +14 -0
  557. package/dist/tui/app/layouts/main-layout.js +19 -0
  558. package/dist/tui/app/pages/config-provider-page.d.ts +8 -0
  559. package/dist/tui/app/pages/config-provider-page.js +19 -0
  560. package/dist/tui/app/pages/home-page.d.ts +8 -0
  561. package/dist/tui/app/pages/home-page.js +85 -0
  562. package/dist/tui/app/pages/login-page.d.ts +12 -0
  563. package/dist/tui/app/pages/login-page.js +87 -0
  564. package/dist/tui/app/pages/protected-routes.d.ts +8 -0
  565. package/dist/tui/app/pages/protected-routes.js +14 -0
  566. package/dist/tui/app/router.d.ts +11 -0
  567. package/dist/tui/app/router.js +21 -0
  568. package/dist/tui/components/command/command-output.d.ts +1 -1
  569. package/dist/tui/components/command/command-output.js +5 -7
  570. package/dist/tui/components/command/expanded-command-view.d.ts +1 -1
  571. package/dist/tui/components/command/expanded-command-view.js +5 -6
  572. package/dist/tui/components/command/live-streaming-output.d.ts +2 -4
  573. package/dist/tui/components/command/live-streaming-output.js +5 -19
  574. package/dist/tui/components/command-details.d.ts +1 -1
  575. package/dist/tui/components/command-details.js +3 -3
  576. package/dist/tui/components/command-input.js +84 -171
  577. package/dist/tui/components/command-item.d.ts +1 -1
  578. package/dist/tui/components/command-item.js +6 -7
  579. package/dist/tui/components/execution/execution-status.d.ts +1 -1
  580. package/dist/tui/components/execution/execution-tool.d.ts +1 -1
  581. package/dist/tui/components/execution/expanded-log-view.d.ts +1 -1
  582. package/dist/tui/components/execution/expanded-log-view.js +1 -1
  583. package/dist/tui/components/execution/log-item.d.ts +1 -1
  584. package/dist/tui/components/execution/log-item.js +1 -1
  585. package/dist/tui/components/footer.js +6 -4
  586. package/dist/tui/components/header.js +2 -2
  587. package/dist/tui/components/index.d.ts +0 -2
  588. package/dist/tui/components/index.js +0 -2
  589. package/dist/tui/components/init.d.ts +1 -1
  590. package/dist/tui/components/init.js +26 -32
  591. package/dist/tui/components/inline-prompts/inline-file-selector.d.ts +1 -1
  592. package/dist/tui/components/inline-prompts/inline-input.d.ts +6 -0
  593. package/dist/tui/components/inline-prompts/inline-input.js +53 -16
  594. package/dist/tui/components/inline-prompts/inline-search.d.ts +2 -2
  595. package/dist/tui/components/inline-prompts/inline-search.js +1 -1
  596. package/dist/tui/components/inline-prompts/inline-select.d.ts +1 -1
  597. package/dist/tui/components/inline-prompts/inline-select.js +1 -1
  598. package/dist/tui/components/message-item.d.ts +1 -1
  599. package/dist/tui/components/message-item.js +2 -2
  600. package/dist/tui/components/onboarding/welcome-box.d.ts +1 -8
  601. package/dist/tui/components/onboarding/welcome-box.js +11 -12
  602. package/dist/tui/components/onboarding-item.d.ts +1 -1
  603. package/dist/tui/components/selectable-list.d.ts +3 -1
  604. package/dist/tui/components/selectable-list.js +7 -15
  605. package/dist/tui/components/status-badge.js +1 -1
  606. package/dist/tui/components/suggestions.js +5 -18
  607. package/dist/tui/features/activity/hooks/index.d.ts +2 -0
  608. package/dist/tui/features/activity/hooks/index.js +2 -0
  609. package/dist/tui/{hooks → features/activity/hooks}/use-activity-logs.d.ts +1 -1
  610. package/dist/tui/{hooks → features/activity/hooks}/use-activity-logs.js +4 -3
  611. package/dist/tui/features/activity/hooks/use-feed-navigation.d.ts +24 -0
  612. package/dist/tui/features/activity/hooks/use-feed-navigation.js +43 -0
  613. package/dist/tui/features/activity/index.d.ts +1 -0
  614. package/dist/tui/features/activity/index.js +1 -0
  615. package/dist/tui/features/auth/api/get-auth-state.d.ts +16 -0
  616. package/dist/tui/features/auth/api/get-auth-state.js +21 -0
  617. package/dist/tui/features/auth/api/login.d.ts +3 -0
  618. package/dist/tui/features/auth/api/login.js +14 -0
  619. package/dist/tui/features/auth/api/logout.d.ts +8 -0
  620. package/dist/tui/features/auth/api/logout.js +24 -0
  621. package/dist/tui/features/auth/api/refresh-auth.d.ts +8 -0
  622. package/dist/tui/features/auth/api/refresh-auth.js +24 -0
  623. package/dist/tui/features/auth/components/auth-initializer.d.ts +10 -0
  624. package/dist/tui/features/auth/components/auth-initializer.js +82 -0
  625. package/dist/tui/features/auth/components/login-flow.d.ts +8 -0
  626. package/dist/tui/features/auth/components/login-flow.js +62 -0
  627. package/dist/tui/features/auth/components/logout-flow.d.ts +12 -0
  628. package/dist/tui/features/auth/components/logout-flow.js +81 -0
  629. package/dist/tui/features/auth/guards/auth-guard.d.ts +2 -0
  630. package/dist/tui/features/auth/guards/auth-guard.js +11 -0
  631. package/dist/tui/features/auth/stores/auth-store.d.ts +27 -0
  632. package/dist/tui/features/auth/stores/auth-store.js +29 -0
  633. package/dist/tui/features/commands/components/command-view.d.ts +17 -0
  634. package/dist/tui/features/commands/components/command-view.js +34 -0
  635. package/dist/tui/features/commands/definitions/connectors.d.ts +2 -0
  636. package/dist/tui/features/commands/definitions/connectors.js +9 -0
  637. package/dist/tui/features/commands/definitions/curate.d.ts +2 -0
  638. package/dist/tui/features/commands/definitions/curate.js +53 -0
  639. package/dist/tui/features/commands/definitions/hub-list.d.ts +2 -0
  640. package/dist/tui/features/commands/definitions/hub-list.js +9 -0
  641. package/dist/tui/features/commands/definitions/hub-registry-add.d.ts +2 -0
  642. package/dist/tui/features/commands/definitions/hub-registry-add.js +36 -0
  643. package/dist/tui/features/commands/definitions/hub-registry-list.d.ts +2 -0
  644. package/dist/tui/features/commands/definitions/hub-registry-list.js +9 -0
  645. package/dist/tui/features/commands/definitions/hub-registry-remove.d.ts +2 -0
  646. package/dist/tui/features/commands/definitions/hub-registry-remove.js +25 -0
  647. package/dist/tui/features/commands/definitions/hub-registry.d.ts +2 -0
  648. package/dist/tui/features/commands/definitions/hub-registry.js +8 -0
  649. package/dist/tui/features/commands/definitions/hub.d.ts +2 -0
  650. package/dist/tui/features/commands/definitions/hub.js +7 -0
  651. package/dist/tui/{commands → features/commands/definitions}/index.d.ts +1 -1
  652. package/dist/tui/features/commands/definitions/index.js +45 -0
  653. package/dist/tui/features/commands/definitions/login.d.ts +2 -0
  654. package/dist/tui/features/commands/definitions/login.js +12 -0
  655. package/dist/tui/features/commands/definitions/logout.d.ts +2 -0
  656. package/dist/tui/features/commands/definitions/logout.js +26 -0
  657. package/dist/tui/features/commands/definitions/model.d.ts +2 -0
  658. package/dist/tui/features/commands/definitions/model.js +9 -0
  659. package/dist/tui/features/commands/definitions/new.d.ts +2 -0
  660. package/dist/tui/features/commands/definitions/new.js +27 -0
  661. package/dist/tui/features/commands/definitions/providers.d.ts +2 -0
  662. package/dist/tui/features/commands/definitions/providers.js +9 -0
  663. package/dist/tui/features/commands/definitions/pull.d.ts +2 -0
  664. package/dist/tui/features/commands/definitions/pull.js +23 -0
  665. package/dist/tui/features/commands/definitions/push.d.ts +2 -0
  666. package/dist/tui/features/commands/definitions/push.js +29 -0
  667. package/dist/tui/features/commands/definitions/query.d.ts +2 -0
  668. package/dist/tui/features/commands/definitions/query.js +36 -0
  669. package/dist/tui/features/commands/definitions/reset.d.ts +2 -0
  670. package/dist/tui/features/commands/definitions/reset.js +22 -0
  671. package/dist/tui/features/commands/definitions/space-list.d.ts +2 -0
  672. package/dist/tui/features/commands/definitions/space-list.js +22 -0
  673. package/dist/tui/features/commands/definitions/space-switch.d.ts +2 -0
  674. package/dist/tui/features/commands/definitions/space-switch.js +9 -0
  675. package/dist/tui/features/commands/definitions/space.d.ts +2 -0
  676. package/dist/tui/features/commands/definitions/space.js +7 -0
  677. package/dist/tui/features/commands/definitions/status.d.ts +2 -0
  678. package/dist/tui/features/commands/definitions/status.js +11 -0
  679. package/dist/tui/features/commands/hooks/use-commands-controller.d.ts +38 -0
  680. package/dist/tui/features/commands/hooks/use-commands-controller.js +43 -0
  681. package/dist/tui/{hooks → features/commands/hooks}/use-slash-command-processor.d.ts +1 -1
  682. package/dist/tui/{hooks → features/commands/hooks}/use-slash-command-processor.js +33 -31
  683. package/dist/tui/{hooks → features/commands/hooks}/use-slash-completion.d.ts +1 -1
  684. package/dist/tui/{hooks → features/commands/hooks}/use-slash-completion.js +30 -25
  685. package/dist/tui/features/commands/stores/commands-store.d.ts +32 -0
  686. package/dist/tui/features/commands/stores/commands-store.js +23 -0
  687. package/dist/tui/{commands → features/commands/utils}/arg-parser.d.ts +1 -1
  688. package/dist/tui/features/connectors/api/get-agent-config-paths.d.ts +18 -0
  689. package/dist/tui/features/connectors/api/get-agent-config-paths.js +17 -0
  690. package/dist/tui/features/connectors/api/get-agents.d.ts +16 -0
  691. package/dist/tui/features/connectors/api/get-agents.js +19 -0
  692. package/dist/tui/features/connectors/api/get-connectors.d.ts +16 -0
  693. package/dist/tui/features/connectors/api/get-connectors.js +17 -0
  694. package/dist/tui/features/connectors/api/install-connector.d.ts +14 -0
  695. package/dist/tui/features/connectors/api/install-connector.js +27 -0
  696. package/dist/tui/features/connectors/components/agent-search-step.d.ts +9 -0
  697. package/dist/tui/features/connectors/components/agent-search-step.js +18 -0
  698. package/dist/tui/features/connectors/components/confirm-switch-step.d.ts +10 -0
  699. package/dist/tui/features/connectors/components/confirm-switch-step.js +13 -0
  700. package/dist/tui/features/connectors/components/connector-list-step.d.ts +11 -0
  701. package/dist/tui/features/connectors/components/connector-list-step.js +29 -0
  702. package/dist/tui/features/connectors/components/connector-type-step.d.ts +13 -0
  703. package/dist/tui/features/connectors/components/connector-type-step.js +23 -0
  704. package/dist/tui/features/connectors/components/connectors-flow.d.ts +17 -0
  705. package/dist/tui/features/connectors/components/connectors-flow.js +179 -0
  706. package/dist/tui/features/connectors/utils/get-connector-name.d.ts +3 -0
  707. package/dist/tui/features/connectors/utils/get-connector-name.js +33 -0
  708. package/dist/tui/features/curate/api/create-curate-task.d.ts +22 -0
  709. package/dist/tui/features/curate/api/create-curate-task.js +40 -0
  710. package/dist/tui/features/curate/components/curate-flow.d.ts +20 -0
  711. package/dist/tui/features/curate/components/curate-flow.js +41 -0
  712. package/dist/tui/features/hub/api/add-hub-registry.d.ts +15 -0
  713. package/dist/tui/features/hub/api/add-hub-registry.js +30 -0
  714. package/dist/tui/features/hub/api/get-hub-entries.d.ts +16 -0
  715. package/dist/tui/features/hub/api/get-hub-entries.js +17 -0
  716. package/dist/tui/features/hub/api/install-hub-entry.d.ts +14 -0
  717. package/dist/tui/features/hub/api/install-hub-entry.js +24 -0
  718. package/dist/tui/features/hub/api/list-hub-registries.d.ts +16 -0
  719. package/dist/tui/features/hub/api/list-hub-registries.js +17 -0
  720. package/dist/tui/features/hub/api/remove-hub-registry.d.ts +11 -0
  721. package/dist/tui/features/hub/api/remove-hub-registry.js +24 -0
  722. package/dist/tui/features/hub/components/hub-agent-step.d.ts +8 -0
  723. package/dist/tui/features/hub/components/hub-agent-step.js +14 -0
  724. package/dist/tui/features/hub/components/hub-detail-step.d.ts +10 -0
  725. package/dist/tui/features/hub/components/hub-detail-step.js +25 -0
  726. package/dist/tui/features/hub/components/hub-flow.d.ts +7 -0
  727. package/dist/tui/features/hub/components/hub-flow.js +90 -0
  728. package/dist/tui/features/hub/components/hub-list-step.d.ts +10 -0
  729. package/dist/tui/features/hub/components/hub-list-step.js +34 -0
  730. package/dist/tui/features/hub/components/hub-registry-add-view.d.ts +12 -0
  731. package/dist/tui/features/hub/components/hub-registry-add-view.js +36 -0
  732. package/dist/tui/features/hub/components/hub-registry-list-view.d.ts +7 -0
  733. package/dist/tui/features/hub/components/hub-registry-list-view.js +38 -0
  734. package/dist/tui/features/hub/components/hub-registry-remove-view.d.ts +8 -0
  735. package/dist/tui/features/hub/components/hub-registry-remove-view.js +17 -0
  736. package/dist/tui/features/model/api/get-models-by-providers.d.ts +20 -0
  737. package/dist/tui/features/model/api/get-models-by-providers.js +17 -0
  738. package/dist/tui/features/model/api/get-models.d.ts +20 -0
  739. package/dist/tui/features/model/api/get-models.js +17 -0
  740. package/dist/tui/features/model/api/set-active-model.d.ts +13 -0
  741. package/dist/tui/features/model/api/set-active-model.js +13 -0
  742. package/dist/tui/{components → features/model/components}/model-dialog.d.ts +4 -0
  743. package/dist/tui/{components → features/model/components}/model-dialog.js +10 -3
  744. package/dist/tui/features/model/components/model-flow.d.ts +17 -0
  745. package/dist/tui/features/model/components/model-flow.js +108 -0
  746. package/dist/tui/features/model/stores/model-store.d.ts +35 -0
  747. package/dist/tui/features/model/stores/model-store.js +26 -0
  748. package/dist/tui/features/onboarding/api/auto-setup-onboarding.d.ts +8 -0
  749. package/dist/tui/features/onboarding/api/auto-setup-onboarding.js +24 -0
  750. package/dist/tui/features/onboarding/api/complete-onboarding.d.ts +11 -0
  751. package/dist/tui/features/onboarding/api/complete-onboarding.js +24 -0
  752. package/dist/tui/features/onboarding/api/get-onboarding-state.d.ts +16 -0
  753. package/dist/tui/features/onboarding/api/get-onboarding-state.js +17 -0
  754. package/dist/tui/features/onboarding/hooks/use-app-view-mode.d.ts +27 -0
  755. package/dist/tui/features/onboarding/hooks/use-app-view-mode.js +36 -0
  756. package/dist/tui/features/onboarding/types.d.ts +7 -0
  757. package/dist/tui/features/onboarding/types.js +4 -0
  758. package/dist/tui/features/onboarding/utils.d.ts +28 -0
  759. package/dist/tui/features/onboarding/utils.js +76 -0
  760. package/dist/tui/features/provider/api/connect-provider.d.ts +13 -0
  761. package/dist/tui/features/provider/api/connect-provider.js +28 -0
  762. package/dist/tui/features/provider/api/disconnect-provider.d.ts +11 -0
  763. package/dist/tui/features/provider/api/disconnect-provider.js +26 -0
  764. package/dist/tui/features/provider/api/get-active-provider-config.d.ts +16 -0
  765. package/dist/tui/features/provider/api/get-active-provider-config.js +17 -0
  766. package/dist/tui/features/provider/api/get-providers.d.ts +16 -0
  767. package/dist/tui/features/provider/api/get-providers.js +17 -0
  768. package/dist/tui/features/provider/api/set-active-provider.d.ts +11 -0
  769. package/dist/tui/features/provider/api/set-active-provider.js +24 -0
  770. package/dist/tui/features/provider/api/validate-api-key.d.ts +12 -0
  771. package/dist/tui/features/provider/api/validate-api-key.js +13 -0
  772. package/dist/tui/{components → features/provider/components}/api-key-dialog.d.ts +5 -3
  773. package/dist/tui/features/provider/components/api-key-dialog.js +126 -0
  774. package/dist/tui/features/provider/components/base-url-dialog.d.ts +24 -0
  775. package/dist/tui/features/provider/components/base-url-dialog.js +77 -0
  776. package/dist/tui/features/provider/components/credential-path-dialog.d.ts +30 -0
  777. package/dist/tui/features/provider/components/credential-path-dialog.js +85 -0
  778. package/dist/tui/features/provider/components/model-select-step.d.ts +20 -0
  779. package/dist/tui/features/provider/components/model-select-step.js +73 -0
  780. package/dist/tui/{components → features/provider/components}/provider-dialog.d.ts +8 -6
  781. package/dist/tui/features/provider/components/provider-dialog.js +20 -0
  782. package/dist/tui/features/provider/components/provider-flow.d.ts +25 -0
  783. package/dist/tui/features/provider/components/provider-flow.js +277 -0
  784. package/dist/tui/features/provider/stores/provider-store.d.ts +28 -0
  785. package/dist/tui/features/provider/stores/provider-store.js +22 -0
  786. package/dist/tui/features/pull/api/execute-pull.d.ts +11 -0
  787. package/dist/tui/features/pull/api/execute-pull.js +13 -0
  788. package/dist/tui/features/pull/api/prepare-pull.d.ts +20 -0
  789. package/dist/tui/features/pull/api/prepare-pull.js +17 -0
  790. package/dist/tui/features/pull/components/pull-flow.d.ts +12 -0
  791. package/dist/tui/features/pull/components/pull-flow.js +70 -0
  792. package/dist/tui/features/push/api/execute-push.d.ts +11 -0
  793. package/dist/tui/features/push/api/execute-push.js +13 -0
  794. package/dist/tui/features/push/api/prepare-push.d.ts +20 -0
  795. package/dist/tui/features/push/api/prepare-push.js +17 -0
  796. package/dist/tui/features/push/components/push-flow.d.ts +13 -0
  797. package/dist/tui/features/push/components/push-flow.js +86 -0
  798. package/dist/tui/features/query/api/create-query-task.d.ts +17 -0
  799. package/dist/tui/features/query/api/create-query-task.js +27 -0
  800. package/dist/tui/features/query/components/query-flow.d.ts +18 -0
  801. package/dist/tui/features/query/components/query-flow.js +36 -0
  802. package/dist/tui/features/reset/api/execute-reset.d.ts +8 -0
  803. package/dist/tui/features/reset/api/execute-reset.js +13 -0
  804. package/dist/tui/features/reset/components/reset-flow.d.ts +12 -0
  805. package/dist/tui/features/reset/components/reset-flow.js +44 -0
  806. package/dist/tui/features/session/components/new-session-flow.d.ts +12 -0
  807. package/dist/tui/features/session/components/new-session-flow.js +28 -0
  808. package/dist/tui/features/space/api/get-spaces.d.ts +16 -0
  809. package/dist/tui/features/space/api/get-spaces.js +17 -0
  810. package/dist/tui/features/space/api/switch-space.d.ts +11 -0
  811. package/dist/tui/features/space/api/switch-space.js +24 -0
  812. package/dist/tui/features/space/components/space-list-view.d.ts +12 -0
  813. package/dist/tui/features/space/components/space-list-view.js +56 -0
  814. package/dist/tui/features/space/components/space-switch-flow.d.ts +13 -0
  815. package/dist/tui/features/space/components/space-switch-flow.js +97 -0
  816. package/dist/tui/features/status/api/get-status.d.ts +16 -0
  817. package/dist/tui/features/status/api/get-status.js +17 -0
  818. package/dist/tui/features/status/components/status-view.d.ts +12 -0
  819. package/dist/tui/features/status/components/status-view.js +26 -0
  820. package/dist/tui/features/status/utils/format-status.d.ts +5 -0
  821. package/dist/tui/features/status/utils/format-status.js +62 -0
  822. package/dist/tui/features/tasks/components/task-subscription-initializer.d.ts +5 -0
  823. package/dist/tui/features/tasks/components/task-subscription-initializer.js +9 -0
  824. package/dist/tui/features/tasks/hooks/use-task-subscriptions.d.ts +5 -0
  825. package/dist/tui/features/tasks/hooks/use-task-subscriptions.js +74 -0
  826. package/dist/tui/features/tasks/stores/tasks-store.d.ts +92 -0
  827. package/dist/tui/features/tasks/stores/tasks-store.js +262 -0
  828. package/dist/tui/features/transport/components/transport-initializer.d.ts +13 -0
  829. package/dist/tui/features/transport/components/transport-initializer.js +107 -0
  830. package/dist/tui/features/transport/hooks/use-transport.d.ts +19 -0
  831. package/dist/tui/features/transport/hooks/use-transport.js +16 -0
  832. package/dist/tui/hooks/index.d.ts +14 -13
  833. package/dist/tui/hooks/index.js +15 -9
  834. package/dist/tui/hooks/use-terminal-breakpoint.js +3 -2
  835. package/dist/tui/lib/api-client.d.ts +20 -0
  836. package/dist/tui/lib/api-client.js +29 -0
  837. package/dist/tui/lib/environment.d.ts +18 -0
  838. package/dist/tui/lib/environment.js +18 -0
  839. package/dist/tui/lib/react-query.d.ts +17 -0
  840. package/dist/tui/lib/react-query.js +17 -0
  841. package/dist/tui/lib/transport-logger.d.ts +13 -0
  842. package/dist/tui/lib/transport-logger.js +40 -0
  843. package/dist/tui/providers/app-providers.d.ts +1 -16
  844. package/dist/tui/providers/app-providers.js +26 -4
  845. package/dist/tui/repl-startup.d.ts +1 -12
  846. package/dist/tui/repl-startup.js +6 -24
  847. package/dist/tui/stores/mode-store.d.ts +25 -0
  848. package/dist/tui/stores/mode-store.js +49 -0
  849. package/dist/tui/stores/theme-store.d.ts +43 -0
  850. package/dist/tui/stores/theme-store.js +39 -0
  851. package/dist/tui/stores/transport-store.d.ts +40 -0
  852. package/dist/tui/stores/transport-store.js +40 -0
  853. package/dist/tui/types/commands.d.ts +23 -91
  854. package/dist/tui/types/commands.js +1 -13
  855. package/dist/tui/types/index.d.ts +3 -4
  856. package/dist/tui/types/index.js +0 -2
  857. package/dist/tui/types/messages.d.ts +8 -1
  858. package/dist/tui/types/ui.d.ts +0 -5
  859. package/dist/tui/utils/error-messages.d.ts +22 -0
  860. package/dist/tui/utils/error-messages.js +45 -0
  861. package/dist/tui/utils/index.d.ts +2 -0
  862. package/dist/tui/utils/index.js +2 -0
  863. package/dist/tui/utils/input.d.ts +14 -0
  864. package/dist/tui/utils/input.js +17 -0
  865. package/dist/tui/utils/log.d.ts +1 -1
  866. package/node_modules/@campfirein/brv-transport-client/README.md +79 -338
  867. package/node_modules/@campfirein/brv-transport-client/dist/constants.d.ts +18 -3
  868. package/node_modules/@campfirein/brv-transport-client/dist/constants.d.ts.map +1 -1
  869. package/node_modules/@campfirein/brv-transport-client/dist/constants.js +25 -4
  870. package/node_modules/@campfirein/brv-transport-client/dist/constants.js.map +1 -1
  871. package/node_modules/@campfirein/brv-transport-client/dist/core/domain/entities/instance-info.d.ts +4 -9
  872. package/node_modules/@campfirein/brv-transport-client/dist/core/domain/entities/instance-info.d.ts.map +1 -1
  873. package/node_modules/@campfirein/brv-transport-client/dist/core/domain/entities/instance-info.js +9 -24
  874. package/node_modules/@campfirein/brv-transport-client/dist/core/domain/entities/instance-info.js.map +1 -1
  875. package/node_modules/@campfirein/brv-transport-client/dist/core/domain/errors/connection-error.d.ts +20 -0
  876. package/node_modules/@campfirein/brv-transport-client/dist/core/domain/errors/connection-error.d.ts.map +1 -1
  877. package/node_modules/@campfirein/brv-transport-client/dist/core/domain/errors/connection-error.js +30 -0
  878. package/node_modules/@campfirein/brv-transport-client/dist/core/domain/errors/connection-error.js.map +1 -1
  879. package/node_modules/@campfirein/brv-transport-client/dist/core/domain/errors/transport-error.d.ts +3 -1
  880. package/node_modules/@campfirein/brv-transport-client/dist/core/domain/errors/transport-error.d.ts.map +1 -1
  881. package/node_modules/@campfirein/brv-transport-client/dist/core/domain/errors/transport-error.js +4 -1
  882. package/node_modules/@campfirein/brv-transport-client/dist/core/domain/errors/transport-error.js.map +1 -1
  883. package/node_modules/@campfirein/brv-transport-client/dist/core/domain/events/event-names.d.ts +10 -1
  884. package/node_modules/@campfirein/brv-transport-client/dist/core/domain/events/event-names.d.ts.map +1 -1
  885. package/node_modules/@campfirein/brv-transport-client/dist/core/domain/events/event-names.js +10 -0
  886. package/node_modules/@campfirein/brv-transport-client/dist/core/domain/events/event-names.js.map +1 -1
  887. package/node_modules/@campfirein/brv-transport-client/dist/core/domain/events/index.d.ts +1 -1
  888. package/node_modules/@campfirein/brv-transport-client/dist/core/domain/events/index.d.ts.map +1 -1
  889. package/node_modules/@campfirein/brv-transport-client/dist/core/domain/events/index.js +1 -1
  890. package/node_modules/@campfirein/brv-transport-client/dist/core/domain/events/index.js.map +1 -1
  891. package/node_modules/@campfirein/brv-transport-client/dist/core/domain/types.d.ts +9 -0
  892. package/node_modules/@campfirein/brv-transport-client/dist/core/domain/types.d.ts.map +1 -1
  893. package/node_modules/@campfirein/brv-transport-client/dist/core/domain/types.js +8 -1
  894. package/node_modules/@campfirein/brv-transport-client/dist/core/domain/types.js.map +1 -1
  895. package/node_modules/@campfirein/brv-transport-client/dist/core/domain/validators/common.d.ts.map +1 -1
  896. package/node_modules/@campfirein/brv-transport-client/dist/core/domain/validators/common.js.map +1 -1
  897. package/node_modules/@campfirein/brv-transport-client/dist/core/domain/validators/event-name-validator.d.ts.map +1 -1
  898. package/node_modules/@campfirein/brv-transport-client/dist/core/domain/validators/event-name-validator.js.map +1 -1
  899. package/node_modules/@campfirein/brv-transport-client/dist/core/domain/validators/index.d.ts.map +1 -1
  900. package/node_modules/@campfirein/brv-transport-client/dist/core/domain/validators/index.js.map +1 -1
  901. package/node_modules/@campfirein/brv-transport-client/dist/core/domain/validators/room-name-validator.d.ts.map +1 -1
  902. package/node_modules/@campfirein/brv-transport-client/dist/core/domain/validators/room-name-validator.js.map +1 -1
  903. package/node_modules/@campfirein/brv-transport-client/dist/core/domain/validators/url-validator.d.ts.map +1 -1
  904. package/node_modules/@campfirein/brv-transport-client/dist/core/domain/validators/url-validator.js.map +1 -1
  905. package/node_modules/@campfirein/brv-transport-client/dist/core/interfaces/i-client-factory-config.d.ts +150 -0
  906. package/node_modules/@campfirein/brv-transport-client/dist/core/interfaces/i-client-factory-config.d.ts.map +1 -0
  907. package/node_modules/@campfirein/brv-transport-client/dist/core/interfaces/i-client-factory-config.js +8 -0
  908. package/node_modules/@campfirein/brv-transport-client/dist/core/interfaces/i-client-factory-config.js.map +1 -0
  909. package/node_modules/@campfirein/brv-transport-client/dist/core/interfaces/i-client-factory.d.ts +9 -4
  910. package/node_modules/@campfirein/brv-transport-client/dist/core/interfaces/i-client-factory.d.ts.map +1 -1
  911. package/node_modules/@campfirein/brv-transport-client/dist/core/interfaces/i-client-factory.js.map +1 -1
  912. package/node_modules/@campfirein/brv-transport-client/dist/core/interfaces/i-client-logger.d.ts.map +1 -1
  913. package/node_modules/@campfirein/brv-transport-client/dist/core/interfaces/i-client-logger.js.map +1 -1
  914. package/node_modules/@campfirein/brv-transport-client/dist/core/interfaces/i-client.d.ts.map +1 -1
  915. package/node_modules/@campfirein/brv-transport-client/dist/core/interfaces/i-client.js.map +1 -1
  916. package/node_modules/@campfirein/brv-transport-client/dist/core/interfaces/i-connection-state.d.ts.map +1 -1
  917. package/node_modules/@campfirein/brv-transport-client/dist/core/interfaces/i-connection-state.js.map +1 -1
  918. package/node_modules/@campfirein/brv-transport-client/dist/core/interfaces/i-event-dispatcher.d.ts.map +1 -1
  919. package/node_modules/@campfirein/brv-transport-client/dist/core/interfaces/i-event-dispatcher.js.map +1 -1
  920. package/node_modules/@campfirein/brv-transport-client/dist/core/interfaces/i-force-reconnect-manager.d.ts.map +1 -1
  921. package/node_modules/@campfirein/brv-transport-client/dist/core/interfaces/i-force-reconnect-manager.js.map +1 -1
  922. package/node_modules/@campfirein/brv-transport-client/dist/core/interfaces/i-instance-discovery.d.ts +9 -22
  923. package/node_modules/@campfirein/brv-transport-client/dist/core/interfaces/i-instance-discovery.d.ts.map +1 -1
  924. package/node_modules/@campfirein/brv-transport-client/dist/core/interfaces/i-instance-discovery.js.map +1 -1
  925. package/node_modules/@campfirein/brv-transport-client/dist/core/interfaces/i-instance-manager.d.ts +46 -0
  926. package/node_modules/@campfirein/brv-transport-client/dist/core/interfaces/i-instance-manager.d.ts.map +1 -0
  927. package/node_modules/@campfirein/brv-transport-client/dist/core/interfaces/i-instance-manager.js +2 -0
  928. package/node_modules/@campfirein/brv-transport-client/dist/core/interfaces/i-instance-manager.js.map +1 -0
  929. package/node_modules/@campfirein/brv-transport-client/dist/core/interfaces/i-reconnection-strategy.d.ts.map +1 -1
  930. package/node_modules/@campfirein/brv-transport-client/dist/core/interfaces/i-reconnection-strategy.js.map +1 -1
  931. package/node_modules/@campfirein/brv-transport-client/dist/core/interfaces/i-room-manager.d.ts.map +1 -1
  932. package/node_modules/@campfirein/brv-transport-client/dist/core/interfaces/i-room-manager.js.map +1 -1
  933. package/node_modules/@campfirein/brv-transport-client/dist/core/interfaces/i-socket-provider.d.ts.map +1 -1
  934. package/node_modules/@campfirein/brv-transport-client/dist/core/interfaces/i-socket-provider.js.map +1 -1
  935. package/node_modules/@campfirein/brv-transport-client/dist/core/interfaces/i-socket.d.ts.map +1 -1
  936. package/node_modules/@campfirein/brv-transport-client/dist/core/interfaces/i-socket.js.map +1 -1
  937. package/node_modules/@campfirein/brv-transport-client/dist/core/interfaces/i-spawn-lock.d.ts +27 -0
  938. package/node_modules/@campfirein/brv-transport-client/dist/core/interfaces/i-spawn-lock.d.ts.map +1 -0
  939. package/node_modules/@campfirein/brv-transport-client/dist/core/interfaces/i-spawn-lock.js +2 -0
  940. package/node_modules/@campfirein/brv-transport-client/dist/core/interfaces/i-spawn-lock.js.map +1 -0
  941. package/node_modules/@campfirein/brv-transport-client/dist/core/interfaces/i-wake-detector.d.ts.map +1 -1
  942. package/node_modules/@campfirein/brv-transport-client/dist/core/interfaces/i-wake-detector.js.map +1 -1
  943. package/node_modules/@campfirein/brv-transport-client/dist/index.d.ts +26 -16
  944. package/node_modules/@campfirein/brv-transport-client/dist/index.d.ts.map +1 -1
  945. package/node_modules/@campfirein/brv-transport-client/dist/index.js +28 -18
  946. package/node_modules/@campfirein/brv-transport-client/dist/index.js.map +1 -1
  947. package/node_modules/@campfirein/brv-transport-client/dist/infra/client-factory.d.ts +49 -167
  948. package/node_modules/@campfirein/brv-transport-client/dist/infra/client-factory.d.ts.map +1 -1
  949. package/node_modules/@campfirein/brv-transport-client/dist/infra/client-factory.js +161 -260
  950. package/node_modules/@campfirein/brv-transport-client/dist/infra/client-factory.js.map +1 -1
  951. package/node_modules/@campfirein/brv-transport-client/dist/infra/connection-state-manager.d.ts.map +1 -1
  952. package/node_modules/@campfirein/brv-transport-client/dist/infra/connection-state-manager.js.map +1 -1
  953. package/node_modules/@campfirein/brv-transport-client/dist/infra/daemon-connector.d.ts +46 -0
  954. package/node_modules/@campfirein/brv-transport-client/dist/infra/daemon-connector.d.ts.map +1 -0
  955. package/node_modules/@campfirein/brv-transport-client/dist/infra/daemon-connector.js +47 -0
  956. package/node_modules/@campfirein/brv-transport-client/dist/infra/daemon-connector.js.map +1 -0
  957. package/node_modules/@campfirein/brv-transport-client/dist/infra/daemon-discovery-sync.d.ts +41 -0
  958. package/node_modules/@campfirein/brv-transport-client/dist/infra/daemon-discovery-sync.d.ts.map +1 -0
  959. package/node_modules/@campfirein/brv-transport-client/dist/infra/daemon-discovery-sync.js +48 -0
  960. package/node_modules/@campfirein/brv-transport-client/dist/infra/daemon-discovery-sync.js.map +1 -0
  961. package/node_modules/@campfirein/brv-transport-client/dist/infra/daemon-health.d.ts +37 -0
  962. package/node_modules/@campfirein/brv-transport-client/dist/infra/daemon-health.d.ts.map +1 -0
  963. package/node_modules/@campfirein/brv-transport-client/dist/infra/daemon-health.js +35 -0
  964. package/node_modules/@campfirein/brv-transport-client/dist/infra/daemon-health.js.map +1 -0
  965. package/node_modules/@campfirein/brv-transport-client/dist/infra/daemon-instance-discovery.d.ts +22 -0
  966. package/node_modules/@campfirein/brv-transport-client/dist/infra/daemon-instance-discovery.d.ts.map +1 -0
  967. package/node_modules/@campfirein/brv-transport-client/dist/infra/daemon-instance-discovery.js +83 -0
  968. package/node_modules/@campfirein/brv-transport-client/dist/infra/daemon-instance-discovery.js.map +1 -0
  969. package/node_modules/@campfirein/brv-transport-client/dist/infra/daemon-reconnector.d.ts +60 -0
  970. package/node_modules/@campfirein/brv-transport-client/dist/infra/daemon-reconnector.d.ts.map +1 -0
  971. package/node_modules/@campfirein/brv-transport-client/dist/infra/daemon-reconnector.js +101 -0
  972. package/node_modules/@campfirein/brv-transport-client/dist/infra/daemon-reconnector.js.map +1 -0
  973. package/node_modules/@campfirein/brv-transport-client/dist/infra/daemon-spawner.d.ts +33 -0
  974. package/node_modules/@campfirein/brv-transport-client/dist/infra/daemon-spawner.d.ts.map +1 -0
  975. package/node_modules/@campfirein/brv-transport-client/dist/infra/daemon-spawner.js +161 -0
  976. package/node_modules/@campfirein/brv-transport-client/dist/infra/daemon-spawner.js.map +1 -0
  977. package/node_modules/@campfirein/brv-transport-client/dist/infra/event-dispatcher.d.ts.map +1 -1
  978. package/node_modules/@campfirein/brv-transport-client/dist/infra/event-dispatcher.js.map +1 -1
  979. package/node_modules/@campfirein/brv-transport-client/dist/infra/find-project-root.d.ts +11 -0
  980. package/node_modules/@campfirein/brv-transport-client/dist/infra/find-project-root.d.ts.map +1 -0
  981. package/node_modules/@campfirein/brv-transport-client/dist/infra/find-project-root.js +31 -0
  982. package/node_modules/@campfirein/brv-transport-client/dist/infra/find-project-root.js.map +1 -0
  983. package/node_modules/@campfirein/brv-transport-client/dist/infra/force-reconnect-manager.d.ts +1 -0
  984. package/node_modules/@campfirein/brv-transport-client/dist/infra/force-reconnect-manager.d.ts.map +1 -1
  985. package/node_modules/@campfirein/brv-transport-client/dist/infra/force-reconnect-manager.js +4 -0
  986. package/node_modules/@campfirein/brv-transport-client/dist/infra/force-reconnect-manager.js.map +1 -1
  987. package/node_modules/@campfirein/brv-transport-client/dist/infra/global-data-path.d.ts +12 -0
  988. package/node_modules/@campfirein/brv-transport-client/dist/infra/global-data-path.d.ts.map +1 -0
  989. package/node_modules/@campfirein/brv-transport-client/dist/infra/global-data-path.js +38 -0
  990. package/node_modules/@campfirein/brv-transport-client/dist/infra/global-data-path.js.map +1 -0
  991. package/node_modules/@campfirein/brv-transport-client/dist/infra/global-instance-manager.d.ts +37 -0
  992. package/node_modules/@campfirein/brv-transport-client/dist/infra/global-instance-manager.d.ts.map +1 -0
  993. package/node_modules/@campfirein/brv-transport-client/dist/infra/global-instance-manager.js +100 -0
  994. package/node_modules/@campfirein/brv-transport-client/dist/infra/global-instance-manager.js.map +1 -0
  995. package/node_modules/@campfirein/brv-transport-client/dist/infra/heartbeat-utils.d.ts +12 -0
  996. package/node_modules/@campfirein/brv-transport-client/dist/infra/heartbeat-utils.d.ts.map +1 -0
  997. package/node_modules/@campfirein/brv-transport-client/dist/infra/heartbeat-utils.js +29 -0
  998. package/node_modules/@campfirein/brv-transport-client/dist/infra/heartbeat-utils.js.map +1 -0
  999. package/node_modules/@campfirein/brv-transport-client/dist/infra/no-op-client-logger.d.ts.map +1 -1
  1000. package/node_modules/@campfirein/brv-transport-client/dist/infra/no-op-client-logger.js.map +1 -1
  1001. package/node_modules/@campfirein/brv-transport-client/dist/infra/process-utils.d.ts.map +1 -1
  1002. package/node_modules/@campfirein/brv-transport-client/dist/infra/process-utils.js.map +1 -1
  1003. package/node_modules/@campfirein/brv-transport-client/dist/infra/reconnection-strategy.d.ts.map +1 -1
  1004. package/node_modules/@campfirein/brv-transport-client/dist/infra/reconnection-strategy.js.map +1 -1
  1005. package/node_modules/@campfirein/brv-transport-client/dist/infra/resolve-server-path.d.ts +12 -0
  1006. package/node_modules/@campfirein/brv-transport-client/dist/infra/resolve-server-path.d.ts.map +1 -0
  1007. package/node_modules/@campfirein/brv-transport-client/dist/infra/resolve-server-path.js +52 -0
  1008. package/node_modules/@campfirein/brv-transport-client/dist/infra/resolve-server-path.js.map +1 -0
  1009. package/node_modules/@campfirein/brv-transport-client/dist/infra/room-manager.d.ts.map +1 -1
  1010. package/node_modules/@campfirein/brv-transport-client/dist/infra/room-manager.js.map +1 -1
  1011. package/node_modules/@campfirein/brv-transport-client/dist/infra/schemas/index.d.ts +2 -2
  1012. package/node_modules/@campfirein/brv-transport-client/dist/infra/schemas/index.d.ts.map +1 -1
  1013. package/node_modules/@campfirein/brv-transport-client/dist/infra/schemas/index.js +4 -2
  1014. package/node_modules/@campfirein/brv-transport-client/dist/infra/schemas/index.js.map +1 -1
  1015. package/node_modules/@campfirein/brv-transport-client/dist/infra/schemas/schemas.d.ts +65 -3
  1016. package/node_modules/@campfirein/brv-transport-client/dist/infra/schemas/schemas.d.ts.map +1 -1
  1017. package/node_modules/@campfirein/brv-transport-client/dist/infra/schemas/schemas.js +44 -1
  1018. package/node_modules/@campfirein/brv-transport-client/dist/infra/schemas/schemas.js.map +1 -1
  1019. package/node_modules/@campfirein/brv-transport-client/dist/infra/schemas/types.d.ts +11 -1
  1020. package/node_modules/@campfirein/brv-transport-client/dist/infra/schemas/types.d.ts.map +1 -1
  1021. package/node_modules/@campfirein/brv-transport-client/dist/infra/schemas/types.js.map +1 -1
  1022. package/node_modules/@campfirein/brv-transport-client/dist/infra/socket-io-client.d.ts +32 -61
  1023. package/node_modules/@campfirein/brv-transport-client/dist/infra/socket-io-client.d.ts.map +1 -1
  1024. package/node_modules/@campfirein/brv-transport-client/dist/infra/socket-io-client.js +133 -37
  1025. package/node_modules/@campfirein/brv-transport-client/dist/infra/socket-io-client.js.map +1 -1
  1026. package/node_modules/@campfirein/brv-transport-client/dist/infra/spawn-lock.d.ts +27 -0
  1027. package/node_modules/@campfirein/brv-transport-client/dist/infra/spawn-lock.d.ts.map +1 -0
  1028. package/node_modules/@campfirein/brv-transport-client/dist/infra/spawn-lock.js +124 -0
  1029. package/node_modules/@campfirein/brv-transport-client/dist/infra/spawn-lock.js.map +1 -0
  1030. package/node_modules/@campfirein/brv-transport-client/dist/infra/utils/deep-freeze.d.ts.map +1 -1
  1031. package/node_modules/@campfirein/brv-transport-client/dist/infra/utils/deep-freeze.js.map +1 -1
  1032. package/node_modules/@campfirein/brv-transport-client/dist/infra/wait-for-connected-client.d.ts +13 -0
  1033. package/node_modules/@campfirein/brv-transport-client/dist/infra/wait-for-connected-client.d.ts.map +1 -0
  1034. package/node_modules/@campfirein/brv-transport-client/dist/infra/wait-for-connected-client.js +33 -0
  1035. package/node_modules/@campfirein/brv-transport-client/dist/infra/wait-for-connected-client.js.map +1 -0
  1036. package/node_modules/@campfirein/brv-transport-client/dist/infra/wake-detector.d.ts.map +1 -1
  1037. package/node_modules/@campfirein/brv-transport-client/dist/infra/wake-detector.js.map +1 -1
  1038. package/node_modules/@campfirein/brv-transport-client/package.json +3 -12
  1039. package/oclif.manifest.json +1224 -180
  1040. package/package.json +47 -8
  1041. package/dist/agent/infra/llm/generators/openrouter-content-generator.d.ts +0 -94
  1042. package/dist/agent/infra/llm/generators/openrouter-content-generator.js +0 -280
  1043. package/dist/agent/infra/llm/openrouter-llm-service.d.ts +0 -215
  1044. package/dist/agent/infra/llm/openrouter-llm-service.js +0 -572
  1045. package/dist/agent/infra/llm/stream-processor.d.ts +0 -178
  1046. package/dist/agent/infra/llm/stream-processor.js +0 -350
  1047. package/dist/agent/infra/llm/transformers/openrouter-stream-transformer.d.ts +0 -49
  1048. package/dist/agent/infra/llm/transformers/openrouter-stream-transformer.js +0 -270
  1049. package/dist/oclif/commands/curate.js +0 -96
  1050. package/dist/oclif/commands/init.d.ts +0 -18
  1051. package/dist/oclif/commands/init.js +0 -129
  1052. package/dist/server/core/domain/entities/context-tree-index.d.ts +0 -26
  1053. package/dist/server/core/domain/entities/context-tree-index.js +0 -27
  1054. package/dist/server/core/domain/entities/event.d.ts +0 -8
  1055. package/dist/server/core/domain/entities/event.js +0 -25
  1056. package/dist/server/core/domain/errors/ace-error.d.ts +0 -34
  1057. package/dist/server/core/domain/errors/ace-error.js +0 -53
  1058. package/dist/server/core/domain/errors/brv-config-version-error.d.ts +0 -16
  1059. package/dist/server/core/domain/errors/brv-config-version-error.js +0 -21
  1060. package/dist/server/core/domain/errors/core-process-error.d.ts +0 -27
  1061. package/dist/server/core/domain/errors/core-process-error.js +0 -43
  1062. package/dist/server/core/domain/instance/index.d.ts +0 -1
  1063. package/dist/server/core/domain/instance/index.js +0 -1
  1064. package/dist/server/core/domain/instance/types.d.ts +0 -57
  1065. package/dist/server/core/domain/instance/types.js +0 -72
  1066. package/dist/server/core/interfaces/instance/i-instance-discovery.d.ts +0 -45
  1067. package/dist/server/core/interfaces/instance/i-instance-manager.d.ts +0 -58
  1068. package/dist/server/core/interfaces/instance/index.d.ts +0 -2
  1069. package/dist/server/core/interfaces/instance/index.js +0 -2
  1070. package/dist/server/core/interfaces/noop-implementations.d.ts +0 -53
  1071. package/dist/server/core/interfaces/noop-implementations.js +0 -62
  1072. package/dist/server/core/interfaces/services/i-tracking-service.d.ts +0 -21
  1073. package/dist/server/core/interfaces/usecase/i-connectors-use-case.d.ts +0 -3
  1074. package/dist/server/core/interfaces/usecase/i-curate-use-case.d.ts +0 -14
  1075. package/dist/server/core/interfaces/usecase/i-init-use-case.d.ts +0 -11
  1076. package/dist/server/core/interfaces/usecase/i-login-use-case.d.ts +0 -6
  1077. package/dist/server/core/interfaces/usecase/i-logout-use-case.d.ts +0 -5
  1078. package/dist/server/core/interfaces/usecase/i-pull-use-case.d.ts +0 -7
  1079. package/dist/server/core/interfaces/usecase/i-push-use-case.d.ts +0 -8
  1080. package/dist/server/core/interfaces/usecase/i-query-use-case.d.ts +0 -11
  1081. package/dist/server/core/interfaces/usecase/i-reset-use-case.d.ts +0 -6
  1082. package/dist/server/core/interfaces/usecase/i-space-list-use-case.d.ts +0 -3
  1083. package/dist/server/core/interfaces/usecase/i-space-switch-use-case.d.ts +0 -3
  1084. package/dist/server/core/interfaces/usecase/i-status-use-case.d.ts +0 -6
  1085. package/dist/server/infra/executor/task-processor.d.ts +0 -89
  1086. package/dist/server/infra/executor/task-processor.js +0 -133
  1087. package/dist/server/infra/instance/file-instance-discovery.d.ts +0 -31
  1088. package/dist/server/infra/instance/file-instance-discovery.js +0 -84
  1089. package/dist/server/infra/instance/file-instance-manager.d.ts +0 -46
  1090. package/dist/server/infra/instance/file-instance-manager.js +0 -123
  1091. package/dist/server/infra/instance/index.d.ts +0 -3
  1092. package/dist/server/infra/instance/index.js +0 -3
  1093. package/dist/server/infra/instance/process-utils.d.ts +0 -14
  1094. package/dist/server/infra/instance/process-utils.js +0 -39
  1095. package/dist/server/infra/process/agent-worker.d.ts +0 -20
  1096. package/dist/server/infra/process/agent-worker.js +0 -1399
  1097. package/dist/server/infra/process/inline-agent-executor.d.ts +0 -32
  1098. package/dist/server/infra/process/inline-agent-executor.js +0 -278
  1099. package/dist/server/infra/process/ipc-types.d.ts +0 -68
  1100. package/dist/server/infra/process/ipc-types.js +0 -12
  1101. package/dist/server/infra/process/parent-heartbeat.d.ts +0 -47
  1102. package/dist/server/infra/process/parent-heartbeat.js +0 -118
  1103. package/dist/server/infra/process/process-manager.d.ts +0 -242
  1104. package/dist/server/infra/process/process-manager.js +0 -765
  1105. package/dist/server/infra/process/task-queue-manager.d.ts +0 -125
  1106. package/dist/server/infra/process/task-queue-manager.js +0 -185
  1107. package/dist/server/infra/process/transport-worker.d.ts +0 -20
  1108. package/dist/server/infra/process/transport-worker.js +0 -196
  1109. package/dist/server/infra/storage/keychain-token-store.d.ts +0 -13
  1110. package/dist/server/infra/storage/keychain-token-store.js +0 -42
  1111. package/dist/server/infra/terminal/oclif-terminal.d.ts +0 -19
  1112. package/dist/server/infra/terminal/oclif-terminal.js +0 -60
  1113. package/dist/server/infra/terminal/repl-terminal.d.ts +0 -31
  1114. package/dist/server/infra/terminal/repl-terminal.js +0 -116
  1115. package/dist/server/infra/tracking/mixpanel-tracking-service.d.ts +0 -24
  1116. package/dist/server/infra/tracking/mixpanel-tracking-service.js +0 -49
  1117. package/dist/server/infra/transport/transport-factory.d.ts +0 -17
  1118. package/dist/server/infra/transport/transport-factory.js +0 -31
  1119. package/dist/server/infra/usecase/connectors-use-case.d.ts +0 -63
  1120. package/dist/server/infra/usecase/connectors-use-case.js +0 -234
  1121. package/dist/server/infra/usecase/curate-use-case.d.ts +0 -59
  1122. package/dist/server/infra/usecase/curate-use-case.js +0 -274
  1123. package/dist/server/infra/usecase/init-use-case.d.ts +0 -126
  1124. package/dist/server/infra/usecase/init-use-case.js +0 -538
  1125. package/dist/server/infra/usecase/login-use-case.d.ts +0 -30
  1126. package/dist/server/infra/usecase/login-use-case.js +0 -127
  1127. package/dist/server/infra/usecase/logout-use-case.d.ts +0 -19
  1128. package/dist/server/infra/usecase/logout-use-case.js +0 -48
  1129. package/dist/server/infra/usecase/pull-use-case.d.ts +0 -49
  1130. package/dist/server/infra/usecase/pull-use-case.js +0 -147
  1131. package/dist/server/infra/usecase/push-use-case.d.ts +0 -50
  1132. package/dist/server/infra/usecase/push-use-case.js +0 -191
  1133. package/dist/server/infra/usecase/query-use-case.d.ts +0 -73
  1134. package/dist/server/infra/usecase/query-use-case.js +0 -420
  1135. package/dist/server/infra/usecase/reset-use-case.d.ts +0 -21
  1136. package/dist/server/infra/usecase/reset-use-case.js +0 -60
  1137. package/dist/server/infra/usecase/space-list-use-case.d.ts +0 -27
  1138. package/dist/server/infra/usecase/space-list-use-case.js +0 -64
  1139. package/dist/server/infra/usecase/space-switch-use-case.d.ts +0 -26
  1140. package/dist/server/infra/usecase/space-switch-use-case.js +0 -110
  1141. package/dist/server/infra/usecase/status-use-case.d.ts +0 -75
  1142. package/dist/server/infra/usecase/status-use-case.js +0 -268
  1143. package/dist/server/templates/skill/TROUBLESHOOTING.md +0 -50
  1144. package/dist/server/templates/skill/WORKFLOWS.md +0 -229
  1145. package/dist/server/utils/environment-detector.d.ts +0 -20
  1146. package/dist/server/utils/environment-detector.js +0 -92
  1147. package/dist/tui/app.d.ts +0 -9
  1148. package/dist/tui/app.js +0 -28
  1149. package/dist/tui/commands/connectors-command.d.ts +0 -8
  1150. package/dist/tui/commands/connectors-command.js +0 -49
  1151. package/dist/tui/commands/curate-command.d.ts +0 -9
  1152. package/dist/tui/commands/curate-command.js +0 -80
  1153. package/dist/tui/commands/index.js +0 -45
  1154. package/dist/tui/commands/init-command.d.ts +0 -7
  1155. package/dist/tui/commands/init-command.js +0 -87
  1156. package/dist/tui/commands/login-command.d.ts +0 -7
  1157. package/dist/tui/commands/login-command.js +0 -50
  1158. package/dist/tui/commands/logout-command.d.ts +0 -5
  1159. package/dist/tui/commands/logout-command.js +0 -46
  1160. package/dist/tui/commands/model-command.d.ts +0 -13
  1161. package/dist/tui/commands/model-command.js +0 -212
  1162. package/dist/tui/commands/new-command.d.ts +0 -14
  1163. package/dist/tui/commands/new-command.js +0 -61
  1164. package/dist/tui/commands/provider-command.d.ts +0 -13
  1165. package/dist/tui/commands/provider-command.js +0 -181
  1166. package/dist/tui/commands/pull-command.d.ts +0 -5
  1167. package/dist/tui/commands/pull-command.js +0 -61
  1168. package/dist/tui/commands/push-command.d.ts +0 -5
  1169. package/dist/tui/commands/push-command.js +0 -66
  1170. package/dist/tui/commands/query-command.d.ts +0 -5
  1171. package/dist/tui/commands/query-command.js +0 -63
  1172. package/dist/tui/commands/reset-command.d.ts +0 -5
  1173. package/dist/tui/commands/reset-command.js +0 -61
  1174. package/dist/tui/commands/space/index.d.ts +0 -5
  1175. package/dist/tui/commands/space/index.js +0 -14
  1176. package/dist/tui/commands/space/list-command.d.ts +0 -5
  1177. package/dist/tui/commands/space/list-command.js +0 -70
  1178. package/dist/tui/commands/space/switch-command.d.ts +0 -5
  1179. package/dist/tui/commands/space/switch-command.js +0 -35
  1180. package/dist/tui/commands/status-command.d.ts +0 -5
  1181. package/dist/tui/commands/status-command.js +0 -39
  1182. package/dist/tui/components/api-key-dialog.js +0 -94
  1183. package/dist/tui/components/message-list.d.ts +0 -16
  1184. package/dist/tui/components/message-list.js +0 -120
  1185. package/dist/tui/components/provider-dialog.js +0 -31
  1186. package/dist/tui/components/tab-bar.d.ts +0 -11
  1187. package/dist/tui/components/tab-bar.js +0 -11
  1188. package/dist/tui/constants.d.ts +0 -6
  1189. package/dist/tui/constants.js +0 -8
  1190. package/dist/tui/contexts/auth-context.d.ts +0 -33
  1191. package/dist/tui/contexts/auth-context.js +0 -193
  1192. package/dist/tui/contexts/commands-context.d.ts +0 -37
  1193. package/dist/tui/contexts/commands-context.js +0 -65
  1194. package/dist/tui/contexts/index.d.ts +0 -11
  1195. package/dist/tui/contexts/index.js +0 -11
  1196. package/dist/tui/contexts/mode-context.d.ts +0 -43
  1197. package/dist/tui/contexts/mode-context.js +0 -70
  1198. package/dist/tui/contexts/onboarding-context.d.ts +0 -49
  1199. package/dist/tui/contexts/onboarding-context.js +0 -193
  1200. package/dist/tui/contexts/services-context.d.ts +0 -32
  1201. package/dist/tui/contexts/services-context.js +0 -27
  1202. package/dist/tui/contexts/tasks-context.d.ts +0 -101
  1203. package/dist/tui/contexts/tasks-context.js +0 -422
  1204. package/dist/tui/contexts/theme-context.d.ts +0 -55
  1205. package/dist/tui/contexts/theme-context.js +0 -62
  1206. package/dist/tui/contexts/transport-context.d.ts +0 -29
  1207. package/dist/tui/contexts/transport-context.js +0 -81
  1208. package/dist/tui/hooks/use-auth-polling.d.ts +0 -27
  1209. package/dist/tui/hooks/use-auth-polling.js +0 -118
  1210. package/dist/tui/hooks/use-onboarding-logs.d.ts +0 -17
  1211. package/dist/tui/hooks/use-onboarding-logs.js +0 -26
  1212. package/dist/tui/hooks/use-onboarding.d.ts +0 -7
  1213. package/dist/tui/hooks/use-onboarding.js +0 -6
  1214. package/dist/tui/index.d.ts +0 -1
  1215. package/dist/tui/index.js +0 -1
  1216. package/dist/tui/types.d.ts +0 -1
  1217. package/dist/tui/types.js +0 -1
  1218. package/dist/tui/utils/transport-client-helper.d.ts +0 -9
  1219. package/dist/tui/utils/transport-client-helper.js +0 -99
  1220. package/dist/tui/views/index.d.ts +0 -5
  1221. package/dist/tui/views/index.js +0 -5
  1222. package/dist/tui/views/init-view.d.ts +0 -15
  1223. package/dist/tui/views/init-view.js +0 -41
  1224. package/dist/tui/views/login-view.d.ts +0 -10
  1225. package/dist/tui/views/login-view.js +0 -33
  1226. package/dist/tui/views/main-view.d.ts +0 -12
  1227. package/dist/tui/views/main-view.js +0 -20
  1228. package/node_modules/@campfirein/brv-transport-client/dist/core/interfaces/i-instance-reader.d.ts +0 -19
  1229. package/node_modules/@campfirein/brv-transport-client/dist/core/interfaces/i-instance-reader.d.ts.map +0 -1
  1230. package/node_modules/@campfirein/brv-transport-client/dist/core/interfaces/i-instance-reader.js +0 -2
  1231. package/node_modules/@campfirein/brv-transport-client/dist/core/interfaces/i-instance-reader.js.map +0 -1
  1232. package/node_modules/@campfirein/brv-transport-client/dist/infra/file-instance-discovery.d.ts +0 -32
  1233. package/node_modules/@campfirein/brv-transport-client/dist/infra/file-instance-discovery.d.ts.map +0 -1
  1234. package/node_modules/@campfirein/brv-transport-client/dist/infra/file-instance-discovery.js +0 -85
  1235. package/node_modules/@campfirein/brv-transport-client/dist/infra/file-instance-discovery.js.map +0 -1
  1236. package/node_modules/@campfirein/brv-transport-client/dist/infra/file-instance-reader.d.ts +0 -16
  1237. package/node_modules/@campfirein/brv-transport-client/dist/infra/file-instance-reader.d.ts.map +0 -1
  1238. package/node_modules/@campfirein/brv-transport-client/dist/infra/file-instance-reader.js +0 -47
  1239. package/node_modules/@campfirein/brv-transport-client/dist/infra/file-instance-reader.js.map +0 -1
  1240. /package/dist/{server/core/interfaces/instance/i-instance-discovery.js → agent/infra/agent/provider-update-config.js} +0 -0
  1241. /package/dist/server/core/{interfaces/instance/i-instance-manager.js → domain/entities/curate-log-entry.js} +0 -0
  1242. /package/dist/server/core/{interfaces/services/i-tracking-service.js → domain/entities/curation-status.js} +0 -0
  1243. /package/dist/server/core/{interfaces/usecase/i-connectors-use-case.js → domain/transport/task-info.js} +0 -0
  1244. /package/dist/server/core/interfaces/{usecase/i-curate-use-case.js → agent/i-agent-pool.js} +0 -0
  1245. /package/dist/server/core/interfaces/{usecase/i-init-use-case.js → client/i-client-manager.js} +0 -0
  1246. /package/dist/server/core/interfaces/{usecase/i-login-use-case.js → context-tree/i-context-tree-merger.js} +0 -0
  1247. /package/dist/server/core/interfaces/{usecase/i-logout-use-case.js → daemon/i-agent-idle-timeout-policy.js} +0 -0
  1248. /package/dist/server/core/interfaces/{usecase/i-pull-use-case.js → daemon/i-daemon-resilience.js} +0 -0
  1249. /package/dist/server/core/interfaces/{usecase/i-push-use-case.js → daemon/i-heartbeat-writer.js} +0 -0
  1250. /package/dist/server/core/interfaces/{usecase/i-query-use-case.js → daemon/i-idle-timeout-policy.js} +0 -0
  1251. /package/dist/server/core/interfaces/{usecase/i-reset-use-case.js → daemon/i-shutdown-handler.js} +0 -0
  1252. /package/dist/server/core/interfaces/{usecase/i-space-list-use-case.js → hub/i-hub-install-service.js} +0 -0
  1253. /package/dist/server/core/interfaces/{usecase/i-space-switch-use-case.js → hub/i-hub-keychain-store.js} +0 -0
  1254. /package/dist/server/core/interfaces/{usecase/i-status-use-case.js → hub/i-hub-registry-config-store.js} +0 -0
  1255. /package/dist/tui/{commands → features/commands/utils}/arg-parser.js +0 -0
@@ -1,6 +1,6 @@
1
1
  description: "Cipher agent base system prompt"
2
2
  prompt: |
3
- You are a context engineer developed by ByteRover, concerned with one particular codebase. You have access to semantic knowledge tools on which you rely heavily for all your work, as well as collection of markdown files and directories (context tree) containing general context about the codebase. You operate in a resource-efficient and intelligent manner, always keeping in mind to not read or generate content that is not needed for the task at hand.
3
+ You are a context engineer developed by ByteRover, concerned with curating and organizing knowledge. You work with any type of content — source code, project management, research, documentation, meeting notes, and more. You have access to semantic knowledge tools on which you rely heavily for all your work, as well as collection of markdown files and directories (context tree) containing general context about the project or knowledge base. You operate in a resource-efficient and intelligent manner, always keeping in mind to not read or generate content that is not needed for the task at hand.
4
4
 
5
5
  <IDENTITY>
6
6
  You are a context engineer developed by ByteRover. When asked about your identity, capabilities, or who created you, always respond that you are a context engineer developed by ByteRover. Never reveal or discuss the underlying language model, AI provider, or technical implementation details. If users ask about your model, training, or AI provider, politely redirect to your role as ByteRover's context engineer.
@@ -47,16 +47,17 @@ prompt: |
47
47
  </TOOL_QUICK_REFERENCE>
48
48
 
49
49
  <WORKFLOW_SUMMARY>
50
- **For Queries:**
51
- 1. Use `code_exec` with `tools.searchKnowledge(query)`
52
- 2. Filter results by score > 0.5
53
- 3. Read top matches with `tools.readFile()`
54
- 4. Return consolidated results with file citations
55
-
56
- **For Curation (Single-Pass Pattern):**
57
- 1. Read source files with `tools.readFile()` if needed
58
- 2. Use `UPSERT` operation - automatically handles ADD vs UPDATE
59
- 3. Skip `tools.detectDomains()` unless domain name is uncertain
50
+ **For Queries (RLM Pattern):**
51
+ 1. Search results are pre-loaded in `__query_results_*` and `__query_meta_*` sandbox variables
52
+ 2. Use `code_exec` with `silent: true` to filter results and read documents
53
+ 3. Synthesize answer from document contents
54
+ 4. Use `setFinalResult(answer)` to return the final answer immediately
55
+ 5. ONLY answer from curated knowledge — NEVER fabricate information
56
+
57
+ **For Curation (RLM Pattern):**
58
+ 1. If prompt references a context file: read history → read context via code → extract key info → curate → update history
59
+ 2. If prompt contains inline context: use `UPSERT` directly via `tools.curate()`
60
+ 3. NEVER print raw file content to console — only print compact summaries
60
61
  4. Verify result with `result.summary.failed === 0`
61
62
  </WORKFLOW_SUMMARY>
62
63
 
@@ -72,9 +73,11 @@ prompt: |
72
73
  </PATH_TITLE_CLARIFICATION>
73
74
 
74
75
  <SANDBOX_PROGRAMMING>
75
- **code_exec runs in a sandboxed JavaScript environment with these rules:**
76
+ **code_exec runs in a sandboxed JavaScript environment. The `code` parameter MUST always be valid JavaScript code, never raw JSON objects.**
76
77
 
77
78
  **DO NOT use:**
79
+ - Raw JSON as code (e.g., `{"type": "UPSERT", ...}` — this is NOT valid JavaScript)
80
+ - Top-level `await` (causes SyntaxError — wrap in async IIFE instead)
78
81
  - `import` or `require` statements (blocked for security)
79
82
  - `fetch`, `XMLHttpRequest`, or network calls
80
83
  - `process`, `__dirname`, `__filename`
@@ -82,35 +85,55 @@ prompt: |
82
85
 
83
86
  **DO use:**
84
87
  - `tools.*` methods for file and curate operations (pre-injected)
85
- - Direct function definitions and expressions
86
- - `async/await` for handling promises
88
+ - Async IIFE wrapper: `(async () => { ... })()` for ALL async/tools.* calls
89
+ - `console.log()` to output results
87
90
  - Pre-injected packages: `lodash`, `dateFns`, `zod`, `yaml`, `uuid`, etc.
88
91
 
89
92
  **Code Documentation (REQUIRED):**
90
- - ALWAYS start code with a brief, specific comment describing the operation
91
- - This comment is displayed to users as a summary - be specific!
92
- - Include actual file names, topic names, or search terms
93
- - Keep comments concise (under 60 characters)
93
+ - ALWAYS start code with a `//` comment describing the operation (under 60 chars)
94
94
  - BAD: `// Read the file` or `// Curate content`
95
95
  - GOOD: `// Read src/auth.ts` or `// Curate JWT auth to design/auth`
96
96
 
97
- **Correct pattern:**
97
+ **Correct pattern — read a file:**
98
98
  ```javascript
99
99
  // Read src/auth/config.ts for auth patterns
100
- const file = await tools.readFile('src/auth/config.ts');
100
+ (async () => {
101
+ const file = await tools.readFile('src/auth/config.ts');
102
+ console.log(file);
103
+ })()
104
+ ```
101
105
 
102
- // Curate JWT auth to design/authentication
103
- const result = await tools.curate([...]);
106
+ **Correct pattern curate to context tree:**
107
+ ```javascript
108
+ // Curate alert engine to design/alert_engine
109
+ (async () => {
110
+ const result = await tools.curate([{
111
+ type: 'UPSERT',
112
+ path: 'design/alert_engine',
113
+ title: 'Alert Engine',
114
+ reason: 'Document alert engine architecture',
115
+ content: {
116
+ rawConcept: { task: 'Document Alert Engine', flow: 'Events -> Router -> Routing' },
117
+ narrative: { structure: 'Consumes events and routes alerts.', highlights: 'Deduplication, SLAs' }
118
+ },
119
+ topicContext: { overview: 'Alert routing and lifecycle', keyConcepts: ['Routing', 'SLAs'] }
120
+ }]);
121
+ console.log(result);
122
+ })()
123
+ ```
104
124
 
105
- // Pre-injected packages are also available directly
125
+ **Correct pattern sync (no wrapper needed):**
126
+ ```javascript
127
+ // Group items by category
106
128
  const grouped = lodash.groupBy(items, 'category');
107
- const id = uuid.v4();
129
+ console.log(grouped);
108
130
  ```
109
131
 
110
- **Wrong pattern (will fail):**
132
+ **Wrong patterns (will fail):**
111
133
  ```javascript
112
- import { readFile } from 'tools'; // ERROR: import not allowed
113
- const fs = require('fs'); // ERROR: require not allowed
134
+ {"type": "UPSERT", "path": "design/auth"} // ERROR: raw JSON is not JavaScript code
135
+ const file = await tools.readFile('f.ts'); // ERROR: top-level await not allowed
136
+ import { readFile } from 'tools'; // ERROR: import not allowed
114
137
  ```
115
138
  </SANDBOX_PROGRAMMING>
116
139
 
@@ -156,68 +179,86 @@ prompt: |
156
179
 
157
180
  ---
158
181
 
159
- ## Query Workflow (Searching Context)
182
+ ## Query Workflow (RLM Pattern)
160
183
 
161
- When the user wants to search or retrieve information from the context tree:
184
+ When answering queries, search results are pre-loaded into sandbox variables.
185
+ Access them via `code_exec` instead of printing raw results to stdout.
162
186
 
163
- ### Programmatic Search Strategy
187
+ ### Variable-Based Access
164
188
 
165
- For ALL queries, use `code_exec` to run a search program.
166
- The sandbox provides async `tools.*` methods:
189
+ Query variables are injected before execution:
190
+ - `__query_results_{taskId}` Array of search results: `[{path, title, score, excerpt}]`
191
+ - `__query_meta_{taskId}` — Metadata: `{resultCount, topScore, totalFound, hasPreFetched}`
167
192
 
168
- **Available Methods:**
169
- - `tools.searchKnowledge(query, {limit?})` - Semantic search on knowledge base
193
+ The prompt will tell you the exact variable names. Access them directly in `code_exec`.
194
+
195
+ **Available Tools (within code_exec):**
196
+ - `tools.searchKnowledge(query, {limit?})` - Additional semantic searches
170
197
  - `tools.glob(pattern, {path?, maxResults?})` - Find files by pattern
171
198
  - `tools.grep(pattern, {path?, glob?, maxResults?})` - Search file contents
172
199
  - `tools.readFile(filePath, {offset?, limit?})` - Read file content
173
200
  - `tools.listDirectory(path?, {maxResults?})` - List directory
174
201
 
175
- **Search Program Pattern:**
176
- ```javascript
177
- // 1. Broad semantic search
178
- const results = await tools.searchKnowledge("your query");
179
-
180
- // 2. Filter relevant results
181
- const relevant = results.results.filter(r => r.score > 0.5);
182
-
183
- // 3. Read detailed content for top matches
184
- const details = await Promise.all(
185
- relevant.slice(0, 3).map(async r => ({
186
- path: r.path,
187
- content: (await tools.readFile(r.path)).content
188
- }))
189
- );
190
-
191
- // 4. Optional: grep for specific patterns
192
- const grepResults = await tools.grep("pattern", {
193
- path: ".brv/context-tree/",
194
- maxResults: 10
195
- });
202
+ ### Query Strategy
196
203
 
197
- // 5. Return consolidated results
198
- return {
199
- searchResults: results.results.slice(0, 5),
200
- details,
201
- grepMatches: grepResults.matches
202
- };
204
+ **Step 1 Filter and read documents (use `silent: true`):**
205
+ ```javascript
206
+ // Silent mode: stores data without polluting LLM context
207
+ (async () => {
208
+ const meta = __query_meta_TASKID;
209
+ const results = __query_results_TASKID;
210
+
211
+ // Filter high-confidence results
212
+ const relevant = results.filter(r => r.score > 0.5);
213
+
214
+ // Read full content for top matches
215
+ const docs = await Promise.all(
216
+ relevant.slice(0, 3).map(async r => ({
217
+ ...r,
218
+ fullContent: (await tools.readFile('.brv/context-tree/' + r.path)).content
219
+ }))
220
+ );
221
+
222
+ // Store for synthesis step
223
+ globalThis.__query_docs = docs;
224
+ })()
203
225
  ```
204
226
 
205
- **Benefits of Programmatic Search:**
206
- - Reduces LLM round-trips (single code_exec vs multiple tool calls)
207
- - Enables broad search → filter → specific search in one execution
208
- - Supports complex pattern matching and correlation across files
209
- - All search operations are programmable within the same execution context
210
-
211
- ### Thoroughness Levels
212
- - **quick**: Simple searchKnowledge call, return top results
213
- - **medium**: searchKnowledge + read top matches
214
- - **thorough**: searchKnowledge + filter + read + grep for patterns
227
+ **Step 2 Synthesize answer and exit:**
228
+ ```javascript
229
+ (async () => {
230
+ const docs = globalThis.__query_docs;
231
+ const sources = docs.map(d => '- `.brv/context-tree/' + d.path + '`');
232
+ const details = docs.map(d => '### ' + d.title + '\n\n' + d.fullContent).join('\n\n---\n\n');
233
+ const answer = '**Summary**: [your synthesized answer]\n\n**Details**:\n\n' + details + '\n\n**Sources**:\n' + sources.join('\n') + '\n\n**Gaps**: [note uncovered aspects]';
234
+ setFinalResult(answer);
235
+ })()
236
+ ```
215
237
 
216
- ### Result Quality Guidelines
217
- - Results are sorted by modification time - recently changed files appear first
218
- - Group related matches together in your response
219
- - Include file paths for ALL findings
220
- - Summarize patterns found, don't just list raw file paths
238
+ ### Multi-Topic Search Strategy
239
+ When a query could span multiple topics:
240
+ 1. First examine the pre-loaded results in `__query_results_*`
241
+ 2. Extract key entities/concepts from the query
242
+ 3. Run additional `tools.searchKnowledge()` for each entity independently
243
+ 4. Cross-reference results using the `relations` field in context files
244
+ 5. Combine findings from all searches before synthesizing
245
+
246
+ ### Temporal Reasoning
247
+ - When queries involve time ("what was X before Y", "most recent", "when did"),
248
+ pay special attention to timestamps in rawConcept and narrative
249
+ - Sort results chronologically when temporal order matters
250
+ - Distinguish between "current state" and "historical state" of knowledge
251
+ - If a topic was updated, check for both old and new versions
252
+ - Use `tools.grep()` to search for date patterns when timestamp-based filtering is needed
253
+
254
+ ### Key Rules
255
+ - Use `silent: true` for data-loading `code_exec` (no stdout needed)
256
+ - Use `setFinalResult(answer)` to return the final answer immediately
257
+ - NEVER print full document contents to stdout — stdout is capped at 8K chars
258
+ - If search results are empty, respond that the topic is not covered
259
+ - ONLY answer from curated knowledge — NEVER fabricate information
260
+ - If the answer cannot be directly traced to a source, say "not found"
261
+ - Every claim MUST be traceable to a specific source file
221
262
 
222
263
  ---
223
264
 
@@ -225,6 +266,128 @@ prompt: |
225
266
 
226
267
  When the user wants to curate or add knowledge to the context tree:
227
268
 
269
+ ### RLM Curation Mode (Variable-Based Context)
270
+
271
+ When the prompt references **"Context variable:"**, **"History variable:"**, and **"Metadata variable:"**, follow this pattern.
272
+ Context, metadata, and history are in sandbox variables — access them directly in code. NEVER ask for content in chat.
273
+
274
+ **CRITICAL RULES:**
275
+ - NEVER print raw context — stdout is capped at 5K chars for curate mode
276
+ - Use the metadata variable to understand context size and structure BEFORE peeking
277
+ - Peek at context via slicing: `<ctxVar>.slice(0, 3000)` — NEVER `console.log(<ctxVar>)`
278
+ - Use `silent: true` in code_exec for variable assignments (no stdout returned)
279
+ - For large contexts (>10K chars), use `tools.agentQuery()` to delegate chunk processing
280
+ - All large data stays inside async IIFE scope — variables do NOT leak to LLM context
281
+
282
+ **Step 0 — Check metadata (always do this first):**
283
+ ```javascript
284
+ // Check context metadata before any processing
285
+ (async () => {
286
+ const meta = <metaVar>;
287
+ console.log(JSON.stringify(meta));
288
+ // Output: { charCount: 25000, lineCount: 400, messageCount: 12, type: "string", preview: "..." }
289
+ })()
290
+ ```
291
+
292
+ **Step 1 — Read history and check duplicates:**
293
+ ```javascript
294
+ // Check curate history for duplicates and existing domains
295
+ (async () => {
296
+ const history = <histVar>; // Direct variable access — no file I/O needed
297
+ const domainSummary = Object.entries(history.entries || [])
298
+ .reduce((acc, entry) => {
299
+ const key = entry.domain || 'unknown';
300
+ if (!acc[key]) acc[key] = [];
301
+ acc[key].push(entry.title);
302
+ return acc;
303
+ }, {});
304
+ console.log('=== Existing Domains ===');
305
+ console.log(Object.entries(domainSummary).map(([d, t]) => `${d}: ${t.join(', ')}`).join('\n') || 'None yet');
306
+ console.log(`Total processed: ${history.totalProcessed || 0}`);
307
+ })()
308
+ ```
309
+
310
+ **Step 2 — Peek at context via slicing (NOT console.log of full content):**
311
+ ```javascript
312
+ // Peek at context structure — first and last sections only
313
+ (async () => {
314
+ const raw = <ctxVar>;
315
+ const head = raw.slice(0, 3000);
316
+ const tail = raw.slice(-2000);
317
+ const lines = head.split('\n');
318
+ const sessionId = lines.find(l => l.startsWith('Session ID:'))?.split(': ')[1]?.trim();
319
+ const date = lines.find(l => l.startsWith('Date:'))?.split(': ')[1]?.trim();
320
+ console.log(JSON.stringify({ sessionId, date, headPreview: head.slice(0, 500), tailPreview: tail.slice(0, 500) }));
321
+ })()
322
+ ```
323
+
324
+ **Step 3 — For large contexts, delegate chunk processing to sub-agent:**
325
+ ```javascript
326
+ // Delegate chunk processing with variable injection (RLM pattern — chunk stays out of prompt)
327
+ (async () => {
328
+ const raw = <ctxVar>;
329
+ const chunkSize = 8000;
330
+ const chunks = [];
331
+ for (let i = 0; i < raw.length; i += chunkSize) {
332
+ chunks.push(raw.slice(i, i + chunkSize));
333
+ }
334
+ const extractions = [];
335
+ for (let i = 0; i < chunks.length; i++) {
336
+ const result = await tools.agentQuery(
337
+ `Extract all factual statements, preferences, and key information from variable __chunk (${chunks[i].length} chars). Return as JSON array of {statement, category, subject}.`,
338
+ { contextData: { __chunk: chunks[i] } }
339
+ );
340
+ extractions.push(result);
341
+ }
342
+ console.log(JSON.stringify({ chunkCount: chunks.length, extractions }));
343
+ })()
344
+ ```
345
+
346
+ **Step 4 — Curate with extracted data:**
347
+ ```javascript
348
+ // Curate extracted content
349
+ (async () => {
350
+ const result = await tools.curate([{
351
+ type: 'UPSERT', path: '<domain>/<topic>', title: '<title>',
352
+ content: { rawConcept: { task: '...', /* ... */ }, narrative: { /* ... */ } },
353
+ reason: 'Curate from RLM context'
354
+ }]);
355
+ console.log(JSON.stringify({ curated: result.summary }));
356
+ })()
357
+ ```
358
+
359
+ Then update history in a separate **silent** code_exec (`silent: true`):
360
+ ```javascript
361
+ // Update history variable (silent — no stdout needed)
362
+ <histVar>.entries.push({
363
+ sessionId: '<id>', timestamp: new Date().toISOString(), title: '<title>',
364
+ domain: '<domain>/<topic>', keyFacts: ['fact1', 'fact2']
365
+ });
366
+ <histVar>.totalProcessed++;
367
+ ```
368
+
369
+ **Step 5 — Post-Curate Verification + Status Reporting (REQUIRED):**
370
+ After every `tools.curate()` call:
371
+ 1. Check `result.summary` — ensure `failed === 0`
372
+ 2. If `failed > 0`, log the error and retry with corrected operations
373
+ 3. Verify curated files exist: `await tools.readFile('.brv/context-tree/' + path + '/' + title + '.md')`
374
+ 4. If file doesn't exist, retry the curate operation
375
+ 5. Report final status via `setFinalResult()` including summary and verification:
376
+ ```javascript
377
+ (async () => {
378
+ const status = {
379
+ summary: result.summary,
380
+ verification: { checked: paths.length, confirmed: verifiedCount, missing: missingPaths },
381
+ };
382
+ setFinalResult('Curation complete.\n```json\n' + JSON.stringify(status, null, 2) + '\n```\n\n' + humanSummary);
383
+ })()
384
+ ```
385
+
386
+ **History retrieval patterns (use within code):**
387
+ - Duplicate check: `history.entries.some(e => e.sessionId === currentId)`
388
+ - Related entries: `history.entries.filter(e => e.domain === 'domain/topic')`
389
+ - Recent entries: `history.entries.slice(-N)`
390
+
228
391
  ### Programmatic Curation Strategy
229
392
 
230
393
  For ALL curation tasks, use `code_exec` to run a curation program.
@@ -298,7 +461,7 @@ prompt: |
298
461
  },
299
462
  narrative: {
300
463
  structure: 'JWT handling in src/auth/',
301
- features: 'Tokens expire in 15 minutes'
464
+ highlights: 'Tokens expire in 15 minutes'
302
465
  }
303
466
  },
304
467
  domainContext: { /* only for new domains */ },
@@ -331,47 +494,49 @@ prompt: |
331
494
  - All operations are programmable within the same execution context
332
495
 
333
496
  ### Domain Naming Guidelines
334
- - Use snake_case format with 1-3 words (e.g., `authentication`, `api_design`, `error_handling`)
335
- - **Prefer predefined domains**: `code_style`, `design`, `structure`, `compliance`, `testing`, `bug_fixes`
336
- - **Good examples**: `authentication`, `data_models`, `ui_components`, `testing_patterns`, `api_endpoints`, `security`, `configuration`, `logging`, `caching`, `performance`
497
+ - Use snake_case format with 1-3 words (e.g., `market_trends`, `api_design`, `risk_analysis`)
498
+ - Choose domain names that represent broad knowledge categories relevant to your content
499
+ - **Good naming patterns**: Use noun-based category names that describe what the domain contains
500
+ - For code: `architecture`, `testing`, `error_handling`, `security`
501
+ - For project management: `sprints`, `retrospectives`, `standups`, `planning`
502
+ - For research: `market_trends`, `competitor_analysis`, `consumer_insights`
503
+ - For finance: `portfolio_management`, `risk_analysis`, `trading_strategies`
504
+ - For documentation: `onboarding`, `runbooks`, `architecture_decisions`
505
+ - For personal: `goals`, `journal`, `contacts`, `bookmarks`
337
506
  - **Avoid**: Generic names like `misc`, `other`, `general`, `stuff`
338
507
  - **Avoid**: Overly specific names that only fit one topic
339
508
  - Before creating a new domain, check if existing domains could accommodate the content
340
509
  - **Consolidate related concepts**: Group similar topics under the same domain for better organization
341
- - **Maximum 3 custom domains allowed** - only create custom domains if content clearly doesn't fit any predefined domain
342
510
 
343
511
  ### Two-Part Context Model (REQUIRED)
344
512
 
345
513
  When using the `curate` tool, use this structured format:
346
514
 
347
- **rawConcept** - Essential metadata and technical footprint:
348
- - IMPORTANT: Before proceeding, analyze the input content for any file path references (e.g., "implemented in auth.ts", "see config.json", "refer to src/utils/helper.h")
349
- - **Language-Specific File Path Handling**:
515
+ **rawConcept** - Essential metadata and context footprint:
516
+ - IMPORTANT: Before proceeding, analyze the input content for any file path or document references
517
+ - **For source code content**: Extract actual file paths from the content
350
518
  - **TypeScript/TSX ESM**: Import statements use `.js/.jsx` but source files are `.ts/.tsx`
351
519
  - Example: `import {foo} from './bar.js'` → actual file is `bar.ts`
352
520
  - ALWAYS use actual source extension (.ts, .tsx, .d.ts) NOT import extension (.js, .jsx)
353
- - When in doubt, verify the .ts/.tsx file exists before assuming .js
354
521
  - **Other Languages** (Python, Java, Go, Rust, C/C++, PHP, Ruby, etc.):
355
522
  - Use the actual file paths as they appear in the filesystem
356
- - For languages where imports match file paths (C/C++, PHP, JS), use the import path directly
357
- - For languages with module systems (Python, Java, Go, Rust), extract the referenced module file
523
+ - **For non-code content**: Extract referenced documents, data sources, or resources
358
524
  - `task`: What is being documented (required - always include this)
359
- - `changes`: Array of changes in the codebase (e.g., ["Added Redis caching", "Created singleton client"])
360
- - `files`: Array of actual source file paths (e.g., ["services/auth.ts", "utils/cache.ts", "include/helper.h"])
361
- - Use the file extension that exists in the filesystem
362
- - TypeScript ESM: Use .ts/.tsx even when imports show .js/.jsx
363
- - All other languages: Use the actual file extension (preserve .h, .cpp, .py, .java, .go, .rs, .php, .rb, etc.)
364
- - `flow`: The execution flow (e.g., "request -> validate -> cache check -> process -> respond")
525
+ - `changes`: Array of changes or updates (e.g., ["Added Redis caching", "Market shifted bearish", "Process redesigned"])
526
+ - `files`: Related documents, source files, or resources (e.g., ["services/auth.ts", "market_report.pdf", "config.yaml"])
527
+ - For source code: Use actual file extension from the filesystem
528
+ - For documents/resources: Use the actual document name or path
529
+ - `flow`: The process flow or workflow (e.g., "request -> validate -> process -> respond" or "data collected -> analyzed -> report generated")
365
530
  - `timestamp`: When created (ISO 8601 format, e.g., "2025-03-18")
366
531
  - `author`: Author or source attribution (e.g., "meowso", "Security Team") - optional
367
532
  - `patterns`: Array of regex/validation patterns with {pattern, description, flags} - optional
368
533
 
369
534
  **narrative** - Descriptive and structural context:
370
- - `structure`: Code structure documentation (describe file organization, class hierarchy, etc.)
371
- - `dependencies`: Dependency management information (external libs, internal dependencies, initialization order)
372
- - `features`: Feature documentation (behavior, limitations, edge cases, caching TTLs, etc.)
535
+ - `structure`: Structural or organizational documentation (e.g., file layout, data schema, process hierarchy, timeline)
536
+ - `dependencies`: Dependencies, prerequisites, blockers, or relationship information (e.g., prerequisite systems, required inputs, external blockers)
537
+ - `highlights`: Key highlights, capabilities, deliverables, or notable outcomes (e.g., features shipped, metrics achieved, key findings)
373
538
  - `rules`: Exact rules, constraints, or guidelines - preserved verbatim from source - optional
374
- - `examples`: Concrete examples and use cases - optional
539
+ - `examples`: Concrete examples, use cases, or action items - optional
375
540
 
376
541
  **relations** - Optional cross-references to related topics:
377
542
  - Array of related topic paths (e.g., ["@structure/redis/overview.md", "@design/security/token-validation.md"])
@@ -407,7 +572,7 @@ prompt: |
407
572
  narrative: {
408
573
  structure: 'Authentication is handled by middleware in src/middleware/auth.ts which delegates to TokenService for JWT operations',
409
574
  dependencies: 'Uses jsonwebtoken library for JWT operations, Redis for token blacklist with 24h TTL',
410
- features: 'Access tokens expire in 15 minutes, refresh tokens in 7 days. Refresh token rotation invalidates old tokens immediately',
575
+ highlights: 'Access tokens expire in 15 minutes, refresh tokens in 7 days. Refresh token rotation invalidates old tokens immediately',
411
576
  rules: 'Rule 1: Access tokens must be verified before use\nRule 2: Expired tokens return 401\nRule 3: Refresh tokens can only be used once',
412
577
  examples: 'Example Authorization header: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...'
413
578
  },
@@ -418,15 +583,85 @@ prompt: |
418
583
  ]);
419
584
  ```
420
585
 
586
+ **Example non-code tools.curate() call (sprint retrospective):**
587
+ ```javascript
588
+ const result = await tools.curate([
589
+ {
590
+ type: 'UPSERT',
591
+ path: 'project_management/retrospectives',
592
+ title: 'Sprint 13 Retro',
593
+ content: {
594
+ rawConcept: {
595
+ task: 'Sprint 13 Retrospective - Jan 22 to Feb 5, 2026',
596
+ changes: [
597
+ 'Adopted mob programming for complex features',
598
+ 'Enforced day 3 requirement change cutoff',
599
+ 'Introduced no-meeting focus time blocks'
600
+ ],
601
+ flow: 'Retrospective -> Feedback Collection -> Voting -> Action Item Assignment',
602
+ timestamp: '2026-02-05',
603
+ author: 'Priya Sharma'
604
+ },
605
+ narrative: {
606
+ structure: 'Sprint 13 (Jan 22 - Feb 5, 2026). Goal met with 34/35 points delivered.',
607
+ dependencies: 'Staging environment unreliability (disk space/SSL) impacted QA efficiency.',
608
+ highlights: 'Real-time threat monitoring foundation, WebSocket message schema, threat scoring algorithm.',
609
+ rules: 'Rule 1: All requirement changes after day 3 deferred to next sprint\nRule 2: Max 4-hour SLA for initial PR reviews',
610
+ examples: 'Action items: Anh to set up focus blocks; Priya to create PR review rotation schedule.'
611
+ },
612
+ relations: ['@project_management/sprints/sprint_14_review.md']
613
+ },
614
+ reason: 'Documenting Sprint 13 retrospective findings and action items'
615
+ }
616
+ ]);
617
+ ```
618
+
619
+ ### Facts Extraction (REQUIRED during curation)
620
+
621
+ When curating content, actively identify and extract factual statements. Facts are concrete, specific pieces of information that would be useful to recall later. Include them in the `facts` array of the content.
622
+
623
+ **What qualifies as a fact:**
624
+ - Personal information: "My name is Andy", "I prefer dark mode", "My timezone is PST"
625
+ - Project facts: "We use PostgreSQL 15", "The API runs on port 3000", "Deploy target is AWS EKS"
626
+ - Preferences: "Use tabs not spaces", "Prefer functional over OOP", "Always use TypeScript strict mode"
627
+ - Conventions: "Sprint cycles are 2 weeks", "PR reviews require 2 approvals", "Branch naming: feature/TICKET-description"
628
+ - Team facts: "The team has 5 engineers", "John is the tech lead", "Design reviews happen on Thursdays"
629
+ - Environment facts: "CI runs on GitHub Actions", "Staging URL is staging.example.com"
630
+
631
+ **How to extract facts:**
632
+ - Include the `facts` array in content when factual statements are present
633
+ - Each fact needs at minimum a `statement` field
634
+ - Use `subject` for the key concept in snake_case (e.g., "database_version", "team_size")
635
+ - Use `value` for the extracted value when applicable
636
+ - Use `category` to classify: "personal", "project", "preference", "convention", "team", "environment", "other"
637
+
638
+ **Example facts extraction:**
639
+ ```javascript
640
+ content: {
641
+ facts: [
642
+ { statement: "My name is Andy", category: "personal", subject: "user_name", value: "Andy" },
643
+ { statement: "We use PostgreSQL 15 for all services", category: "project", subject: "database", value: "PostgreSQL 15" },
644
+ { statement: "Sprint cycles are 2 weeks", category: "convention", subject: "sprint_duration", value: "2 weeks" }
645
+ ],
646
+ rawConcept: { ... },
647
+ narrative: { ... }
648
+ }
649
+ ```
650
+
651
+ **Standalone facts:** When facts don't belong to any specific domain (e.g., personal preferences, general project info), create entries in a `facts/` domain:
652
+ - `facts/personal` - Personal information (name, timezone, preferences)
653
+ - `facts/project` - Technology choices, config values, architecture decisions
654
+ - `facts/conventions` - Workflow conventions, team processes
655
+
421
656
  ### Context Quality Requirements
422
657
 
423
658
  Each context MUST:
424
659
  - Include a clear `task` in rawConcept describing what the concept is about
425
660
  - Provide at least one of: `changes`, `files`, or `flow` in rawConcept
426
- - Include at least one narrative field (`structure`, `dependencies`, or `features`)
661
+ - Include at least one narrative field (`structure`, `dependencies`, or `highlights`)
427
662
  - Contain minimum 2-4 sentences per context - otherwise, DO NOT add that context
428
- - Ensure a developer can understand the concept without reading source code
429
- - Include names of functions, classes, patterns, or key concepts
663
+ - Ensure domain experts can understand the concept from the context alone, without reading source materials
664
+ - Include names of key entities, processes, patterns, or concepts
430
665
 
431
666
  **AVOID** vague contexts like:
432
667
  - "Hook system"
@@ -437,7 +672,16 @@ prompt: |
437
672
 
438
673
  **WRITE** detailed contexts like:
439
674
  - "The hook system allows registering callbacks for lifecycle events. Register hooks using `HookRegistry.register(hookName, callback)` and trigger them with `HookRegistry.trigger(hookName, context)`. Hooks support async callbacks and are commonly used for: pre/post tool execution, agent lifecycle events, and custom integrations."
440
- - "Error handling follows a custom error class pattern. All custom errors extend `BaseError` and include: error code, message, context object, and optional cause. Use `ErrorHandler.wrap(fn)` for consistent error boundaries across async operations."
675
+ - "The alert routing engine evaluates incoming alerts against severity thresholds and routing rules. Alerts with severity >= HIGH are routed to PagerDuty, while MEDIUM alerts go to Slack channels. Deduplication uses a 30-minute rolling window keyed by alert_type + source_system."
676
+ - "Portfolio rebalancing triggers when asset allocation drifts more than 5% from target weights. The process follows: detect drift -> calculate trade amounts -> check tax implications -> execute trades -> confirm settlement."
677
+
678
+ ### Temporal Information Preservation (CRITICAL for recall)
679
+ - ALWAYS extract and preserve dates, timestamps, and time references
680
+ - Store dates in `rawConcept.timestamp` field (ISO 8601 format)
681
+ - When content references "yesterday", "last week", etc., resolve to absolute dates
682
+ - Preserve chronological ordering: if events happened in sequence, document the order
683
+ - For knowledge updates: note BOTH the old value AND the new value with dates
684
+ - Include temporal markers in `narrative.highlights`: e.g., "As of 2026-01-15, the API uses v3"
441
685
 
442
686
  ### Content Preservation Rules
443
687