@thegitai/cli 1.0.0-beta.9 → 1.0.0-preview.2
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 +36 -2
- package/dist/bin/ai.js +138 -18
- package/dist/parsers/NOTICE +18 -0
- package/dist/src/agent-mode.js +5 -0
- package/dist/src/api/auth.js +3 -3
- package/dist/src/api/browser-login.js +0 -16
- package/dist/src/api/chat.js +59 -11
- package/dist/src/api/http.js +49 -1
- package/dist/src/api/models.js +26 -20
- package/dist/src/artifact-policy.js +3 -0
- package/dist/src/background-jobs.js +410 -0
- package/dist/src/cli-args.js +0 -5
- package/dist/src/client-environment.js +2 -0
- package/dist/src/colors.js +50 -0
- package/dist/src/core/clipboard.js +19 -0
- package/dist/src/core/image-path-extractor.js +144 -0
- package/dist/src/executor.js +48 -12
- package/dist/src/help-text.js +11 -6
- package/dist/src/markdown-renderer.js +1 -1
- package/dist/src/patcher.js +97 -12
- package/dist/src/project-orientation.js +99 -0
- package/dist/src/scanner.js +50 -12
- package/dist/src/scratch-dir.js +75 -0
- package/dist/src/secret-preview.js +0 -10
- package/dist/src/session-safety.js +0 -19
- package/dist/src/session-store.js +0 -1
- package/dist/src/todo-list.js +106 -0
- package/dist/src/tool-executor.js +194 -21
- package/dist/src/tools/delete-file.js +23 -5
- package/dist/src/tools/index.js +6 -0
- package/dist/src/tools/patch-file.js +33 -7
- package/dist/src/tools/path-suggest.js +81 -8
- package/dist/src/tools/read-document.js +2 -2
- package/dist/src/tools/read-file.js +17 -8
- package/dist/src/tools/replace-document-text.js +10 -12
- package/dist/src/tools/restore-checkpoint.js +1 -1
- package/dist/src/tools/run-command.js +109 -24
- package/dist/src/tools/run-node-script.js +27 -5
- package/dist/src/tools/shell-job-kill.js +48 -0
- package/dist/src/tools/shell-job-output.js +51 -0
- package/dist/src/tools/str-replace.js +33 -7
- package/dist/src/tools/undo-edit.js +1 -1
- package/dist/src/tools/update-todos.js +27 -0
- package/dist/src/tools/write-file.js +26 -6
- package/dist/src/tree-sitter-runtime.js +8 -1
- package/dist/src/ui/repl.js +342 -23
- package/dist/src/ui/tui/bridge.js +0 -4
- package/dist/src/ui/tui/build-frame.js +220 -24
- package/dist/src/ui/tui/shell-input.js +33 -4
- package/dist/src/ui/tui/terminal-title.js +81 -0
- package/dist/src/version.js +0 -6
- 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 +14 -15
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thegitai/cli",
|
|
3
|
-
"version": "1.0.0-
|
|
3
|
+
"version": "1.0.0-preview.2",
|
|
4
4
|
"description": "TheGitAI CLI client (source-visible, proprietary)",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE",
|
|
6
6
|
"homepage": "https://thegit.ai",
|
|
@@ -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-preview.2",
|
|
29
|
+
"@thegitai/tui-darwin-x64": "1.0.0-preview.2",
|
|
30
|
+
"@thegitai/tui-linux-x64": "1.0.0-preview.2",
|
|
31
|
+
"@thegitai/tui-win32-x64": "1.0.0-preview.2",
|
|
32
|
+
"@vscode/ripgrep": "1.18.0"
|
|
34
33
|
},
|
|
35
34
|
"publishConfig": {
|
|
36
35
|
"access": "public"
|