byterover-cli 3.8.2 → 3.9.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 (53) hide show
  1. package/README.md +8 -34
  2. package/dist/agent/infra/llm/providers/google.js +1 -1
  3. package/dist/oclif/commands/login.d.ts +15 -2
  4. package/dist/oclif/commands/login.js +106 -29
  5. package/dist/oclif/commands/providers/list.js +3 -0
  6. package/dist/oclif/commands/vc/diff.d.ts +12 -0
  7. package/dist/oclif/commands/vc/diff.js +40 -0
  8. package/dist/oclif/commands/vc/remote/remove.d.ts +9 -0
  9. package/dist/oclif/commands/vc/remote/remove.js +23 -0
  10. package/dist/server/core/domain/entities/brv-config.d.ts +4 -0
  11. package/dist/server/core/domain/entities/brv-config.js +12 -0
  12. package/dist/server/core/domain/entities/provider-registry.js +3 -3
  13. package/dist/server/core/interfaces/services/i-git-service.d.ts +55 -4
  14. package/dist/server/infra/context-tree/summary-frontmatter.js +2 -2
  15. package/dist/server/infra/dream/operations/consolidate.js +5 -4
  16. package/dist/server/infra/dream/operations/synthesize.js +1 -1
  17. package/dist/server/infra/git/isomorphic-git-service.d.ts +24 -1
  18. package/dist/server/infra/git/isomorphic-git-service.js +207 -7
  19. package/dist/server/infra/transport/handlers/config-handler.js +1 -0
  20. package/dist/server/infra/transport/handlers/locations-handler.d.ts +1 -0
  21. package/dist/server/infra/transport/handlers/locations-handler.js +25 -1
  22. package/dist/server/infra/transport/handlers/reveal-command.d.ts +9 -0
  23. package/dist/server/infra/transport/handlers/reveal-command.js +7 -0
  24. package/dist/server/infra/transport/handlers/vc-handler.d.ts +11 -0
  25. package/dist/server/infra/transport/handlers/vc-handler.js +143 -9
  26. package/dist/server/infra/webui/webui-middleware.js +10 -4
  27. package/dist/shared/transport/events/config-events.d.ts +1 -0
  28. package/dist/shared/transport/events/index.d.ts +1 -0
  29. package/dist/shared/transport/events/locations-events.d.ts +7 -0
  30. package/dist/shared/transport/events/locations-events.js +1 -0
  31. package/dist/shared/transport/events/vc-events.d.ts +56 -5
  32. package/dist/shared/transport/events/vc-events.js +7 -0
  33. package/dist/tui/features/commands/definitions/vc-diff.d.ts +2 -0
  34. package/dist/tui/features/commands/definitions/vc-diff.js +23 -0
  35. package/dist/tui/features/commands/definitions/vc-remote.js +16 -7
  36. package/dist/tui/features/commands/definitions/vc.js +2 -0
  37. package/dist/tui/features/vc/diff/api/execute-vc-diff.d.ts +8 -0
  38. package/dist/tui/features/vc/diff/api/execute-vc-diff.js +13 -0
  39. package/dist/tui/features/vc/diff/components/vc-diff-flow.d.ts +8 -0
  40. package/dist/tui/features/vc/diff/components/vc-diff-flow.js +31 -0
  41. package/dist/tui/features/vc/diff/utils/format-diff.d.ts +2 -0
  42. package/dist/tui/features/vc/diff/utils/format-diff.js +83 -0
  43. package/dist/tui/features/vc/diff/utils/parse-mode.d.ts +2 -0
  44. package/dist/tui/features/vc/diff/utils/parse-mode.js +16 -0
  45. package/dist/tui/features/vc/remote/components/vc-remote-flow.js +23 -8
  46. package/dist/webui/assets/index-CvcqpMYn.css +1 -0
  47. package/dist/webui/assets/index-thSZZahh.js +130 -0
  48. package/dist/webui/index.html +3 -3
  49. package/dist/webui/sw.js +1 -1
  50. package/oclif.manifest.json +1009 -933
  51. package/package.json +3 -1
  52. package/dist/webui/assets/index-Cti7S_1o.js +0 -130
  53. package/dist/webui/assets/index-Dpw6osIL.css +0 -1
package/package.json CHANGED
@@ -12,7 +12,7 @@
12
12
  "coding-assistant",
13
13
  "knowledge-management"
14
14
  ],
15
- "version": "3.8.2",
15
+ "version": "3.9.0",
16
16
  "author": "ByteRover",
17
17
  "bin": {
18
18
  "brv": "./bin/run.js"
@@ -50,6 +50,7 @@
50
50
  "axios": "1.15.0",
51
51
  "chalk": "^5.6.2",
52
52
  "date-fns": "^4.1.0",
53
+ "diff": "^9.0.0",
53
54
  "dotenv": "^17.3.1",
54
55
  "esbuild": "^0.27.2",
55
56
  "express": "^5.1.0",
@@ -99,6 +100,7 @@
99
100
  "@oclif/test": "^4",
100
101
  "@tailwindcss/vite": "^4.2.2",
101
102
  "@types/chai": "^4",
103
+ "@types/diff": "^7.0.2",
102
104
  "@types/express": "^5.0.3",
103
105
  "@types/js-yaml": "^4.0.9",
104
106
  "@types/lodash-es": "^4.17.12",