terminal-jarvis 0.0.78 → 0.0.79
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 +13 -0
- package/package.json +9 -9
- package/scripts/postinstall.js +8 -1
- package/bin/terminal-jarvis-bin +0 -0
package/README.md
CHANGED
|
@@ -22,6 +22,19 @@ Manage Claude, Gemini, Qwen, and 19 more AI assistants from one terminal interfa
|
|
|
22
22
|
|
|
23
23
|
---
|
|
24
24
|
|
|
25
|
+
## Table of Contents
|
|
26
|
+
|
|
27
|
+
- [Quick Start](#quick-start)
|
|
28
|
+
- [What It Does](#what-it-does)
|
|
29
|
+
- [Documentation](#documentation)
|
|
30
|
+
- [Project Structure](#project-structure)
|
|
31
|
+
- [Development](#development)
|
|
32
|
+
- [Contributing](#contributing)
|
|
33
|
+
- [License](#license)
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
> *Note: If these links do not respond in the GitHub Mobile app, try viewing in a browser. This is a known platform limitation.*
|
|
37
|
+
|
|
25
38
|
## Quick Start
|
|
26
39
|
|
|
27
40
|
```bash
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "terminal-jarvis",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.79",
|
|
4
4
|
"description": "AI Coding Tools Wrapper - Unified interface for claude-code, gemini-cli, qwen-code, opencode, llxprt, codex, crush, goose, amp, and aider",
|
|
5
5
|
"bin": {
|
|
6
6
|
"terminal-jarvis": "bin/terminal-jarvis"
|
|
@@ -56,14 +56,14 @@
|
|
|
56
56
|
},
|
|
57
57
|
"homepage": "https://github.com/BA-CalderonMorales/terminal-jarvis#readme",
|
|
58
58
|
"devDependencies": {
|
|
59
|
-
"@biomejs/biome": "
|
|
60
|
-
"@types/node": "
|
|
61
|
-
"@vitest/ui": "
|
|
62
|
-
"cli-testing-library": "
|
|
63
|
-
"string-width": "
|
|
64
|
-
"typescript": "
|
|
65
|
-
"vitest": "
|
|
66
|
-
"zod": "
|
|
59
|
+
"@biomejs/biome": "2.1.4",
|
|
60
|
+
"@types/node": "22.15.3",
|
|
61
|
+
"@vitest/ui": "3.2.4",
|
|
62
|
+
"cli-testing-library": "3.0.1",
|
|
63
|
+
"string-width": "8.1.0",
|
|
64
|
+
"typescript": "5.9.3",
|
|
65
|
+
"vitest": "3.2.4",
|
|
66
|
+
"zod": "3.25.56"
|
|
67
67
|
},
|
|
68
68
|
"engines": {
|
|
69
69
|
"node": ">=16.0.0"
|
package/scripts/postinstall.js
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
- Verify installation
|
|
9
9
|
|
|
10
10
|
Version Hint (used by CI for consistency checks):
|
|
11
|
-
Terminal Jarvis v0.0.
|
|
11
|
+
Terminal Jarvis v0.0.79
|
|
12
12
|
*/
|
|
13
13
|
|
|
14
14
|
const fs = require('fs');
|
|
@@ -218,6 +218,13 @@ function checkPrerequisites() {
|
|
|
218
218
|
(async () => {
|
|
219
219
|
const startTime = Date.now();
|
|
220
220
|
|
|
221
|
+
// Skip binary download in CI environments - binary hasn't been released yet
|
|
222
|
+
if (process.env.CI || process.env.SKIP_POSTINSTALL) {
|
|
223
|
+
log('CI environment detected - skipping binary download');
|
|
224
|
+
log('Binary will be built from source or downloaded on first use');
|
|
225
|
+
process.exit(0);
|
|
226
|
+
}
|
|
227
|
+
|
|
221
228
|
try {
|
|
222
229
|
// Detect platform
|
|
223
230
|
const platformInfo = getPlatformInfo();
|
package/bin/terminal-jarvis-bin
DELETED
|
Binary file
|