terminal-jarvis 0.0.1 → 0.0.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/lib/index.js CHANGED
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env node
2
2
  "use strict";
3
- console.log("Terminal Jarvis v0.0.1");
4
- console.log("This is a test version - full binary support coming soon!");
3
+ console.log("Terminal Jarvis v0.0.2");
4
+ console.log("This is a preview release - full binary support coming soon!");
5
5
  console.log("");
6
6
  console.log("Available commands:");
7
7
  console.log(" list - List available AI coding tools");
package/lib/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;AAEA,OAAO,CAAC,GAAG,CAAC,wBAAwB,CAAC,CAAC;AACtC,OAAO,CAAC,GAAG,CAAC,2DAA2D,CAAC,CAAC;AACzE,OAAO,CAAC,GAAG,CAAC,EAAE,CAAC,CAAC;AAChB,OAAO,CAAC,GAAG,CAAC,qBAAqB,CAAC,CAAC;AACnC,OAAO,CAAC,GAAG,CAAC,8CAA8C,CAAC,CAAC;AAC5D,OAAO,CAAC,GAAG,CAAC,mCAAmC,CAAC,CAAC;AACjD,OAAO,CAAC,GAAG,CAAC,+BAA+B,CAAC,CAAC;AAC7C,OAAO,CAAC,GAAG,CAAC,gCAAgC,CAAC,CAAC;AAC9C,OAAO,CAAC,GAAG,CAAC,EAAE,CAAC,CAAC;AAChB,OAAO,CAAC,GAAG,CAAC,sEAAsE,CAAC,CAAC;AACpF,OAAO,CAAC,GAAG,CAAC,iCAAiC,CAAC,CAAC;AAE/C,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;AAEA,OAAO,CAAC,GAAG,CAAC,wBAAwB,CAAC,CAAC;AACtC,OAAO,CAAC,GAAG,CAAC,8DAA8D,CAAC,CAAC;AAC5E,OAAO,CAAC,GAAG,CAAC,EAAE,CAAC,CAAC;AAChB,OAAO,CAAC,GAAG,CAAC,qBAAqB,CAAC,CAAC;AACnC,OAAO,CAAC,GAAG,CAAC,8CAA8C,CAAC,CAAC;AAC5D,OAAO,CAAC,GAAG,CAAC,mCAAmC,CAAC,CAAC;AACjD,OAAO,CAAC,GAAG,CAAC,+BAA+B,CAAC,CAAC;AAC7C,OAAO,CAAC,GAAG,CAAC,gCAAgC,CAAC,CAAC;AAC9C,OAAO,CAAC,GAAG,CAAC,EAAE,CAAC,CAAC;AAChB,OAAO,CAAC,GAAG,CAAC,sEAAsE,CAAC,CAAC;AACpF,OAAO,CAAC,GAAG,CAAC,iCAAiC,CAAC,CAAC;AAE/C,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "terminal-jarvis",
3
- "version": "0.0.1",
3
+ "version": "0.0.2",
4
4
  "description": "A thin Rust wrapper that provides a unified interface for managing and running AI coding tools",
5
5
  "bin": "lib/index.js",
6
6
  "scripts": {
@@ -10,7 +10,16 @@
10
10
  "build": "tsc",
11
11
  "dev": "yarn build && node lib/index.js"
12
12
  },
13
- "keywords": ["cli", "ai", "tools", "wrapper", "claude", "gemini", "qwen", "opencode"],
13
+ "keywords": [
14
+ "cli",
15
+ "ai",
16
+ "tools",
17
+ "wrapper",
18
+ "claude",
19
+ "gemini",
20
+ "qwen",
21
+ "opencode"
22
+ ],
14
23
  "author": "BA-CalderonMorales",
15
24
  "license": "MIT",
16
25
  "repository": {
package/src/index.ts CHANGED
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env node
2
2
 
3
- console.log("Terminal Jarvis v0.0.1");
4
- console.log("This is a test version - full binary support coming soon!");
3
+ console.log("Terminal Jarvis v0.0.2");
4
+ console.log("This is a preview release - full binary support coming soon!");
5
5
  console.log("");
6
6
  console.log("Available commands:");
7
7
  console.log(" list - List available AI coding tools");