terminal-jarvis 0.0.13 → 0.0.14

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 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.6) is a preview release. Full binary functionality with the interactive T.JARVIS interface is available when installed from source.
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
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.13");
108
+ console.log("šŸ¤– Terminal Jarvis v0.0.14");
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.13",
3
+ "version": "0.0.14",
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": "lib/index.js"
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.13 installed successfully!nnāœ… Full T.JARVIS interface ready to use!nnRun: npx terminal-jarvisn)\""
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