cliskill 1.1.8 → 1.2.0

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/package.json CHANGED
@@ -1,85 +1,109 @@
1
- {
2
- "name": "cliskill",
3
- "version": "1.1.8",
4
- "description": "Universal terminal AI assistant with multi-provider LLM support, 15 built-in tools, streaming execution, and agent orchestration",
5
- "type": "module",
6
- "main": "dist/index.js",
7
- "types": "dist/index.d.ts",
8
- "exports": {
9
- ".": {
10
- "types": "./dist/index.d.ts",
11
- "import": "./dist/index.js"
12
- }
13
- },
14
- "bin": {
15
- "cliskill": "dist/bootstrap/cli.js"
16
- },
17
- "sideEffects": false,
18
- "scripts": {
19
- "build": "tsup",
20
- "dev": "tsup --watch",
21
- "start": "node dist/bootstrap/cli.js",
22
- "prepublishOnly": "npm run build",
23
- "test": "vitest run",
24
- "test:watch": "vitest",
25
- "typecheck": "tsc --noEmit",
26
- "lint": "tsc --noEmit"
27
- },
28
- "dependencies": {
29
- "commander": "^13.1.0",
30
- "ink": "^5.2.0",
31
- "react": "^18.3.1",
32
- "zod": "^3.24.0",
33
- "chalk": "^5.4.0",
34
- "ora": "^8.1.0",
35
- "ssh2": "^1.16.0"
36
- },
37
- "devDependencies": {
38
- "typescript": "^5.7.0",
39
- "tsup": "^8.3.0",
40
- "vitest": "^3.0.0",
41
- "@types/react": "^18.3.0",
42
- "@types/node": "^22.10.0",
43
- "ink-testing-library": "^4.0.0",
44
- "@types/ssh2": "^1.15.0"
45
- },
46
- "keywords": [
47
- "cli",
48
- "ai",
49
- "assistant",
50
- "terminal",
51
- "llm",
52
- "agent",
53
- "chatgpt",
54
- "openai",
55
- "gemini",
56
- "glm",
57
- "codex",
58
- "tools",
59
- "streaming",
60
- "multi-agent",
61
- "mcp",
62
- "tui"
63
- ],
64
- "license": "MIT",
65
- "homepage": "https://www.npmjs.com/package/cliskill",
66
- "bugs": {
67
- "url": "https://github.com/nic11/cliskill/issues"
68
- },
69
- "repository": {
70
- "type": "git",
71
- "url": "git+https://github.com/nic11/cliskill.git"
72
- },
73
- "files": [
74
- "dist/",
75
- "README.md",
76
- "LICENSE"
77
- ],
78
- "publishConfig": {
79
- "access": "public",
80
- "registry": "https://registry.npmjs.org/"
81
- },
82
- "engines": {
83
- "node": ">=20.0.0"
84
- }
85
- }
1
+ {
2
+ "name": "cliskill",
3
+ "version": "1.2.0",
4
+ "description": "Universal terminal AI assistant with multi-provider LLM support, 15 built-in tools, streaming execution, and agent orchestration",
5
+ "type": "module",
6
+ "main": "dist/index.js",
7
+ "types": "dist/index.d.ts",
8
+ "exports": {
9
+ ".": {
10
+ "types": "./dist/index.d.ts",
11
+ "import": "./dist/index.js"
12
+ }
13
+ },
14
+ "bin": {
15
+ "cliskill": "dist/bootstrap/cli.js"
16
+ },
17
+ "sideEffects": false,
18
+ "scripts": {
19
+ "build": "tsup",
20
+ "dev": "tsup --watch",
21
+ "start": "node dist/bootstrap/cli.js",
22
+ "prepublishOnly": "npm run build",
23
+ "test": "vitest run",
24
+ "test:watch": "vitest",
25
+ "typecheck": "tsc --noEmit",
26
+ "lint": "tsc --noEmit",
27
+ "build:ui": "vite build",
28
+ "dev:ui": "vite",
29
+ "tauri": "tauri"
30
+ },
31
+ "dependencies": {
32
+ "@tauri-apps/api": "^2.10.1",
33
+ "@tauri-apps/plugin-clipboard-manager": "^2.3.2",
34
+ "@tauri-apps/plugin-dialog": "^2.7.0",
35
+ "@tauri-apps/plugin-fs": "^2.5.0",
36
+ "@tauri-apps/plugin-http": "^2.5.8",
37
+ "@tauri-apps/plugin-log": "^2.8.0",
38
+ "@tauri-apps/plugin-os": "^2.3.2",
39
+ "@tauri-apps/plugin-process": "^2.3.1",
40
+ "@tauri-apps/plugin-shell": "^2.3.5",
41
+ "chalk": "^5.4.0",
42
+ "commander": "^13.1.0",
43
+ "highlight.js": "^11.11.1",
44
+ "ink": "^5.2.0",
45
+ "ora": "^8.1.0",
46
+ "react": "^18.3.1",
47
+ "react-dom": "^18.3.1",
48
+ "react-markdown": "^10.1.0",
49
+ "rehype-highlight": "^7.0.2",
50
+ "remark-gfm": "^4.0.1",
51
+ "ssh2": "^1.16.0",
52
+ "zod": "^3.24.0",
53
+ "zod-to-json-schema": "^3.25.2",
54
+ "zustand": "^5.0.12"
55
+ },
56
+ "devDependencies": {
57
+ "@tauri-apps/cli": "^2.10.1",
58
+ "@types/node": "^22.10.0",
59
+ "@types/react": "^18.3.28",
60
+ "@types/react-dom": "^18.3.7",
61
+ "@types/ssh2": "^1.15.0",
62
+ "@vitejs/plugin-react": "^4.7.0",
63
+ "ink-testing-library": "^4.0.0",
64
+ "tsup": "^8.3.0",
65
+ "typescript": "^5.9.3",
66
+ "vite": "^6.4.2",
67
+ "vite-tsconfig-paths": "^6.1.1",
68
+ "vitest": "^3.0.0"
69
+ },
70
+ "keywords": [
71
+ "cli",
72
+ "ai",
73
+ "assistant",
74
+ "terminal",
75
+ "llm",
76
+ "agent",
77
+ "chatgpt",
78
+ "openai",
79
+ "gemini",
80
+ "glm",
81
+ "codex",
82
+ "tools",
83
+ "streaming",
84
+ "multi-agent",
85
+ "mcp",
86
+ "tui"
87
+ ],
88
+ "license": "MIT",
89
+ "homepage": "https://www.npmjs.com/package/cliskill",
90
+ "bugs": {
91
+ "url": "https://github.com/nic11/cliskill/issues"
92
+ },
93
+ "repository": {
94
+ "type": "git",
95
+ "url": "git+https://github.com/nic11/cliskill.git"
96
+ },
97
+ "files": [
98
+ "dist/",
99
+ "README.md",
100
+ "LICENSE"
101
+ ],
102
+ "publishConfig": {
103
+ "access": "public",
104
+ "registry": "https://registry.npmjs.org/"
105
+ },
106
+ "engines": {
107
+ "node": ">=20.0.0"
108
+ }
109
+ }