clew-code 0.2.7 → 0.2.8
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 +292 -299
- package/dist/main.js +2745 -2869
- package/docs/architecture.html +148 -145
- package/docs/architecture.th.html +79 -78
- package/docs/clew-code-architecture.html +1125 -0
- package/docs/commands.html +224 -223
- package/docs/commands.th.html +131 -130
- package/docs/configuration.html +147 -145
- package/docs/configuration.th.html +108 -106
- package/docs/css/styles.css +48 -42
- package/docs/daemon.html +129 -128
- package/docs/daemon.th.html +73 -72
- package/docs/features/bridge-mode.html +99 -98
- package/docs/features/bridge-mode.th.html +90 -89
- package/docs/features/evals.html +182 -181
- package/docs/features/evals.th.html +90 -89
- package/docs/features/peer.html +178 -177
- package/docs/features/searxng-search.html +151 -150
- package/docs/features/searxng-search.th.html +95 -94
- package/docs/features/sentry-setup.html +157 -156
- package/docs/features/sentry-setup.th.html +97 -96
- package/docs/index.html +299 -298
- package/docs/index.th.html +292 -290
- package/docs/installation.html +105 -103
- package/docs/installation.th.html +105 -103
- package/docs/internals/growthbook-ab-testing.html +113 -112
- package/docs/internals/growthbook-ab-testing.th.html +81 -80
- package/docs/internals/hidden-features.html +149 -147
- package/docs/internals/hidden-features.th.html +109 -107
- package/docs/js/main.js +83 -3
- package/docs/loop.html +181 -180
- package/docs/loop.th.html +227 -226
- package/docs/mcp.html +247 -246
- package/docs/mcp.th.html +207 -206
- package/docs/models.html +111 -110
- package/docs/models.th.html +61 -60
- package/docs/peer.html +236 -235
- package/docs/peer.th.html +280 -279
- package/docs/permission-model.html +102 -101
- package/docs/permission-model.th.html +67 -66
- package/docs/plugins.html +102 -101
- package/docs/plugins.th.html +79 -78
- package/docs/providers.html +126 -117
- package/docs/providers.th.html +80 -78
- package/docs/quick-start.html +93 -92
- package/docs/quick-start.th.html +40 -39
- package/docs/research-memory.html +82 -79
- package/docs/research-memory.th.html +72 -71
- package/docs/skills.html +117 -116
- package/docs/skills.th.html +90 -89
- package/docs/tools.html +170 -169
- package/docs/tools.th.html +84 -83
- package/docs/troubleshooting.html +106 -105
- package/docs/troubleshooting.th.html +85 -84
- package/package.json +164 -162
- package/docs/taste.html +0 -436
- package/docs/taste.th.html +0 -236
package/package.json
CHANGED
|
@@ -1,162 +1,164 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "clew-code",
|
|
3
|
-
"version": "0.2.
|
|
4
|
-
"description": "ClewCode — multi-provider AI coding agent CLI",
|
|
5
|
-
"main": "./dist/main.js",
|
|
6
|
-
"type": "module",
|
|
7
|
-
"bin": {
|
|
8
|
-
"clew": "bin/clew.cjs",
|
|
9
|
-
"clewcode": "bin/clew.cjs"
|
|
10
|
-
},
|
|
11
|
-
"files": [
|
|
12
|
-
"bin/",
|
|
13
|
-
"dist/",
|
|
14
|
-
"docs/",
|
|
15
|
-
"README.md",
|
|
16
|
-
"LICENSE.md"
|
|
17
|
-
],
|
|
18
|
-
"repository": {
|
|
19
|
-
"type": "git",
|
|
20
|
-
"url": "git+https://github.com/ClewCode/ClewCode.git"
|
|
21
|
-
},
|
|
22
|
-
"bugs": {
|
|
23
|
-
"url": "https://github.com/ClewCode/ClewCode/issues"
|
|
24
|
-
},
|
|
25
|
-
"homepage": "https://github.com/ClewCode/ClewCode#readme",
|
|
26
|
-
"scripts": {
|
|
27
|
-
"dev": "bun --watch run --define.TRANSCRIPT_CLASSIFIER=true --define.CHICAGO_MCP=true --define.VOICE_MODE=true src/main.tsx",
|
|
28
|
-
"start": "bun run --define.VOICE_MODE=true src/main.tsx",
|
|
29
|
-
"dev:channels": "bun run --define.VOICE_MODE=true src/main.tsx -- --dangerously-load-development-channels server:clew-orc",
|
|
30
|
-
"build": "NODE_ENV=production bun build --production --define.TRANSCRIPT_CLASSIFIER=true --define.CHICAGO_MCP=true --define.VOICE_MODE=true src/main.tsx --outdir ./dist --target bun --external electron --external 'chromium-bidi*' --external '@ant/claude-for-chrome-mcp' --external '@anthropic-ai/bedrock-sdk' --external '@anthropic-ai/foundry-sdk' --external '@anthropic-ai/vertex-sdk' --external '@anthropic-ai/mcpb' --external '@aws-sdk/client-bedrock-runtime' --external 'google-auth-library' --external 'sharp' --external 'asciichart' --external 'audio-capture-napi' --external 'modifiers-napi' --external '@xenova/transformers' --external 'onnxruntime-node' --external playwright --external 'playwright-core'",
|
|
31
|
-
"prepublishOnly": "bun run build",
|
|
32
|
-
"test": "bun test",
|
|
33
|
-
"lint": "biome lint --write src/",
|
|
34
|
-
"lint:check": "biome lint src/",
|
|
35
|
-
"format": "biome format --write src/",
|
|
36
|
-
"format:check": "biome format src/",
|
|
37
|
-
"check": "biome check --write src/",
|
|
38
|
-
"check:ci": "biome ci src/",
|
|
39
|
-
"ast-grep": "bun x ast-grep",
|
|
40
|
-
"codegraph": "bun run scripts/codegraph.ts",
|
|
41
|
-
"preload": "bun run scripts/preload.ts",
|
|
42
|
-
"session": "bun run scripts/session.ts",
|
|
43
|
-
"relay": "bun run src/remote/relay-server.ts"
|
|
44
|
-
},
|
|
45
|
-
"keywords": [
|
|
46
|
-
"ai",
|
|
47
|
-
"coding-assistant",
|
|
48
|
-
"anthropic",
|
|
49
|
-
"openai",
|
|
50
|
-
"google",
|
|
51
|
-
"gemini",
|
|
52
|
-
"claude",
|
|
53
|
-
"gpt",
|
|
54
|
-
"openrouter",
|
|
55
|
-
"kilocode",
|
|
56
|
-
"opencode"
|
|
57
|
-
],
|
|
58
|
-
"author": "Dek1milliontoken",
|
|
59
|
-
"license": "SEE LICENSE.md",
|
|
60
|
-
"dependencies": {
|
|
61
|
-
"@
|
|
62
|
-
"@ai-sdk/
|
|
63
|
-
"@ai-sdk/
|
|
64
|
-
"@
|
|
65
|
-
"@anthropic-ai/
|
|
66
|
-
"@
|
|
67
|
-
"@aws-sdk/client-
|
|
68
|
-
"@
|
|
69
|
-
"@
|
|
70
|
-
"@
|
|
71
|
-
"@
|
|
72
|
-
"@
|
|
73
|
-
"@
|
|
74
|
-
"@
|
|
75
|
-
"@opentelemetry/
|
|
76
|
-
"@opentelemetry/exporter-logs-otlp-
|
|
77
|
-
"@opentelemetry/exporter-logs-otlp-
|
|
78
|
-
"@opentelemetry/exporter-
|
|
79
|
-
"@opentelemetry/exporter-metrics-otlp-
|
|
80
|
-
"@opentelemetry/exporter-metrics-otlp-
|
|
81
|
-
"@opentelemetry/exporter-
|
|
82
|
-
"@opentelemetry/exporter-
|
|
83
|
-
"@opentelemetry/exporter-trace-otlp-
|
|
84
|
-
"@opentelemetry/exporter-trace-otlp-
|
|
85
|
-
"@opentelemetry/
|
|
86
|
-
"@opentelemetry/
|
|
87
|
-
"@opentelemetry/sdk-
|
|
88
|
-
"@opentelemetry/sdk-
|
|
89
|
-
"@opentelemetry/sdk-
|
|
90
|
-
"@opentelemetry/sdk-trace-
|
|
91
|
-
"@opentelemetry/
|
|
92
|
-
"@
|
|
93
|
-
"@
|
|
94
|
-
"@types/react
|
|
95
|
-
"@types/
|
|
96
|
-
"@
|
|
97
|
-
"
|
|
98
|
-
"
|
|
99
|
-
"
|
|
100
|
-
"
|
|
101
|
-
"
|
|
102
|
-
"
|
|
103
|
-
"
|
|
104
|
-
"
|
|
105
|
-
"
|
|
106
|
-
"
|
|
107
|
-
"
|
|
108
|
-
"
|
|
109
|
-
"
|
|
110
|
-
"
|
|
111
|
-
"
|
|
112
|
-
"
|
|
113
|
-
"
|
|
114
|
-
"
|
|
115
|
-
"ink
|
|
116
|
-
"ink-
|
|
117
|
-
"ink-
|
|
118
|
-
"ink-
|
|
119
|
-
"
|
|
120
|
-
"
|
|
121
|
-
"
|
|
122
|
-
"
|
|
123
|
-
"
|
|
124
|
-
"
|
|
125
|
-
"
|
|
126
|
-
"
|
|
127
|
-
"
|
|
128
|
-
"
|
|
129
|
-
"
|
|
130
|
-
"
|
|
131
|
-
"
|
|
132
|
-
"
|
|
133
|
-
"
|
|
134
|
-
"
|
|
135
|
-
"
|
|
136
|
-
"
|
|
137
|
-
"react
|
|
138
|
-
"react-
|
|
139
|
-
"react-
|
|
140
|
-
"
|
|
141
|
-
"
|
|
142
|
-
"
|
|
143
|
-
"
|
|
144
|
-
"
|
|
145
|
-
"
|
|
146
|
-
"
|
|
147
|
-
"
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
"@
|
|
156
|
-
"@
|
|
157
|
-
"@types/
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
1
|
+
{
|
|
2
|
+
"name": "clew-code",
|
|
3
|
+
"version": "0.2.8",
|
|
4
|
+
"description": "ClewCode — multi-provider AI coding agent CLI",
|
|
5
|
+
"main": "./dist/main.js",
|
|
6
|
+
"type": "module",
|
|
7
|
+
"bin": {
|
|
8
|
+
"clew": "bin/clew.cjs",
|
|
9
|
+
"clewcode": "bin/clew.cjs"
|
|
10
|
+
},
|
|
11
|
+
"files": [
|
|
12
|
+
"bin/",
|
|
13
|
+
"dist/",
|
|
14
|
+
"docs/",
|
|
15
|
+
"README.md",
|
|
16
|
+
"LICENSE.md"
|
|
17
|
+
],
|
|
18
|
+
"repository": {
|
|
19
|
+
"type": "git",
|
|
20
|
+
"url": "git+https://github.com/ClewCode/ClewCode.git"
|
|
21
|
+
},
|
|
22
|
+
"bugs": {
|
|
23
|
+
"url": "https://github.com/ClewCode/ClewCode/issues"
|
|
24
|
+
},
|
|
25
|
+
"homepage": "https://github.com/ClewCode/ClewCode#readme",
|
|
26
|
+
"scripts": {
|
|
27
|
+
"dev": "bun --watch run --define.TRANSCRIPT_CLASSIFIER=true --define.CHICAGO_MCP=true --define.VOICE_MODE=true src/main.tsx",
|
|
28
|
+
"start": "bun run --define.VOICE_MODE=true src/main.tsx",
|
|
29
|
+
"dev:channels": "bun run --define.VOICE_MODE=true src/main.tsx -- --dangerously-load-development-channels server:clew-orc",
|
|
30
|
+
"build": "NODE_ENV=production bun build --production --define.TRANSCRIPT_CLASSIFIER=true --define.CHICAGO_MCP=true --define.VOICE_MODE=true src/main.tsx --outdir ./dist --target bun --external electron --external 'chromium-bidi*' --external '@ant/claude-for-chrome-mcp' --external '@anthropic-ai/bedrock-sdk' --external '@anthropic-ai/foundry-sdk' --external '@anthropic-ai/vertex-sdk' --external '@anthropic-ai/mcpb' --external '@aws-sdk/client-bedrock-runtime' --external 'google-auth-library' --external 'sharp' --external 'asciichart' --external 'audio-capture-napi' --external 'modifiers-napi' --external '@xenova/transformers' --external 'onnxruntime-node' --external playwright --external 'playwright-core'",
|
|
31
|
+
"prepublishOnly": "bun run build",
|
|
32
|
+
"test": "bun test",
|
|
33
|
+
"lint": "biome lint --write src/",
|
|
34
|
+
"lint:check": "biome lint src/",
|
|
35
|
+
"format": "biome format --write src/",
|
|
36
|
+
"format:check": "biome format src/",
|
|
37
|
+
"check": "biome check --write src/",
|
|
38
|
+
"check:ci": "biome ci src/",
|
|
39
|
+
"ast-grep": "bun x ast-grep",
|
|
40
|
+
"codegraph": "bun run scripts/codegraph.ts",
|
|
41
|
+
"preload": "bun run scripts/preload.ts",
|
|
42
|
+
"session": "bun run scripts/session.ts",
|
|
43
|
+
"relay": "bun run src/remote/relay-server.ts"
|
|
44
|
+
},
|
|
45
|
+
"keywords": [
|
|
46
|
+
"ai",
|
|
47
|
+
"coding-assistant",
|
|
48
|
+
"anthropic",
|
|
49
|
+
"openai",
|
|
50
|
+
"google",
|
|
51
|
+
"gemini",
|
|
52
|
+
"claude",
|
|
53
|
+
"gpt",
|
|
54
|
+
"openrouter",
|
|
55
|
+
"kilocode",
|
|
56
|
+
"opencode"
|
|
57
|
+
],
|
|
58
|
+
"author": "Dek1milliontoken",
|
|
59
|
+
"license": "SEE LICENSE.md",
|
|
60
|
+
"dependencies": {
|
|
61
|
+
"@agentclientprotocol/sdk": "^0.25.0",
|
|
62
|
+
"@ai-sdk/anthropic": "^3.0.0",
|
|
63
|
+
"@ai-sdk/google": "^3.0.0",
|
|
64
|
+
"@ai-sdk/openai": "^3.0.0",
|
|
65
|
+
"@anthropic-ai/sandbox-runtime": "0.0.50",
|
|
66
|
+
"@anthropic-ai/sdk": "^0.91.1",
|
|
67
|
+
"@aws-sdk/client-bedrock": "^3.1021.0",
|
|
68
|
+
"@aws-sdk/client-sts": "^3.1021.0",
|
|
69
|
+
"@azure/identity": "^4.13.1",
|
|
70
|
+
"@commander-js/extra-typings": "^14.0.0",
|
|
71
|
+
"@google/generative-ai": "0.24.1",
|
|
72
|
+
"@growthbook/growthbook": "^1.6.5",
|
|
73
|
+
"@modelcontextprotocol/sdk": "^1.29.0",
|
|
74
|
+
"@openrouter/ai-sdk-provider": "^1.5.0",
|
|
75
|
+
"@opentelemetry/api": "^1.9.1",
|
|
76
|
+
"@opentelemetry/exporter-logs-otlp-grpc": "^0.214.0",
|
|
77
|
+
"@opentelemetry/exporter-logs-otlp-http": "^0.214.0",
|
|
78
|
+
"@opentelemetry/exporter-logs-otlp-proto": "^0.214.0",
|
|
79
|
+
"@opentelemetry/exporter-metrics-otlp-grpc": "^0.214.0",
|
|
80
|
+
"@opentelemetry/exporter-metrics-otlp-http": "^0.214.0",
|
|
81
|
+
"@opentelemetry/exporter-metrics-otlp-proto": "^0.214.0",
|
|
82
|
+
"@opentelemetry/exporter-prometheus": "^0.214.0",
|
|
83
|
+
"@opentelemetry/exporter-trace-otlp-grpc": "^0.214.0",
|
|
84
|
+
"@opentelemetry/exporter-trace-otlp-http": "^0.214.0",
|
|
85
|
+
"@opentelemetry/exporter-trace-otlp-proto": "^0.214.0",
|
|
86
|
+
"@opentelemetry/resources": "2.6.1",
|
|
87
|
+
"@opentelemetry/sdk-logs": "^0.214.0",
|
|
88
|
+
"@opentelemetry/sdk-metrics": "2.6.1",
|
|
89
|
+
"@opentelemetry/sdk-node": "^0.214.0",
|
|
90
|
+
"@opentelemetry/sdk-trace-base": "2.6.1",
|
|
91
|
+
"@opentelemetry/sdk-trace-node": "2.6.1",
|
|
92
|
+
"@opentelemetry/semantic-conventions": "1.40.0",
|
|
93
|
+
"@sentry/node": "^10.53.1",
|
|
94
|
+
"@types/react": "^19.0.8",
|
|
95
|
+
"@types/react-dom": "^19.0.3",
|
|
96
|
+
"@types/ws": "^8.18.1",
|
|
97
|
+
"@xenova/transformers": "^2.17.2",
|
|
98
|
+
"acp-sdk": "^1.0.3",
|
|
99
|
+
"asciichart": "^1.5.25",
|
|
100
|
+
"axios": "^1.14.0",
|
|
101
|
+
"bidi-js": "1.0.3",
|
|
102
|
+
"chalk": "^5.4.1",
|
|
103
|
+
"chokidar": "4.0.3",
|
|
104
|
+
"commander": "^14.0.0",
|
|
105
|
+
"conf": "^13.1.0",
|
|
106
|
+
"diff": "^8.0.4",
|
|
107
|
+
"dotenv": "^16.4.7",
|
|
108
|
+
"execa": "^9.6.1",
|
|
109
|
+
"fast-deep-equal": "^3.1.3",
|
|
110
|
+
"fflate": "^0.8.2",
|
|
111
|
+
"fuse.js": "^7.1.0",
|
|
112
|
+
"fzf": "^0.5.2",
|
|
113
|
+
"https-proxy-agent": "^9.0.0",
|
|
114
|
+
"ignore": "^7.0.5",
|
|
115
|
+
"ink": "^5.1.0",
|
|
116
|
+
"ink-divider": "^4.0.0",
|
|
117
|
+
"ink-markdown": "^1.0.2",
|
|
118
|
+
"ink-select-input": "^6.0.0",
|
|
119
|
+
"ink-spinner": "^5.0.0",
|
|
120
|
+
"ink-text-input": "^6.0.0",
|
|
121
|
+
"is-docker": "^3.0.0",
|
|
122
|
+
"is-wsl": "^3.1.0",
|
|
123
|
+
"jsonc-parser": "^3.3.1",
|
|
124
|
+
"jsonrepair": "^3.14.0",
|
|
125
|
+
"lodash-es": "^4.17.21",
|
|
126
|
+
"lru-cache": "^11.0.0",
|
|
127
|
+
"lucide-react": "^0.468.0",
|
|
128
|
+
"node-fetch": "^3.3.2",
|
|
129
|
+
"node-pty": "^1.1.0",
|
|
130
|
+
"open": "^10.1.0",
|
|
131
|
+
"openai": "^4.104.0",
|
|
132
|
+
"ora": "^8.1.1",
|
|
133
|
+
"p-map": "^7.0.4",
|
|
134
|
+
"picomatch": "^4.0.4",
|
|
135
|
+
"proper-lockfile": "^4.1.2",
|
|
136
|
+
"qrcode": "^1.5.4",
|
|
137
|
+
"react": "^19.0.0",
|
|
138
|
+
"react-dom": "^19.0.0",
|
|
139
|
+
"react-markdown": "^10.1.0",
|
|
140
|
+
"react-reconciler": "0.33.0",
|
|
141
|
+
"react-syntax-highlighter": "^16.1.1",
|
|
142
|
+
"shell-quote": "^1.8.3",
|
|
143
|
+
"tree-kill": "^1.2.2",
|
|
144
|
+
"turndown": "^7.2.2",
|
|
145
|
+
"usehooks-ts": "^3.1.1",
|
|
146
|
+
"valibot": "^0.42.0",
|
|
147
|
+
"vscode-jsonrpc": "^8.2.1",
|
|
148
|
+
"xss": "^1.0.15",
|
|
149
|
+
"zod": "^3.24.1"
|
|
150
|
+
},
|
|
151
|
+
"overrides": {
|
|
152
|
+
"react-reconciler": "0.33.0"
|
|
153
|
+
},
|
|
154
|
+
"devDependencies": {
|
|
155
|
+
"@ast-grep/cli": "^0.42.2",
|
|
156
|
+
"@biomejs/biome": "^2.4.15",
|
|
157
|
+
"@types/bun": "latest",
|
|
158
|
+
"@types/lodash-es": "^4.17.12",
|
|
159
|
+
"@types/semver": "^7.7.1"
|
|
160
|
+
},
|
|
161
|
+
"optionalDependencies": {
|
|
162
|
+
"sharp": "0.32.6"
|
|
163
|
+
}
|
|
164
|
+
}
|