terminal-jarvis 0.0.13 ā 0.0.15
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 +15 -1
- package/bin/terminal-jarvis +0 -0
- package/lib/index.js +1 -1
- package/package.json +3 -3
- package/bin/terminal-jarvis-linux-x64 +0 -0
package/README.md
CHANGED
@@ -21,7 +21,7 @@ npm install -g terminal-jarvis
|
|
21
21
|
cargo install --git https://github.com/BA-CalderonMorales/terminal-jarvis
|
22
22
|
```
|
23
23
|
|
24
|
-
> **Note**: The current NPM version (0.0.
|
24
|
+
> **Note**: The current NPM version (0.0.14) includes full binary functionality with the complete T.JARVIS interface. No additional installation required!
|
25
25
|
|
26
26
|
## Features
|
27
27
|
|
@@ -217,6 +217,20 @@ repository = "your-username/jarvis-templates"
|
|
217
217
|
auto_sync = true
|
218
218
|
```
|
219
219
|
|
220
|
+
## Package Information
|
221
|
+
|
222
|
+
**NPM Package Size**: ~1.2MB compressed / ~2.9MB unpacked
|
223
|
+
|
224
|
+
The NPM package includes pre-compiled Rust binaries for immediate functionality without requiring a Rust toolchain. This ensures you get the complete T.JARVIS experience out-of-the-box with `npx terminal-jarvis`.
|
225
|
+
|
226
|
+
**What's Included:**
|
227
|
+
- Full interactive T.JARVIS interface
|
228
|
+
- Pre-compiled binary for your platform
|
229
|
+
- Zero additional dependencies
|
230
|
+
- Complete tool management capabilities
|
231
|
+
|
232
|
+
Future versions will include size optimizations and platform-specific packages.
|
233
|
+
|
220
234
|
## Contributing
|
221
235
|
|
222
236
|
1. Fork the repository
|
package/bin/terminal-jarvis
CHANGED
Binary file
|
package/lib/index.js
CHANGED
@@ -105,7 +105,7 @@ async function main() {
|
|
105
105
|
}
|
106
106
|
}
|
107
107
|
function showFallbackMessage() {
|
108
|
-
console.log("š¤ Terminal Jarvis v0.0.
|
108
|
+
console.log("š¤ Terminal Jarvis v0.0.15");
|
109
109
|
console.log("");
|
110
110
|
console.log("ā Error: Could not find or execute the T.JARVIS binary.");
|
111
111
|
console.log("");
|
package/package.json
CHANGED
@@ -1,9 +1,9 @@
|
|
1
1
|
{
|
2
2
|
"name": "terminal-jarvis",
|
3
|
-
"version": "0.0.
|
3
|
+
"version": "0.0.15",
|
4
4
|
"description": "A thin Rust wrapper that provides a unified interface for managing and running AI coding tools",
|
5
5
|
"bin": {
|
6
|
-
"terminal-jarvis": "
|
6
|
+
"terminal-jarvis": "bin/terminal-jarvis"
|
7
7
|
},
|
8
8
|
"files": [
|
9
9
|
"lib/",
|
@@ -25,7 +25,7 @@
|
|
25
25
|
"build": "npm run sync-readme && npm run build-rust && npm run copy-binary && tsc",
|
26
26
|
"prepublishOnly": "npm run build",
|
27
27
|
"dev": "npm run build && node lib/index.js",
|
28
|
-
"postinstall": "node -e \"console.log(nš¤ Terminal Jarvis v0.0.
|
28
|
+
"postinstall": "node -e \"console.log('\\nš¤ Terminal Jarvis v0.0.14 installed successfully!\\n\\nā
Full T.JARVIS interface ready to use!\\n\\nRun: npx terminal-jarvis\\n')\""
|
29
29
|
},
|
30
30
|
"keywords": [
|
31
31
|
"cli",
|
Binary file
|