@ritwikamit/cl8 0.1.0-alpha.15 → 0.1.0-alpha.17
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 +547 -547
- package/dist/agents/Agent.d.ts +0 -1
- package/dist/agents/Agent.d.ts.map +1 -1
- package/dist/agents/Agent.js +6 -24
- package/dist/agents/Agent.js.map +1 -1
- package/dist/agents/Planner.d.ts +0 -1
- package/dist/agents/Planner.d.ts.map +1 -1
- package/dist/agents/Planner.js +56 -40
- package/dist/agents/Planner.js.map +1 -1
- package/dist/bin/jarvis.d.ts +3 -0
- package/dist/bin/jarvis.d.ts.map +1 -0
- package/dist/bin/jarvis.js +19 -0
- package/dist/bin/jarvis.js.map +1 -0
- package/dist/core/Loop.d.ts.map +1 -1
- package/dist/core/Loop.js +14 -7
- package/dist/core/Loop.js.map +1 -1
- package/dist/types/agent.d.ts +1 -0
- package/dist/types/agent.d.ts.map +1 -1
- package/dist/ui/splash-screen/gradient-logo.d.ts +2 -0
- package/dist/ui/splash-screen/gradient-logo.d.ts.map +1 -0
- package/dist/ui/splash-screen/gradient-logo.js +20 -0
- package/dist/ui/splash-screen/gradient-logo.js.map +1 -0
- package/dist/ui/startup-tips.json +22 -0
- package/package.json +89 -89
package/package.json
CHANGED
|
@@ -1,89 +1,89 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@ritwikamit/cl8",
|
|
3
|
-
"version": "0.1.0-alpha.
|
|
4
|
-
"type": "module",
|
|
5
|
-
"description": "Terminal-first AI coding + automation assistant. Powered by OpenAI, Gemini, or Ollama.",
|
|
6
|
-
"keywords": [
|
|
7
|
-
"ai",
|
|
8
|
-
"cli",
|
|
9
|
-
"coding-agent",
|
|
10
|
-
"terminal",
|
|
11
|
-
"assistant",
|
|
12
|
-
"openai",
|
|
13
|
-
"gemini",
|
|
14
|
-
"ollama",
|
|
15
|
-
"developer-tools",
|
|
16
|
-
"productivity"
|
|
17
|
-
],
|
|
18
|
-
"homepage": "https://github.com/ritwikamit/cl8#readme",
|
|
19
|
-
"repository": {
|
|
20
|
-
"type": "git",
|
|
21
|
-
"url": "git+https://github.com/ritwikamit/cl8.git"
|
|
22
|
-
},
|
|
23
|
-
"bugs": {
|
|
24
|
-
"url": "https://github.com/ritwikamit/cl8/issues"
|
|
25
|
-
},
|
|
26
|
-
"license": "MIT",
|
|
27
|
-
"author": "ritwikamit",
|
|
28
|
-
"main": "dist/index.js",
|
|
29
|
-
"bin": {
|
|
30
|
-
"cl8": "dist/bin/cl8.js"
|
|
31
|
-
},
|
|
32
|
-
"files": [
|
|
33
|
-
"dist",
|
|
34
|
-
"README.md",
|
|
35
|
-
"LICENSE"
|
|
36
|
-
],
|
|
37
|
-
"scripts": {
|
|
38
|
-
"build": "tsc -p tsconfig.json",
|
|
39
|
-
"build:watch": "tsc -p tsconfig.json --watch",
|
|
40
|
-
"clean": "rimraf dist",
|
|
41
|
-
"dev": "tsx src/bin/cl8.ts",
|
|
42
|
-
"start": "node dist/bin/cl8.js",
|
|
43
|
-
"lint": "eslint src --ext .ts",
|
|
44
|
-
"lint:fix": "eslint src --ext .ts --fix",
|
|
45
|
-
"typecheck": "tsc --noEmit -p tsconfig.json",
|
|
46
|
-
"test": "jest --passWithNoTests",
|
|
47
|
-
"test:watch": "jest --watch --passWithNoTests",
|
|
48
|
-
"test:coverage": "jest --coverage --passWithNoTests",
|
|
49
|
-
"prepublishOnly": "npm run build",
|
|
50
|
-
"postinstall": "node -e \"console.log('\\n CL8 installed! Run \\'cl8\\' to start.\\n')\""
|
|
51
|
-
},
|
|
52
|
-
"publishConfig": {
|
|
53
|
-
"access": "public"
|
|
54
|
-
},
|
|
55
|
-
"engines": {
|
|
56
|
-
"node": ">=18.0.0"
|
|
57
|
-
},
|
|
58
|
-
"dependencies": {
|
|
59
|
-
"@google/generative-ai": "^0.21.0",
|
|
60
|
-
"chalk": "^5.4.0",
|
|
61
|
-
"commander": "^12.1.0",
|
|
62
|
-
"conf": "^13.1.0",
|
|
63
|
-
"dotenv": "^16.4.7",
|
|
64
|
-
"figlet": "^1.8.0",
|
|
65
|
-
"gradient-string": "^2.0.2",
|
|
66
|
-
"inquirer": "^12.4.0",
|
|
67
|
-
"marked": "^15.0.0",
|
|
68
|
-
"nanoid": "^5.0.9",
|
|
69
|
-
"openai": "^4.77.0",
|
|
70
|
-
"ora": "^8.1.1",
|
|
71
|
-
"terminal-link": "^3.0.0",
|
|
72
|
-
"undici": "^7.2.0",
|
|
73
|
-
"winston": "^3.17.0"
|
|
74
|
-
},
|
|
75
|
-
"devDependencies": {
|
|
76
|
-
"@types/figlet": "^1.7.0",
|
|
77
|
-
"@types/gradient-string": "^1.1.6",
|
|
78
|
-
"@types/inquirer": "^9.0.7",
|
|
79
|
-
"@types/jest": "^29.5.14",
|
|
80
|
-
"@types/node": "^22.10.0",
|
|
81
|
-
"eslint": "^9.17.0",
|
|
82
|
-
"jest": "^29.7.0",
|
|
83
|
-
"rimraf": "^6.0.1",
|
|
84
|
-
"ts-jest": "^29.2.5",
|
|
85
|
-
"tsx": "^4.19.0",
|
|
86
|
-
"typescript": "^5.7.0",
|
|
87
|
-
"typescript-eslint": "^8.60.0"
|
|
88
|
-
}
|
|
89
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@ritwikamit/cl8",
|
|
3
|
+
"version": "0.1.0-alpha.17",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"description": "Terminal-first AI coding + automation assistant. Powered by OpenAI, Gemini, or Ollama.",
|
|
6
|
+
"keywords": [
|
|
7
|
+
"ai",
|
|
8
|
+
"cli",
|
|
9
|
+
"coding-agent",
|
|
10
|
+
"terminal",
|
|
11
|
+
"assistant",
|
|
12
|
+
"openai",
|
|
13
|
+
"gemini",
|
|
14
|
+
"ollama",
|
|
15
|
+
"developer-tools",
|
|
16
|
+
"productivity"
|
|
17
|
+
],
|
|
18
|
+
"homepage": "https://github.com/ritwikamit/cl8#readme",
|
|
19
|
+
"repository": {
|
|
20
|
+
"type": "git",
|
|
21
|
+
"url": "git+https://github.com/ritwikamit/cl8.git"
|
|
22
|
+
},
|
|
23
|
+
"bugs": {
|
|
24
|
+
"url": "https://github.com/ritwikamit/cl8/issues"
|
|
25
|
+
},
|
|
26
|
+
"license": "MIT",
|
|
27
|
+
"author": "ritwikamit",
|
|
28
|
+
"main": "dist/index.js",
|
|
29
|
+
"bin": {
|
|
30
|
+
"cl8": "dist/bin/cl8.js"
|
|
31
|
+
},
|
|
32
|
+
"files": [
|
|
33
|
+
"dist",
|
|
34
|
+
"README.md",
|
|
35
|
+
"LICENSE"
|
|
36
|
+
],
|
|
37
|
+
"scripts": {
|
|
38
|
+
"build": "tsc -p tsconfig.json",
|
|
39
|
+
"build:watch": "tsc -p tsconfig.json --watch",
|
|
40
|
+
"clean": "rimraf dist",
|
|
41
|
+
"dev": "tsx src/bin/cl8.ts",
|
|
42
|
+
"start": "node dist/bin/cl8.js",
|
|
43
|
+
"lint": "eslint src --ext .ts",
|
|
44
|
+
"lint:fix": "eslint src --ext .ts --fix",
|
|
45
|
+
"typecheck": "tsc --noEmit -p tsconfig.json",
|
|
46
|
+
"test": "jest --passWithNoTests",
|
|
47
|
+
"test:watch": "jest --watch --passWithNoTests",
|
|
48
|
+
"test:coverage": "jest --coverage --passWithNoTests",
|
|
49
|
+
"prepublishOnly": "npm run build",
|
|
50
|
+
"postinstall": "node -e \"console.log('\\n CL8 installed! Run \\'cl8\\' to start.\\n')\""
|
|
51
|
+
},
|
|
52
|
+
"publishConfig": {
|
|
53
|
+
"access": "public"
|
|
54
|
+
},
|
|
55
|
+
"engines": {
|
|
56
|
+
"node": ">=18.0.0"
|
|
57
|
+
},
|
|
58
|
+
"dependencies": {
|
|
59
|
+
"@google/generative-ai": "^0.21.0",
|
|
60
|
+
"chalk": "^5.4.0",
|
|
61
|
+
"commander": "^12.1.0",
|
|
62
|
+
"conf": "^13.1.0",
|
|
63
|
+
"dotenv": "^16.4.7",
|
|
64
|
+
"figlet": "^1.8.0",
|
|
65
|
+
"gradient-string": "^2.0.2",
|
|
66
|
+
"inquirer": "^12.4.0",
|
|
67
|
+
"marked": "^15.0.0",
|
|
68
|
+
"nanoid": "^5.0.9",
|
|
69
|
+
"openai": "^4.77.0",
|
|
70
|
+
"ora": "^8.1.1",
|
|
71
|
+
"terminal-link": "^3.0.0",
|
|
72
|
+
"undici": "^7.2.0",
|
|
73
|
+
"winston": "^3.17.0"
|
|
74
|
+
},
|
|
75
|
+
"devDependencies": {
|
|
76
|
+
"@types/figlet": "^1.7.0",
|
|
77
|
+
"@types/gradient-string": "^1.1.6",
|
|
78
|
+
"@types/inquirer": "^9.0.7",
|
|
79
|
+
"@types/jest": "^29.5.14",
|
|
80
|
+
"@types/node": "^22.10.0",
|
|
81
|
+
"eslint": "^9.17.0",
|
|
82
|
+
"jest": "^29.7.0",
|
|
83
|
+
"rimraf": "^6.0.1",
|
|
84
|
+
"ts-jest": "^29.2.5",
|
|
85
|
+
"tsx": "^4.19.0",
|
|
86
|
+
"typescript": "^5.7.0",
|
|
87
|
+
"typescript-eslint": "^8.60.0"
|
|
88
|
+
}
|
|
89
|
+
}
|