byterover-cli 3.0.1 → 3.2.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 (196) hide show
  1. package/.env.production +4 -0
  2. package/README.md +17 -0
  3. package/dist/agent/core/domain/tools/constants.d.ts +1 -0
  4. package/dist/agent/core/domain/tools/constants.js +1 -0
  5. package/dist/agent/core/interfaces/cipher-services.d.ts +8 -0
  6. package/dist/agent/core/interfaces/i-cipher-agent.d.ts +1 -0
  7. package/dist/agent/infra/agent/agent-error-codes.d.ts +0 -1
  8. package/dist/agent/infra/agent/agent-error-codes.js +0 -1
  9. package/dist/agent/infra/agent/agent-error.d.ts +0 -1
  10. package/dist/agent/infra/agent/agent-error.js +0 -1
  11. package/dist/agent/infra/agent/agent-schemas.d.ts +8 -0
  12. package/dist/agent/infra/agent/agent-schemas.js +1 -0
  13. package/dist/agent/infra/agent/agent-state-manager.d.ts +1 -3
  14. package/dist/agent/infra/agent/agent-state-manager.js +1 -3
  15. package/dist/agent/infra/agent/base-agent.d.ts +1 -1
  16. package/dist/agent/infra/agent/base-agent.js +1 -1
  17. package/dist/agent/infra/agent/cipher-agent.d.ts +15 -1
  18. package/dist/agent/infra/agent/cipher-agent.js +188 -3
  19. package/dist/agent/infra/agent/index.d.ts +1 -1
  20. package/dist/agent/infra/agent/index.js +1 -1
  21. package/dist/agent/infra/agent/service-initializer.d.ts +3 -3
  22. package/dist/agent/infra/agent/service-initializer.js +14 -8
  23. package/dist/agent/infra/agent/types.d.ts +0 -1
  24. package/dist/agent/infra/file-system/file-system-service.js +6 -5
  25. package/dist/agent/infra/folder-pack/folder-pack-service.d.ts +1 -0
  26. package/dist/agent/infra/folder-pack/folder-pack-service.js +29 -15
  27. package/dist/agent/infra/llm/providers/openai.js +12 -0
  28. package/dist/agent/infra/llm/stream-to-text.d.ts +7 -0
  29. package/dist/agent/infra/llm/stream-to-text.js +14 -0
  30. package/dist/agent/infra/map/abstract-generator.d.ts +22 -0
  31. package/dist/agent/infra/map/abstract-generator.js +67 -0
  32. package/dist/agent/infra/map/abstract-queue.d.ts +67 -0
  33. package/dist/agent/infra/map/abstract-queue.js +218 -0
  34. package/dist/agent/infra/memory/memory-deduplicator.d.ts +44 -0
  35. package/dist/agent/infra/memory/memory-deduplicator.js +88 -0
  36. package/dist/agent/infra/memory/memory-manager.d.ts +1 -0
  37. package/dist/agent/infra/memory/memory-manager.js +6 -5
  38. package/dist/agent/infra/sandbox/curate-service.d.ts +4 -2
  39. package/dist/agent/infra/sandbox/curate-service.js +20 -7
  40. package/dist/agent/infra/sandbox/local-sandbox.d.ts +5 -0
  41. package/dist/agent/infra/sandbox/local-sandbox.js +57 -1
  42. package/dist/agent/infra/sandbox/sandbox-service.js +1 -0
  43. package/dist/agent/infra/sandbox/tools-sdk.d.ts +13 -1
  44. package/dist/agent/infra/sandbox/tools-sdk.js +9 -1
  45. package/dist/agent/infra/session/session-compressor.d.ts +43 -0
  46. package/dist/agent/infra/session/session-compressor.js +296 -0
  47. package/dist/agent/infra/session/session-manager.d.ts +7 -0
  48. package/dist/agent/infra/session/session-manager.js +9 -0
  49. package/dist/agent/infra/tools/implementations/curate-tool.d.ts +3 -2
  50. package/dist/agent/infra/tools/implementations/curate-tool.js +54 -27
  51. package/dist/agent/infra/tools/implementations/expand-knowledge-tool.d.ts +3 -3
  52. package/dist/agent/infra/tools/implementations/expand-knowledge-tool.js +34 -7
  53. package/dist/agent/infra/tools/implementations/ingest-resource-tool.d.ts +17 -0
  54. package/dist/agent/infra/tools/implementations/ingest-resource-tool.js +224 -0
  55. package/dist/agent/infra/tools/implementations/memory-symbol-tree.d.ts +8 -0
  56. package/dist/agent/infra/tools/implementations/search-knowledge-service.d.ts +1 -1
  57. package/dist/agent/infra/tools/implementations/search-knowledge-service.js +392 -106
  58. package/dist/agent/infra/tools/implementations/search-knowledge-tool.js +2 -2
  59. package/dist/agent/infra/tools/implementations/write-file-tool.d.ts +2 -1
  60. package/dist/agent/infra/tools/implementations/write-file-tool.js +16 -2
  61. package/dist/agent/infra/tools/tool-provider.js +1 -0
  62. package/dist/agent/infra/tools/tool-registry.d.ts +3 -0
  63. package/dist/agent/infra/tools/tool-registry.js +16 -5
  64. package/dist/agent/infra/tools/write-guard.d.ts +11 -0
  65. package/dist/agent/infra/tools/write-guard.js +48 -0
  66. package/dist/agent/resources/prompts/system-prompt.yml +9 -0
  67. package/dist/agent/resources/tools/expand_knowledge.txt +4 -0
  68. package/dist/agent/resources/tools/search_knowledge.txt +11 -1
  69. package/dist/oclif/commands/curate/index.js +4 -3
  70. package/dist/oclif/commands/curate/view.js +2 -2
  71. package/dist/oclif/commands/main.js +13 -0
  72. package/dist/oclif/commands/query.js +4 -3
  73. package/dist/oclif/commands/source/add.d.ts +12 -0
  74. package/dist/oclif/commands/source/add.js +42 -0
  75. package/dist/oclif/commands/source/index.d.ts +6 -0
  76. package/dist/oclif/commands/source/index.js +8 -0
  77. package/dist/oclif/commands/source/list.d.ts +6 -0
  78. package/dist/oclif/commands/source/list.js +32 -0
  79. package/dist/oclif/commands/source/remove.d.ts +9 -0
  80. package/dist/oclif/commands/source/remove.js +33 -0
  81. package/dist/oclif/commands/status.d.ts +5 -1
  82. package/dist/oclif/commands/status.js +41 -6
  83. package/dist/oclif/commands/worktree/add.d.ts +12 -0
  84. package/dist/oclif/commands/worktree/add.js +44 -0
  85. package/dist/oclif/commands/worktree/index.d.ts +6 -0
  86. package/dist/oclif/commands/worktree/index.js +8 -0
  87. package/dist/oclif/commands/worktree/list.d.ts +6 -0
  88. package/dist/oclif/commands/worktree/list.js +28 -0
  89. package/dist/oclif/commands/worktree/remove.d.ts +9 -0
  90. package/dist/oclif/commands/worktree/remove.js +35 -0
  91. package/dist/oclif/hooks/init/validate-brv-config.js +4 -0
  92. package/dist/oclif/lib/daemon-client.d.ts +4 -2
  93. package/dist/oclif/lib/daemon-client.js +19 -3
  94. package/dist/server/constants.d.ts +8 -0
  95. package/dist/server/constants.js +10 -0
  96. package/dist/server/core/domain/client/client-info.d.ts +7 -0
  97. package/dist/server/core/domain/client/client-info.js +11 -0
  98. package/dist/server/core/domain/knowledge/memory-scoring.d.ts +3 -3
  99. package/dist/server/core/domain/knowledge/memory-scoring.js +5 -5
  100. package/dist/server/core/domain/knowledge/summary-types.d.ts +4 -0
  101. package/dist/server/core/domain/project/worktrees-schema.d.ts +29 -0
  102. package/dist/server/core/domain/project/worktrees-schema.js +17 -0
  103. package/dist/server/core/domain/source/source-operations.d.ts +31 -0
  104. package/dist/server/core/domain/source/source-operations.js +201 -0
  105. package/dist/server/core/domain/source/source-schema.d.ts +94 -0
  106. package/dist/server/core/domain/source/source-schema.js +121 -0
  107. package/dist/server/core/domain/transport/schemas.d.ts +18 -10
  108. package/dist/server/core/domain/transport/schemas.js +4 -0
  109. package/dist/server/core/domain/transport/task-info.d.ts +2 -0
  110. package/dist/server/core/interfaces/client/i-client-manager.d.ts +13 -0
  111. package/dist/server/core/interfaces/executor/i-curate-executor.d.ts +4 -0
  112. package/dist/server/core/interfaces/executor/i-folder-pack-executor.d.ts +7 -3
  113. package/dist/server/core/interfaces/executor/i-query-executor.d.ts +2 -0
  114. package/dist/server/infra/client/client-manager.d.ts +1 -0
  115. package/dist/server/infra/client/client-manager.js +16 -0
  116. package/dist/server/infra/context-tree/derived-artifact.js +5 -1
  117. package/dist/server/infra/context-tree/file-context-tree-manifest-service.d.ts +2 -1
  118. package/dist/server/infra/context-tree/file-context-tree-manifest-service.js +43 -7
  119. package/dist/server/infra/context-tree/file-context-tree-summary-service.js +20 -2
  120. package/dist/server/infra/daemon/agent-process.js +15 -5
  121. package/dist/server/infra/executor/curate-executor.js +6 -3
  122. package/dist/server/infra/executor/direct-search-responder.js +5 -1
  123. package/dist/server/infra/executor/folder-pack-executor.js +88 -7
  124. package/dist/server/infra/executor/query-executor.d.ts +23 -0
  125. package/dist/server/infra/executor/query-executor.js +125 -23
  126. package/dist/server/infra/mcp/mcp-mode-detector.d.ts +7 -5
  127. package/dist/server/infra/mcp/mcp-mode-detector.js +11 -18
  128. package/dist/server/infra/mcp/mcp-server.d.ts +1 -0
  129. package/dist/server/infra/mcp/mcp-server.js +11 -6
  130. package/dist/server/infra/mcp/tools/brv-curate-tool.d.ts +2 -1
  131. package/dist/server/infra/mcp/tools/brv-curate-tool.js +9 -16
  132. package/dist/server/infra/mcp/tools/brv-query-tool.d.ts +2 -1
  133. package/dist/server/infra/mcp/tools/brv-query-tool.js +9 -16
  134. package/dist/server/infra/mcp/tools/mcp-project-context.d.ts +11 -0
  135. package/dist/server/infra/mcp/tools/mcp-project-context.js +54 -0
  136. package/dist/server/infra/process/connection-coordinator.js +11 -0
  137. package/dist/server/infra/process/feature-handlers.js +4 -1
  138. package/dist/server/infra/process/task-router.d.ts +1 -0
  139. package/dist/server/infra/process/task-router.js +60 -5
  140. package/dist/server/infra/project/resolve-project.d.ts +106 -0
  141. package/dist/server/infra/project/resolve-project.js +473 -0
  142. package/dist/server/infra/transport/handlers/index.d.ts +4 -0
  143. package/dist/server/infra/transport/handlers/index.js +2 -0
  144. package/dist/server/infra/transport/handlers/source-handler.d.ts +12 -0
  145. package/dist/server/infra/transport/handlers/source-handler.js +37 -0
  146. package/dist/server/infra/transport/handlers/status-handler.js +65 -13
  147. package/dist/server/infra/transport/handlers/worktree-handler.d.ts +12 -0
  148. package/dist/server/infra/transport/handlers/worktree-handler.js +67 -0
  149. package/dist/server/infra/transport/transport-connector.d.ts +10 -4
  150. package/dist/server/infra/transport/transport-connector.js +2 -2
  151. package/dist/server/utils/curate-result-parser.d.ts +4 -4
  152. package/dist/server/utils/path-utils.d.ts +5 -0
  153. package/dist/server/utils/path-utils.js +11 -1
  154. package/dist/shared/transport/events/client-events.d.ts +3 -0
  155. package/dist/shared/transport/events/client-events.js +3 -0
  156. package/dist/shared/transport/events/index.d.ts +13 -0
  157. package/dist/shared/transport/events/index.js +9 -0
  158. package/dist/shared/transport/events/source-events.d.ts +30 -0
  159. package/dist/shared/transport/events/source-events.js +5 -0
  160. package/dist/shared/transport/events/status-events.d.ts +5 -0
  161. package/dist/shared/transport/events/task-events.d.ts +4 -1
  162. package/dist/shared/transport/events/worktree-events.d.ts +31 -0
  163. package/dist/shared/transport/events/worktree-events.js +5 -0
  164. package/dist/shared/transport/types/dto.d.ts +26 -0
  165. package/dist/tui/features/commands/definitions/index.js +6 -0
  166. package/dist/tui/features/commands/definitions/source-add.d.ts +2 -0
  167. package/dist/tui/features/commands/definitions/source-add.js +48 -0
  168. package/dist/tui/features/commands/definitions/source-list.d.ts +2 -0
  169. package/dist/tui/features/commands/definitions/source-list.js +47 -0
  170. package/dist/tui/features/commands/definitions/source-remove.d.ts +2 -0
  171. package/dist/tui/features/commands/definitions/source-remove.js +38 -0
  172. package/dist/tui/features/commands/definitions/source.d.ts +2 -0
  173. package/dist/tui/features/commands/definitions/source.js +8 -0
  174. package/dist/tui/features/commands/definitions/worktree-add.d.ts +2 -0
  175. package/dist/tui/features/commands/definitions/worktree-add.js +35 -0
  176. package/dist/tui/features/commands/definitions/worktree-list.d.ts +2 -0
  177. package/dist/tui/features/commands/definitions/worktree-list.js +36 -0
  178. package/dist/tui/features/commands/definitions/worktree-remove.d.ts +2 -0
  179. package/dist/tui/features/commands/definitions/worktree-remove.js +33 -0
  180. package/dist/tui/features/commands/definitions/worktree.d.ts +2 -0
  181. package/dist/tui/features/commands/definitions/worktree.js +8 -0
  182. package/dist/tui/features/curate/api/create-curate-task.js +3 -1
  183. package/dist/tui/features/query/api/create-query-task.js +3 -1
  184. package/dist/tui/features/source/api/source-api.d.ts +4 -0
  185. package/dist/tui/features/source/api/source-api.js +22 -0
  186. package/dist/tui/features/status/api/get-status.js +2 -1
  187. package/dist/tui/features/status/utils/format-status.js +23 -1
  188. package/dist/tui/features/transport/components/transport-initializer.js +36 -1
  189. package/dist/tui/features/worktree/api/worktree-api.d.ts +4 -0
  190. package/dist/tui/features/worktree/api/worktree-api.js +22 -0
  191. package/dist/tui/repl-startup.d.ts +2 -0
  192. package/dist/tui/repl-startup.js +5 -3
  193. package/dist/tui/stores/transport-store.d.ts +6 -0
  194. package/dist/tui/stores/transport-store.js +6 -0
  195. package/oclif.manifest.json +261 -1
  196. package/package.json +10 -4
@@ -13,8 +13,10 @@ const initialState = {
13
13
  connectionState: 'disconnected',
14
14
  error: null,
15
15
  isConnected: false,
16
+ projectPath: null,
16
17
  reconnectCount: 0,
17
18
  version: '',
19
+ worktreeRoot: null,
18
20
  };
19
21
  export const useTransportStore = create()((set) => ({
20
22
  ...initialState,
@@ -36,5 +38,9 @@ export const useTransportStore = create()((set) => ({
36
38
  error,
37
39
  isConnected: false,
38
40
  }),
41
+ setProjectInfo: (projectPath, worktreeRoot) => set({
42
+ projectPath: projectPath ?? null,
43
+ worktreeRoot: worktreeRoot ?? null,
44
+ }),
39
45
  setVersion: (version) => set({ version }),
40
46
  }));
@@ -486,6 +486,21 @@
486
486
  "json"
487
487
  ],
488
488
  "type": "option"
489
+ },
490
+ "project-root": {
491
+ "description": "Explicit project root path (overrides auto-detection)",
492
+ "name": "project-root",
493
+ "required": false,
494
+ "hasDynamicHelp": false,
495
+ "multiple": false,
496
+ "type": "option"
497
+ },
498
+ "verbose": {
499
+ "char": "v",
500
+ "description": "Show resolution source and diagnostic info",
501
+ "name": "verbose",
502
+ "allowNo": false,
503
+ "type": "boolean"
489
504
  }
490
505
  },
491
506
  "hasDynamicHelp": false,
@@ -1372,6 +1387,129 @@
1372
1387
  "switch.js"
1373
1388
  ]
1374
1389
  },
1390
+ "source:add": {
1391
+ "aliases": [],
1392
+ "args": {
1393
+ "path": {
1394
+ "description": "Path to the target project containing .brv/",
1395
+ "name": "path",
1396
+ "required": true
1397
+ }
1398
+ },
1399
+ "description": "Add a read-only knowledge source from another project's context tree",
1400
+ "examples": [
1401
+ "<%= config.bin %> <%= command.id %> /path/to/shared-lib",
1402
+ "<%= config.bin %> <%= command.id %> /path/to/shared-lib --alias shared"
1403
+ ],
1404
+ "flags": {
1405
+ "alias": {
1406
+ "description": "Custom alias for the source (defaults to directory name)",
1407
+ "name": "alias",
1408
+ "required": false,
1409
+ "hasDynamicHelp": false,
1410
+ "multiple": false,
1411
+ "type": "option"
1412
+ }
1413
+ },
1414
+ "hasDynamicHelp": false,
1415
+ "hiddenAliases": [],
1416
+ "id": "source:add",
1417
+ "pluginAlias": "byterover-cli",
1418
+ "pluginName": "byterover-cli",
1419
+ "pluginType": "core",
1420
+ "strict": true,
1421
+ "enableJsonFlag": false,
1422
+ "isESM": true,
1423
+ "relativePath": [
1424
+ "dist",
1425
+ "oclif",
1426
+ "commands",
1427
+ "source",
1428
+ "add.js"
1429
+ ]
1430
+ },
1431
+ "source": {
1432
+ "aliases": [],
1433
+ "args": {},
1434
+ "description": "Manage knowledge sources (read-only references to other projects)",
1435
+ "examples": [
1436
+ "<%= config.bin %> <%= command.id %> --help"
1437
+ ],
1438
+ "flags": {},
1439
+ "hasDynamicHelp": false,
1440
+ "hiddenAliases": [],
1441
+ "id": "source",
1442
+ "pluginAlias": "byterover-cli",
1443
+ "pluginName": "byterover-cli",
1444
+ "pluginType": "core",
1445
+ "strict": true,
1446
+ "enableJsonFlag": false,
1447
+ "isESM": true,
1448
+ "relativePath": [
1449
+ "dist",
1450
+ "oclif",
1451
+ "commands",
1452
+ "source",
1453
+ "index.js"
1454
+ ]
1455
+ },
1456
+ "source:list": {
1457
+ "aliases": [],
1458
+ "args": {},
1459
+ "description": "List all knowledge sources and their status",
1460
+ "examples": [
1461
+ "<%= config.bin %> <%= command.id %>"
1462
+ ],
1463
+ "flags": {},
1464
+ "hasDynamicHelp": false,
1465
+ "hiddenAliases": [],
1466
+ "id": "source:list",
1467
+ "pluginAlias": "byterover-cli",
1468
+ "pluginName": "byterover-cli",
1469
+ "pluginType": "core",
1470
+ "strict": true,
1471
+ "enableJsonFlag": false,
1472
+ "isESM": true,
1473
+ "relativePath": [
1474
+ "dist",
1475
+ "oclif",
1476
+ "commands",
1477
+ "source",
1478
+ "list.js"
1479
+ ]
1480
+ },
1481
+ "source:remove": {
1482
+ "aliases": [],
1483
+ "args": {
1484
+ "aliasOrPath": {
1485
+ "description": "Alias or path of the knowledge source to remove",
1486
+ "name": "aliasOrPath",
1487
+ "required": true
1488
+ }
1489
+ },
1490
+ "description": "Remove a knowledge source",
1491
+ "examples": [
1492
+ "<%= config.bin %> <%= command.id %> shared-lib",
1493
+ "<%= config.bin %> <%= command.id %> /path/to/shared-lib"
1494
+ ],
1495
+ "flags": {},
1496
+ "hasDynamicHelp": false,
1497
+ "hiddenAliases": [],
1498
+ "id": "source:remove",
1499
+ "pluginAlias": "byterover-cli",
1500
+ "pluginName": "byterover-cli",
1501
+ "pluginType": "core",
1502
+ "strict": true,
1503
+ "enableJsonFlag": false,
1504
+ "isESM": true,
1505
+ "relativePath": [
1506
+ "dist",
1507
+ "oclif",
1508
+ "commands",
1509
+ "source",
1510
+ "remove.js"
1511
+ ]
1512
+ },
1375
1513
  "review:approve": {
1376
1514
  "aliases": [],
1377
1515
  "args": {
@@ -1655,6 +1793,128 @@
1655
1793
  "switch.js"
1656
1794
  ]
1657
1795
  },
1796
+ "worktree:add": {
1797
+ "aliases": [],
1798
+ "args": {
1799
+ "path": {
1800
+ "description": "Path to the directory to register as a worktree (relative or absolute)",
1801
+ "name": "path",
1802
+ "required": false
1803
+ }
1804
+ },
1805
+ "description": "Register a directory as a worktree of this project",
1806
+ "examples": [
1807
+ "<%= config.bin %> <%= command.id %> packages/api",
1808
+ "<%= config.bin %> <%= command.id %> ../other-checkout",
1809
+ "<%= config.bin %> <%= command.id %> (auto-detect parent from subdirectory)"
1810
+ ],
1811
+ "flags": {
1812
+ "force": {
1813
+ "description": "Replace existing .brv/ directory in target with a worktree pointer",
1814
+ "name": "force",
1815
+ "allowNo": false,
1816
+ "type": "boolean"
1817
+ }
1818
+ },
1819
+ "hasDynamicHelp": false,
1820
+ "hiddenAliases": [],
1821
+ "id": "worktree:add",
1822
+ "pluginAlias": "byterover-cli",
1823
+ "pluginName": "byterover-cli",
1824
+ "pluginType": "core",
1825
+ "strict": true,
1826
+ "enableJsonFlag": false,
1827
+ "isESM": true,
1828
+ "relativePath": [
1829
+ "dist",
1830
+ "oclif",
1831
+ "commands",
1832
+ "worktree",
1833
+ "add.js"
1834
+ ]
1835
+ },
1836
+ "worktree": {
1837
+ "aliases": [],
1838
+ "args": {},
1839
+ "description": "Manage worktree links for subdirectories and sibling checkouts",
1840
+ "examples": [
1841
+ "<%= config.bin %> <%= command.id %> --help"
1842
+ ],
1843
+ "flags": {},
1844
+ "hasDynamicHelp": false,
1845
+ "hiddenAliases": [],
1846
+ "id": "worktree",
1847
+ "pluginAlias": "byterover-cli",
1848
+ "pluginName": "byterover-cli",
1849
+ "pluginType": "core",
1850
+ "strict": true,
1851
+ "enableJsonFlag": false,
1852
+ "isESM": true,
1853
+ "relativePath": [
1854
+ "dist",
1855
+ "oclif",
1856
+ "commands",
1857
+ "worktree",
1858
+ "index.js"
1859
+ ]
1860
+ },
1861
+ "worktree:list": {
1862
+ "aliases": [],
1863
+ "args": {},
1864
+ "description": "Show the current worktree link and list all registered worktrees",
1865
+ "examples": [
1866
+ "<%= config.bin %> <%= command.id %>"
1867
+ ],
1868
+ "flags": {},
1869
+ "hasDynamicHelp": false,
1870
+ "hiddenAliases": [],
1871
+ "id": "worktree:list",
1872
+ "pluginAlias": "byterover-cli",
1873
+ "pluginName": "byterover-cli",
1874
+ "pluginType": "core",
1875
+ "strict": true,
1876
+ "enableJsonFlag": false,
1877
+ "isESM": true,
1878
+ "relativePath": [
1879
+ "dist",
1880
+ "oclif",
1881
+ "commands",
1882
+ "worktree",
1883
+ "list.js"
1884
+ ]
1885
+ },
1886
+ "worktree:remove": {
1887
+ "aliases": [],
1888
+ "args": {
1889
+ "path": {
1890
+ "description": "Path to the worktree to remove (defaults to cwd)",
1891
+ "name": "path",
1892
+ "required": false
1893
+ }
1894
+ },
1895
+ "description": "Remove a worktree registration and its .brv pointer",
1896
+ "examples": [
1897
+ "<%= config.bin %> <%= command.id %> (remove cwd as worktree)",
1898
+ "<%= config.bin %> <%= command.id %> packages/api (remove from parent)"
1899
+ ],
1900
+ "flags": {},
1901
+ "hasDynamicHelp": false,
1902
+ "hiddenAliases": [],
1903
+ "id": "worktree:remove",
1904
+ "pluginAlias": "byterover-cli",
1905
+ "pluginName": "byterover-cli",
1906
+ "pluginType": "core",
1907
+ "strict": true,
1908
+ "enableJsonFlag": false,
1909
+ "isESM": true,
1910
+ "relativePath": [
1911
+ "dist",
1912
+ "oclif",
1913
+ "commands",
1914
+ "worktree",
1915
+ "remove.js"
1916
+ ]
1917
+ },
1658
1918
  "vc:add": {
1659
1919
  "aliases": [],
1660
1920
  "args": {},
@@ -2556,5 +2816,5 @@
2556
2816
  ]
2557
2817
  }
2558
2818
  },
2559
- "version": "3.0.1"
2819
+ "version": "3.2.0"
2560
2820
  }
package/package.json CHANGED
@@ -2,11 +2,17 @@
2
2
  "name": "byterover-cli",
3
3
  "description": "ByteRover's CLI",
4
4
  "keywords": [
5
- "cli", "ai", "llm", "mcp", "developer-tools",
6
- "context-memory", "autonomous-agents", "coding-assistant",
5
+ "cli",
6
+ "ai",
7
+ "llm",
8
+ "mcp",
9
+ "developer-tools",
10
+ "context-memory",
11
+ "autonomous-agents",
12
+ "coding-assistant",
7
13
  "knowledge-management"
8
14
  ],
9
- "version": "3.0.1",
15
+ "version": "3.2.0",
10
16
  "author": "ByteRover",
11
17
  "bin": {
12
18
  "brv": "./bin/run.js"
@@ -103,7 +109,7 @@
103
109
  "expect-type": "^1.2.2",
104
110
  "husky": "^9.1.7",
105
111
  "lint-staged": "^16.3.1",
106
- "mocha": "^10",
112
+ "mocha": "10.8.2",
107
113
  "nock": "^14.0.10",
108
114
  "oclif": "^4",
109
115
  "pdfkit": "^0.17.2",