terminal-jarvis 0.0.1

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/.eslintrc.json ADDED
@@ -0,0 +1,22 @@
1
+ {
2
+ "root": true,
3
+ "parser": "@typescript-eslint/parser",
4
+ "parserOptions": {
5
+ "ecmaVersion": 2020,
6
+ "sourceType": "module"
7
+ },
8
+ "plugins": ["@typescript-eslint"],
9
+ "extends": [
10
+ "eslint:recommended",
11
+ "@typescript-eslint/recommended"
12
+ ],
13
+ "rules": {
14
+ "@typescript-eslint/no-unused-vars": ["error", { "argsIgnorePattern": "^_" }],
15
+ "@typescript-eslint/explicit-function-return-type": "off",
16
+ "@typescript-eslint/no-explicit-any": "warn"
17
+ },
18
+ "env": {
19
+ "node": true,
20
+ "es6": true
21
+ }
22
+ }
package/lib/index.d.ts ADDED
@@ -0,0 +1,2 @@
1
+ #!/usr/bin/env node
2
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":""}
package/lib/index.js ADDED
@@ -0,0 +1,15 @@
1
+ #!/usr/bin/env node
2
+ "use strict";
3
+ console.log("Terminal Jarvis v0.0.1");
4
+ console.log("This is a test version - full binary support coming soon!");
5
+ console.log("");
6
+ console.log("Available commands:");
7
+ console.log(" list - List available AI coding tools");
8
+ console.log(" run - Run a specific tool");
9
+ console.log(" update - Update packages");
10
+ console.log(" templates - Manage templates");
11
+ console.log("");
12
+ console.log("Note: Please install the Rust binary version for full functionality:");
13
+ console.log(" cargo install terminal-jarvis");
14
+ process.exit(0);
15
+ //# sourceMappingURL=index.js.map
@@ -0,0 +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"}
package/package.json ADDED
@@ -0,0 +1,28 @@
1
+ {
2
+ "name": "terminal-jarvis",
3
+ "version": "0.0.1",
4
+ "description": "A thin Rust wrapper that provides a unified interface for managing and running AI coding tools",
5
+ "bin": "lib/index.js",
6
+ "scripts": {
7
+ "typecheck": "tsc --noEmit",
8
+ "lint": "eslint .",
9
+ "lint:fix": "eslint . --fix",
10
+ "build": "tsc",
11
+ "dev": "yarn build && node lib/index.js"
12
+ },
13
+ "keywords": ["cli", "ai", "tools", "wrapper", "claude", "gemini", "qwen", "opencode"],
14
+ "author": "BA-CalderonMorales",
15
+ "license": "MIT",
16
+ "repository": {
17
+ "type": "git",
18
+ "url": "git+https://github.com/BA-CalderonMorales/terminal-jarvis.git"
19
+ },
20
+ "homepage": "https://github.com/BA-CalderonMorales/terminal-jarvis#readme",
21
+ "devDependencies": {
22
+ "@types/node": "^18.11.18",
23
+ "@typescript-eslint/eslint-plugin": "^5.48.0",
24
+ "@typescript-eslint/parser": "^5.48.0",
25
+ "eslint": "^8.31.0",
26
+ "typescript": "^4.9.4"
27
+ }
28
+ }
package/src/index.ts ADDED
@@ -0,0 +1,15 @@
1
+ #!/usr/bin/env node
2
+
3
+ console.log("Terminal Jarvis v0.0.1");
4
+ console.log("This is a test version - full binary support coming soon!");
5
+ console.log("");
6
+ console.log("Available commands:");
7
+ console.log(" list - List available AI coding tools");
8
+ console.log(" run - Run a specific tool");
9
+ console.log(" update - Update packages");
10
+ console.log(" templates - Manage templates");
11
+ console.log("");
12
+ console.log("Note: Please install the Rust binary version for full functionality:");
13
+ console.log(" cargo install terminal-jarvis");
14
+
15
+ process.exit(0);
package/tsconfig.json ADDED
@@ -0,0 +1,18 @@
1
+ {
2
+ "compilerOptions": {
3
+ "target": "ES2020",
4
+ "module": "commonjs",
5
+ "lib": ["ES2020"],
6
+ "outDir": "./lib",
7
+ "rootDir": "./src",
8
+ "strict": true,
9
+ "esModuleInterop": true,
10
+ "skipLibCheck": true,
11
+ "forceConsistentCasingInFileNames": true,
12
+ "declaration": true,
13
+ "declarationMap": true,
14
+ "sourceMap": true
15
+ },
16
+ "include": ["src/**/*"],
17
+ "exclude": ["node_modules", "lib"]
18
+ }