@thegitai/cli 1.0.0-beta.1 → 1.0.0-beta.10
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 +4 -3
- package/dist/bin/ai.js +18 -61
- package/dist/parsers/NOTICE +18 -0
- package/dist/src/api/auth.js +4 -2
- package/dist/src/api/browser-login.js +10 -28
- package/dist/src/api/chat.js +20 -9
- package/dist/src/api/http.js +32 -3
- package/dist/src/api/models.js +4 -2
- package/dist/src/artifact-policy.js +9 -0
- package/dist/src/cli-args.js +65 -0
- package/dist/src/client-environment.js +127 -0
- package/dist/src/colors.js +59 -0
- package/dist/src/core/clipboard.js +56 -0
- package/dist/src/edit-journal.js +39 -6
- package/dist/src/executor.js +28 -5
- package/dist/src/help-text.js +15 -1
- package/dist/src/markdown-renderer.js +1 -1
- package/dist/src/patcher.js +18 -1
- package/dist/src/scanner.js +67 -17
- package/dist/src/session-safety.js +64 -12
- package/dist/src/tool-executor.js +8 -0
- package/dist/src/tools/delete-file.js +1 -1
- package/dist/src/tools/index.js +2 -0
- package/dist/src/tools/patch-file.js +14 -1
- package/dist/src/tools/path-suggest.js +66 -0
- package/dist/src/tools/read-document.js +14 -3
- package/dist/src/tools/read-file.js +9 -0
- package/dist/src/tools/replace-document-text.js +242 -0
- package/dist/src/tools/restore-checkpoint.js +1 -1
- package/dist/src/tools/run-command.js +1 -1
- package/dist/src/tools/run-node-script.js +1 -1
- package/dist/src/tools/str-replace.js +14 -1
- package/dist/src/tools/undo-edit.js +7 -5
- package/dist/src/tools/write-file.js +14 -1
- package/dist/src/tree-sitter-runtime.js +14 -1
- package/dist/src/ui/repl.js +13 -1
- package/dist/src/ui/tui/bridge.js +2 -2
- package/dist/src/ui/tui/build-frame.js +18 -2
- package/dist/src/ui/tui/shell-input.js +9 -1
- package/dist/src/version.js +35 -0
- package/dist/vendor/web-tree-sitter/LICENSE +21 -0
- package/dist/vendor/web-tree-sitter/NOTICE +13 -0
- package/dist/vendor/web-tree-sitter/web-tree-sitter.cjs +4063 -0
- package/dist/vendor/web-tree-sitter/web-tree-sitter.wasm +0 -0
- package/package.json +15 -16
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thegitai/cli",
|
|
3
|
-
"version": "1.0.0-beta.
|
|
3
|
+
"version": "1.0.0-beta.10",
|
|
4
4
|
"description": "TheGitAI CLI client (source-visible, proprietary)",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE",
|
|
6
6
|
"homepage": "https://thegit.ai",
|
|
7
7
|
"type": "module",
|
|
8
8
|
"engines": {
|
|
9
|
-
"node": ">=24
|
|
9
|
+
"node": ">=24"
|
|
10
10
|
},
|
|
11
11
|
"bin": {
|
|
12
12
|
"ai": "./dist/bin/ai.js"
|
|
@@ -16,21 +16,20 @@
|
|
|
16
16
|
"LICENSE",
|
|
17
17
|
"README.md"
|
|
18
18
|
],
|
|
19
|
-
"dependencies": {
|
|
20
|
-
"@homebridge/node-pty-prebuilt-multiarch": "^0.13.1",
|
|
21
|
-
"@mozilla/readability": "0.6.0",
|
|
22
|
-
"@vscode/ripgrep": "1.17.1",
|
|
23
|
-
"@vscode/tree-sitter-wasm": "^0.3.0",
|
|
24
|
-
"chalk": "^5.4.1",
|
|
25
|
-
"glob": "^11.0.1",
|
|
26
|
-
"jsdom": "29.1.1",
|
|
27
|
-
"web-tree-sitter": "^0.26.6"
|
|
28
|
-
},
|
|
19
|
+
"dependencies": {},
|
|
29
20
|
"optionalDependencies": {
|
|
30
|
-
"@
|
|
31
|
-
"@
|
|
32
|
-
"@
|
|
33
|
-
"@
|
|
21
|
+
"@lydell/node-pty": "1.1.0",
|
|
22
|
+
"@lydell/node-pty-darwin-arm64": "1.1.0",
|
|
23
|
+
"@lydell/node-pty-darwin-x64": "1.1.0",
|
|
24
|
+
"@lydell/node-pty-linux-arm64": "1.1.0",
|
|
25
|
+
"@lydell/node-pty-linux-x64": "1.1.0",
|
|
26
|
+
"@lydell/node-pty-win32-arm64": "1.1.0",
|
|
27
|
+
"@lydell/node-pty-win32-x64": "1.1.0",
|
|
28
|
+
"@thegitai/tui-darwin-arm64": "1.0.0-beta.10",
|
|
29
|
+
"@thegitai/tui-darwin-x64": "1.0.0-beta.10",
|
|
30
|
+
"@thegitai/tui-linux-x64": "1.0.0-beta.10",
|
|
31
|
+
"@thegitai/tui-win32-x64": "1.0.0-beta.10",
|
|
32
|
+
"@vscode/ripgrep": "1.17.1"
|
|
34
33
|
},
|
|
35
34
|
"publishConfig": {
|
|
36
35
|
"access": "public"
|