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.
- package/README.md +8 -34
- package/dist/agent/infra/llm/providers/google.js +1 -1
- package/dist/oclif/commands/login.d.ts +15 -2
- package/dist/oclif/commands/login.js +106 -29
- package/dist/oclif/commands/providers/list.js +3 -0
- package/dist/oclif/commands/vc/diff.d.ts +12 -0
- package/dist/oclif/commands/vc/diff.js +40 -0
- package/dist/oclif/commands/vc/remote/remove.d.ts +9 -0
- package/dist/oclif/commands/vc/remote/remove.js +23 -0
- package/dist/server/core/domain/entities/brv-config.d.ts +4 -0
- package/dist/server/core/domain/entities/brv-config.js +12 -0
- package/dist/server/core/domain/entities/provider-registry.js +3 -3
- package/dist/server/core/interfaces/services/i-git-service.d.ts +55 -4
- package/dist/server/infra/context-tree/summary-frontmatter.js +2 -2
- package/dist/server/infra/dream/operations/consolidate.js +5 -4
- package/dist/server/infra/dream/operations/synthesize.js +1 -1
- package/dist/server/infra/git/isomorphic-git-service.d.ts +24 -1
- package/dist/server/infra/git/isomorphic-git-service.js +207 -7
- package/dist/server/infra/transport/handlers/config-handler.js +1 -0
- package/dist/server/infra/transport/handlers/locations-handler.d.ts +1 -0
- package/dist/server/infra/transport/handlers/locations-handler.js +25 -1
- package/dist/server/infra/transport/handlers/reveal-command.d.ts +9 -0
- package/dist/server/infra/transport/handlers/reveal-command.js +7 -0
- package/dist/server/infra/transport/handlers/vc-handler.d.ts +11 -0
- package/dist/server/infra/transport/handlers/vc-handler.js +143 -9
- package/dist/server/infra/webui/webui-middleware.js +10 -4
- package/dist/shared/transport/events/config-events.d.ts +1 -0
- package/dist/shared/transport/events/index.d.ts +1 -0
- package/dist/shared/transport/events/locations-events.d.ts +7 -0
- package/dist/shared/transport/events/locations-events.js +1 -0
- package/dist/shared/transport/events/vc-events.d.ts +56 -5
- package/dist/shared/transport/events/vc-events.js +7 -0
- package/dist/tui/features/commands/definitions/vc-diff.d.ts +2 -0
- package/dist/tui/features/commands/definitions/vc-diff.js +23 -0
- package/dist/tui/features/commands/definitions/vc-remote.js +16 -7
- package/dist/tui/features/commands/definitions/vc.js +2 -0
- package/dist/tui/features/vc/diff/api/execute-vc-diff.d.ts +8 -0
- package/dist/tui/features/vc/diff/api/execute-vc-diff.js +13 -0
- package/dist/tui/features/vc/diff/components/vc-diff-flow.d.ts +8 -0
- package/dist/tui/features/vc/diff/components/vc-diff-flow.js +31 -0
- package/dist/tui/features/vc/diff/utils/format-diff.d.ts +2 -0
- package/dist/tui/features/vc/diff/utils/format-diff.js +83 -0
- package/dist/tui/features/vc/diff/utils/parse-mode.d.ts +2 -0
- package/dist/tui/features/vc/diff/utils/parse-mode.js +16 -0
- package/dist/tui/features/vc/remote/components/vc-remote-flow.js +23 -8
- package/dist/webui/assets/index-CvcqpMYn.css +1 -0
- package/dist/webui/assets/index-thSZZahh.js +130 -0
- package/dist/webui/index.html +3 -3
- package/dist/webui/sw.js +1 -1
- package/oclif.manifest.json +1009 -933
- package/package.json +3 -1
- package/dist/webui/assets/index-Cti7S_1o.js +0 -130
- 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.
|
|
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",
|