clew-code 0.2.28 → 0.2.30

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.
Files changed (52) hide show
  1. package/README.md +38 -28
  2. package/bin/clew.cjs +2 -2
  3. package/dist/main.js +2318 -2331
  4. package/docs/architecture.html +90 -91
  5. package/docs/changelog.html +141 -150
  6. package/docs/cli-reference.html +89 -90
  7. package/docs/commands.html +10 -9
  8. package/docs/daemon.html +62 -62
  9. package/docs/generated/providers.html +625 -0
  10. package/docs/generated/tools.html +559 -0
  11. package/docs/index.html +10 -13
  12. package/docs/personal-profile.html +3 -3
  13. package/docs/providers.html +625 -87
  14. package/docs/quick-start.html +81 -81
  15. package/docs/tools.html +551 -175
  16. package/docs/troubleshooting.html +86 -86
  17. package/package.json +165 -165
  18. package/scripts/auto-close-duplicates.ts +277 -0
  19. package/scripts/backfill-duplicate-comments.ts +213 -0
  20. package/scripts/codegraph.ts +221 -0
  21. package/scripts/comment-on-duplicates.sh +95 -0
  22. package/scripts/edit-issue-labels.sh +84 -0
  23. package/scripts/final-peer-rename.mjs +46 -0
  24. package/scripts/fix-encoding.mjs +83 -0
  25. package/scripts/fix-inconsistencies.mjs +67 -0
  26. package/scripts/generate-docs.ts +307 -0
  27. package/scripts/gh.sh +96 -0
  28. package/scripts/install.ps1 +37 -0
  29. package/scripts/install.sh +49 -0
  30. package/scripts/issue-lifecycle.ts +38 -0
  31. package/scripts/lifecycle-comment.ts +53 -0
  32. package/scripts/normalize-html.mjs +37 -0
  33. package/scripts/preload.ts +159 -0
  34. package/scripts/rename-content-peer-to-swarm.mjs +67 -0
  35. package/scripts/rename-hooks-mesh.mjs +6 -0
  36. package/scripts/rename-peer-to-swarm.mjs +62 -0
  37. package/scripts/run_devcontainer_claude_code.ps1 +152 -0
  38. package/scripts/scrape.py +82 -0
  39. package/scripts/session.ts +195 -0
  40. package/scripts/sweep.ts +168 -0
  41. package/scripts/write-discovery-test.cjs +93 -0
  42. package/scripts/write-discovery-test2.cjs +65 -0
  43. package/scripts/write-server-final.cjs +108 -0
  44. package/scripts/write-server-test.cjs +69 -0
  45. package/scripts/write-server-test2.cjs +99 -0
  46. package/scripts/write-server-test3.cjs +59 -0
  47. package/scripts/write-server-test4.cjs +108 -0
  48. package/scripts/write-server-v2.cjs +142 -0
  49. package/scripts/write-server-v2b.cjs +129 -0
  50. package/scripts/write-server-v2c.cjs +136 -0
  51. package/scripts/write-store-test.cjs +12 -0
  52. package/scripts/write-store-test2.cjs +163 -0
@@ -1,86 +1,86 @@
1
- <!DOCTYPE html>
2
- <html lang="en">
3
- <head>
4
- <meta charset="UTF-8">
5
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
- <title>Troubleshooting — Clew Code</title>
7
- <meta name="description" href="Common issues and solutions for Clew Code.">
8
- <link rel="icon" type="image/svg+xml" href="assets/clew.svg">
9
- <link rel="preconnect" href="https://fonts.googleapis.com">
10
- <link href="https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500;600;700&display=swap" rel="stylesheet">
11
- <link rel="stylesheet" href="css/styles.css">
12
- </head>
13
- <body>
14
- <header class="header"></header>
15
- <div id="sidebarOverlay" class="sidebar-overlay"></div>
16
- <aside id="sidebar" class="sidebar"></aside>
17
-
18
- <div class="content-wrap">
19
- <div class="content">
20
-
21
- <div class="breadcrumbs"><a href="index.html">Home</a><span class="sep">/</span><span class="current">Troubleshooting</span></div>
22
-
23
- <h1>Troubleshooting</h1>
24
-
25
- <h2 id="no-provider">No Provider Configured</h2>
26
- <p>If Clew doesn't start, set at least one provider API key in your environment:</p>
27
- <pre><code class="language-bash">export ANTHROPIC_API_KEY=sk-ant-...
28
- clew
29
- </code></pre>
30
- <p>Or use the <code>/model</code> command inside the REPL to switch providers.</p>
31
-
32
- <h2 id="build-errors">Build Errors on Windows</h2>
33
- <pre><code class="language-powershell">Remove-Item -Recurse -Force node_modules
34
- bun install
35
- bun run dev
36
- </code></pre>
37
-
38
- <h2 id="mesh-connectivity">Mesh / Peer Discovery Not Working</h2>
39
- <ul>
40
- <li>Ensure both instances are on the same LAN</li>
41
- <li>Check that UDP multicast is not blocked by your firewall</li>
42
- <li>Run <code>/mesh discover</code> with a longer timeout</li>
43
- <li>Try sharing via file registry: <code>/mesh share</code></li>
44
- </ul>
45
-
46
- <h2 id="mcp-connection">MCP Server Connection Failures</h2>
47
- <ul>
48
- <li>Verify the server command exists (<code>which npx</code>, <code>which uvx</code>)</li>
49
- <li>Check <code>.mcp.json</code> syntax</li>
50
- <li>Run <code>/mcp list</code> to see all connected servers</li>
51
- <li>For SSE servers, verify the remote URL is reachable</li>
52
- </ul>
53
-
54
- <h2 id="context-limit">Context Limit Reached</h2>
55
- <p>Use the compact command to compress conversation history:</p>
56
- <pre><code class="language-bash">❯ /compact
57
- </code></pre>
58
- <p>This triggers the multi-pass context compaction system.</p>
59
-
60
- <h2 id="permission-denied">Permission Denied Errors</h2>
61
- <p>Switch to a permissive mode or configure allow rules:</p>
62
- <pre><code class="language-bash">❯ /permissions auto # auto-approve safe tools
63
- ❯ /permissions plan # full bypass for planning
64
- </code></pre>
65
- <p>See <a href="permission-model.html">Permission Model</a> for details.</p>
66
-
67
- <h2 id="provider-switch">Provider Switch Issues</h2>
68
- <ul>
69
- <li>Ensure the corresponding API key is set</li>
70
- <li>Some models have tool-calling limitations</li>
71
- <li>Run <code>/model list</code> to see available models with capability tags</li>
72
- </ul>
73
-
74
- <h2 id="logs">Getting Help</h2>
75
- <ul>
76
- <li>Run <code>/doctor</code> for system diagnostics</li>
77
- <li>Run <code>/status</code> for session info</li>
78
- <li>Check <code>.session/</code> for session logs</li>
79
- <li><a href="https://github.com/ClewCode/ClewCode/issues">Open a GitHub issue</a></li>
80
- </ul>
81
- </div>
82
- </div>
83
-
84
- <script src="js/main.js"></script>
85
- </body>
86
- </html>
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Troubleshooting — Clew Code</title>
7
+ <meta name="description" href="Common issues and solutions for Clew Code.">
8
+ <link rel="icon" type="image/svg+xml" href="assets/clew.svg">
9
+ <link rel="preconnect" href="https://fonts.googleapis.com">
10
+ <link href="https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500;600;700&display=swap" rel="stylesheet">
11
+ <link rel="stylesheet" href="css/styles.css">
12
+ </head>
13
+ <body>
14
+ <header class="header"></header>
15
+ <div id="sidebarOverlay" class="sidebar-overlay"></div>
16
+ <aside id="sidebar" class="sidebar"></aside>
17
+
18
+ <div class="content-wrap">
19
+ <div class="content">
20
+
21
+ <div class="breadcrumbs"><a href="index.html">Home</a><span class="sep">/</span><span class="current">Troubleshooting</span></div>
22
+
23
+ <h1>Troubleshooting</h1>
24
+
25
+ <h2 id="no-provider">No Provider Configured</h2>
26
+ <p>If Clew doesn't start, set at least one provider API key in your environment:</p>
27
+ <pre><code class="language-bash">export ANTHROPIC_API_KEY=sk-ant-...
28
+ clew
29
+ </code></pre>
30
+ <p>Or use the <code>/model</code> command inside the REPL to switch providers.</p>
31
+
32
+ <h2 id="build-errors">Build Errors on Windows</h2>
33
+ <pre><code class="language-powershell">Remove-Item -Recurse -Force node_modules
34
+ bun install
35
+ bun run dev
36
+ </code></pre>
37
+
38
+ <h2 id="peer-connectivity">Peer / Peer Discovery Not Working</h2>
39
+ <ul>
40
+ <li>Ensure both instances are on the same LAN</li>
41
+ <li>Check that UDP multicast is not blocked by your firewall</li>
42
+ <li>Run <code>/peer discover</code> with a longer timeout</li>
43
+ <li>Try sharing via file registry: <code>/peer share</code></li>
44
+ </ul>
45
+
46
+ <h2 id="mcp-connection">MCP Server Connection Failures</h2>
47
+ <ul>
48
+ <li>Verify the server command exists (<code>which npx</code>, <code>which uvx</code>)</li>
49
+ <li>Check <code>.mcp.json</code> syntax</li>
50
+ <li>Run <code>/mcp list</code> to see all connected servers</li>
51
+ <li>For SSE servers, verify the remote URL is reachable</li>
52
+ </ul>
53
+
54
+ <h2 id="context-limit">Context Limit Reached</h2>
55
+ <p>Use the compact command to compress conversation history:</p>
56
+ <pre><code class="language-bash">❯ /compact
57
+ </code></pre>
58
+ <p>This triggers the multi-pass context compaction system.</p>
59
+
60
+ <h2 id="permission-denied">Permission Denied Errors</h2>
61
+ <p>Switch to a permissive mode or configure allow rules:</p>
62
+ <pre><code class="language-bash">❯ /permissions auto # auto-approve safe tools
63
+ ❯ /permissions plan # full bypass for planning
64
+ </code></pre>
65
+ <p>See <a href="permission-model.html">Permission Model</a> for details.</p>
66
+
67
+ <h2 id="provider-switch">Provider Switch Issues</h2>
68
+ <ul>
69
+ <li>Ensure the corresponding API key is set</li>
70
+ <li>Some models have tool-calling limitations</li>
71
+ <li>Run <code>/model list</code> to see available models with capability tags</li>
72
+ </ul>
73
+
74
+ <h2 id="logs">Getting Help</h2>
75
+ <ul>
76
+ <li>Run <code>/doctor</code> for system diagnostics</li>
77
+ <li>Run <code>/status</code> for session info</li>
78
+ <li>Check <code>.session/</code> for session logs</li>
79
+ <li><a href="https://github.com/ClewCode/ClewCode/issues">Open a GitHub issue</a></li>
80
+ </ul>
81
+ </div>
82
+ </div>
83
+
84
+ <script src="js/main.js"></script>
85
+ </body>
86
+ </html>
package/package.json CHANGED
@@ -1,165 +1,165 @@
1
- {
2
- "name": "clew-code",
3
- "version": "0.2.28",
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 --define.MACRO.VERSION='\"0.2.27\"' --define.MACRO.PACKAGE_URL='\"clew-code\"' --define.MACRO.FEEDBACK_CHANNEL='\"https://github.com/ClewCode/ClewCode/issues\"' --define.MACRO.ISSUES_EXPLAINER='\"visit https://github.com/ClewCode/ClewCode/issues\"' src/main.tsx",
28
- "start": "bun run --define.VOICE_MODE=true --define.MACRO.VERSION='\"0.2.27\"' --define.MACRO.PACKAGE_URL='\"clew-code\"' src/main.tsx",
29
- "dev:channels": "bun run --define.VOICE_MODE=true --define.MACRO.VERSION='\"0.2.27\"' --define.MACRO.PACKAGE_URL='\"clew-code\"' 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 --define.MACRO.VERSION='\"0.2.27\"' --define.MACRO.PACKAGE_URL='\"clew-code\"' --define.MACRO.FEEDBACK_CHANNEL='\"https://github.com/ClewCode/ClewCode/issues\"' --define.MACRO.ISSUES_EXPLAINER='\"visit https://github.com/ClewCode/ClewCode/issues\"' 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' --external 'node-pty'",
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
- "docs:generate": "bun run scripts/generate-docs.ts",
42
- "docs:watch": "bun --watch run scripts/generate-docs.ts",
43
- "preload": "bun run scripts/preload.ts",
44
- "session": "bun run scripts/session.ts",
45
- "relay": "bun run src/remote/relay-server.ts"
46
- },
47
- "keywords": [
48
- "ai",
49
- "coding-assistant",
50
- "anthropic",
51
- "openai",
52
- "google",
53
- "gemini",
54
- "claude",
55
- "gpt",
56
- "openrouter",
57
- "kilocode",
58
- "opencode"
59
- ],
60
- "author": "Dek1milliontoken",
61
- "license": "SEE LICENSE.md",
62
- "dependencies": {
63
- "@agentclientprotocol/sdk": "^0.25.1",
64
- "@ai-sdk/anthropic": "^3.0.84",
65
- "@ai-sdk/google": "^3.0.82",
66
- "@ai-sdk/openai": "^3.0.71",
67
- "@anthropic-ai/sandbox-runtime": "0.0.54",
68
- "@anthropic-ai/sdk": "^0.104.1",
69
- "@aws-sdk/client-bedrock": "^3.1068.0",
70
- "@aws-sdk/client-sts": "^3.1068.0",
71
- "@azure/identity": "^4.13.1",
72
- "@commander-js/extra-typings": "^15.0.0",
73
- "@google/generative-ai": "0.24.1",
74
- "@growthbook/growthbook": "^1.6.5",
75
- "@modelcontextprotocol/sdk": "^1.29.0",
76
- "@openrouter/ai-sdk-provider": "^2.9.1",
77
- "@opentelemetry/api": "^1.9.1",
78
- "@opentelemetry/exporter-logs-otlp-grpc": "^0.219.0",
79
- "@opentelemetry/exporter-logs-otlp-http": "^0.219.0",
80
- "@opentelemetry/exporter-logs-otlp-proto": "^0.219.0",
81
- "@opentelemetry/exporter-metrics-otlp-grpc": "^0.219.0",
82
- "@opentelemetry/exporter-metrics-otlp-http": "^0.219.0",
83
- "@opentelemetry/exporter-metrics-otlp-proto": "^0.219.0",
84
- "@opentelemetry/exporter-prometheus": "^0.219.0",
85
- "@opentelemetry/exporter-trace-otlp-grpc": "^0.219.0",
86
- "@opentelemetry/exporter-trace-otlp-http": "^0.219.0",
87
- "@opentelemetry/exporter-trace-otlp-proto": "^0.219.0",
88
- "@opentelemetry/resources": "2.8.0",
89
- "@opentelemetry/sdk-logs": "^0.219.0",
90
- "@opentelemetry/sdk-metrics": "2.8.0",
91
- "@opentelemetry/sdk-node": "^0.219.0",
92
- "@opentelemetry/sdk-trace-base": "2.8.0",
93
- "@opentelemetry/sdk-trace-node": "2.8.0",
94
- "@opentelemetry/semantic-conventions": "1.41.1",
95
- "@sentry/node": "^10.57.0",
96
- "@types/react": "^19.2.17",
97
- "@types/react-dom": "^19.2.3",
98
- "@types/ws": "^8.18.1",
99
- "@xenova/transformers": "^2.17.2",
100
- "acp-sdk": "^1.0.3",
101
- "asciichart": "^1.5.25",
102
- "axios": "^1.17.0",
103
- "bidi-js": "1.0.3",
104
- "chalk": "^5.6.2",
105
- "chokidar": "5.0.0",
106
- "commander": "^15.0.0",
107
- "conf": "^15.1.0",
108
- "diff": "^9.0.0",
109
- "dotenv": "^17.4.2",
110
- "execa": "^9.6.1",
111
- "fast-deep-equal": "^3.1.3",
112
- "fflate": "^0.8.3",
113
- "fuse.js": "^7.4.2",
114
- "https-proxy-agent": "^9.1.0",
115
- "ignore": "^7.0.5",
116
- "ink": "^5.2.1",
117
- "ink-divider": "^4.1.1",
118
- "ink-markdown": "^1.0.4",
119
- "ink-select-input": "^6.2.0",
120
- "ink-spinner": "^5.0.0",
121
- "ink-text-input": "^6.0.0",
122
- "is-docker": "^4.0.0",
123
- "is-wsl": "^3.1.1",
124
- "jsonc-parser": "^3.3.1",
125
- "jsonrepair": "^3.14.0",
126
- "lodash-es": "^4.18.1",
127
- "lru-cache": "^11.5.1",
128
- "lucide-react": "^1.18.0",
129
- "node-fetch": "^3.3.2",
130
- "node-pty": "^1.1.0",
131
- "open": "^11.0.0",
132
- "openai": "^6.42.0",
133
- "ora": "^9.4.0",
134
- "p-map": "^7.0.4",
135
- "picomatch": "^4.0.4",
136
- "playwright": "^1.60.0",
137
- "proper-lockfile": "^4.1.2",
138
- "qrcode": "^1.5.4",
139
- "react": "^19.2.7",
140
- "react-dom": "^19.2.7",
141
- "react-markdown": "^10.1.0",
142
- "react-reconciler": "0.33.0",
143
- "react-syntax-highlighter": "^16.1.1",
144
- "shell-quote": "^1.8.4",
145
- "tree-kill": "^1.2.2",
146
- "turndown": "^7.2.4",
147
- "usehooks-ts": "^3.1.1",
148
- "vscode-jsonrpc": "^9.0.0",
149
- "xss": "^1.0.15",
150
- "zod": "^4.4.3"
151
- },
152
- "overrides": {
153
- "react-reconciler": "0.33.0"
154
- },
155
- "devDependencies": {
156
- "@ast-grep/cli": "^0.43.0",
157
- "@biomejs/biome": "^2.5.0",
158
- "@types/bun": "latest",
159
- "@types/lodash-es": "^4.17.12",
160
- "@types/semver": "^7.7.1"
161
- },
162
- "optionalDependencies": {
163
- "sharp": "^0.35.1"
164
- }
165
- }
1
+ {
2
+ "name": "clew-code",
3
+ "version": "0.2.30",
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
+ "scripts/",
16
+ "README.md",
17
+ "LICENSE.md"
18
+ ],
19
+ "repository": {
20
+ "type": "git",
21
+ "url": "git+https://github.com/ClewCode/ClewCode.git"
22
+ },
23
+ "bugs": {
24
+ "url": "https://github.com/ClewCode/ClewCode/issues"
25
+ },
26
+ "homepage": "https://github.com/ClewCode/ClewCode#readme",
27
+ "scripts": {
28
+ "dev": "bun --watch run --define.TRANSCRIPT_CLASSIFIER=true --define.CHICAGO_MCP=true --define.VOICE_MODE=true --define.MACRO.VERSION='\"0.2.27\"' --define.MACRO.PACKAGE_URL='\"clew-code\"' --define.MACRO.FEEDBACK_CHANNEL='\"https://github.com/ClewCode/ClewCode/issues\"' --define.MACRO.ISSUES_EXPLAINER='\"visit https://github.com/ClewCode/ClewCode/issues\"' src/main.tsx",
29
+ "start": "bun run --define.VOICE_MODE=true --define.MACRO.VERSION='\"0.2.27\"' --define.MACRO.PACKAGE_URL='\"clew-code\"' src/main.tsx",
30
+ "dev:channels": "bun run --define.VOICE_MODE=true --define.MACRO.VERSION='\"0.2.27\"' --define.MACRO.PACKAGE_URL='\"clew-code\"' src/main.tsx -- --dangerously-load-development-channels server:clew-orc",
31
+ "build": "NODE_ENV=production bun build --production --define.TRANSCRIPT_CLASSIFIER=true --define.CHICAGO_MCP=true --define.VOICE_MODE=true --define.MACRO.VERSION='\"0.2.27\"' --define.MACRO.PACKAGE_URL='\"clew-code\"' --define.MACRO.FEEDBACK_CHANNEL='\"https://github.com/ClewCode/ClewCode/issues\"' --define.MACRO.ISSUES_EXPLAINER='\"visit https://github.com/ClewCode/ClewCode/issues\"' 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' --external 'node-pty'",
32
+ "prepublishOnly": "bun run build",
33
+ "test": "bun test",
34
+ "lint": "biome lint --write src/",
35
+ "lint:check": "biome lint src/",
36
+ "format": "biome format --write src/",
37
+ "format:check": "biome format src/",
38
+ "check": "biome check --write src/",
39
+ "check:ci": "biome ci src/",
40
+ "ast-grep": "bun x ast-grep",
41
+ "codegraph": "bun run scripts/codegraph.ts",
42
+ "docs:generate": "bun run scripts/generate-docs.ts",
43
+ "docs:watch": "bun --watch run scripts/generate-docs.ts",
44
+ "preload": "bun run scripts/preload.ts",
45
+ "session": "bun run scripts/session.ts",
46
+ "relay": "bun run src/remote/relay-server.ts",
47
+ "install:unix": "bash scripts/install.sh",
48
+ "install:win": "powershell -ExecutionPolicy Bypass -File scripts/install.ps1"
49
+ },
50
+ "keywords": [
51
+ "ai",
52
+ "coding-assistant",
53
+ "anthropic",
54
+ "openai",
55
+ "google",
56
+ "gemini",
57
+ "claude",
58
+ "gpt",
59
+ "openrouter",
60
+ "kilocode",
61
+ "opencode"
62
+ ],
63
+ "author": "Dek1milliontoken",
64
+ "license": "SEE LICENSE.md",
65
+ "dependencies": {
66
+ "@agentclientprotocol/sdk": "^0.25.1",
67
+ "@ai-sdk/anthropic": "^3.0.84",
68
+ "@ai-sdk/google": "^3.0.82",
69
+ "@ai-sdk/openai": "^3.0.71",
70
+ "@anthropic-ai/sandbox-runtime": "0.0.54",
71
+ "@anthropic-ai/sdk": "^0.104.1",
72
+ "@aws-sdk/client-bedrock": "^3.1068.0",
73
+ "@aws-sdk/client-sts": "^3.1068.0",
74
+ "@azure/identity": "^4.13.1",
75
+ "@commander-js/extra-typings": "^15.0.0",
76
+ "@google/generative-ai": "0.24.1",
77
+ "@growthbook/growthbook": "^1.6.5",
78
+ "@modelcontextprotocol/sdk": "^1.29.0",
79
+ "@openrouter/ai-sdk-provider": "^2.9.1",
80
+ "@opentelemetry/api": "^1.9.1",
81
+ "@opentelemetry/exporter-logs-otlp-grpc": "^0.219.0",
82
+ "@opentelemetry/exporter-logs-otlp-http": "^0.219.0",
83
+ "@opentelemetry/exporter-logs-otlp-proto": "^0.219.0",
84
+ "@opentelemetry/exporter-metrics-otlp-grpc": "^0.219.0",
85
+ "@opentelemetry/exporter-metrics-otlp-http": "^0.219.0",
86
+ "@opentelemetry/exporter-metrics-otlp-proto": "^0.219.0",
87
+ "@opentelemetry/exporter-prometheus": "^0.219.0",
88
+ "@opentelemetry/exporter-trace-otlp-grpc": "^0.219.0",
89
+ "@opentelemetry/exporter-trace-otlp-http": "^0.219.0",
90
+ "@opentelemetry/exporter-trace-otlp-proto": "^0.219.0",
91
+ "@opentelemetry/resources": "2.8.0",
92
+ "@opentelemetry/sdk-logs": "^0.219.0",
93
+ "@opentelemetry/sdk-metrics": "2.8.0",
94
+ "@opentelemetry/sdk-node": "^0.219.0",
95
+ "@opentelemetry/sdk-trace-base": "2.8.0",
96
+ "@opentelemetry/sdk-trace-node": "2.8.0",
97
+ "@opentelemetry/semantic-conventions": "1.41.1",
98
+ "@sentry/node": "^10.57.0",
99
+ "@types/react": "^19.2.17",
100
+ "@types/react-dom": "^19.2.3",
101
+ "@types/ws": "^8.18.1",
102
+ "@xenova/transformers": "^2.17.2",
103
+ "asciichart": "^1.5.25",
104
+ "axios": "^1.17.0",
105
+ "bidi-js": "1.0.3",
106
+ "chalk": "^5.6.2",
107
+ "chokidar": "5.0.0",
108
+ "commander": "^15.0.0",
109
+ "conf": "^15.1.0",
110
+ "diff": "^9.0.0",
111
+ "dotenv": "^17.4.2",
112
+ "execa": "^9.6.1",
113
+ "fast-deep-equal": "^3.1.3",
114
+ "fflate": "^0.8.3",
115
+ "fuse.js": "^7.4.2",
116
+ "https-proxy-agent": "^9.1.0",
117
+ "ignore": "^7.0.5",
118
+ "ink": "^5.2.1",
119
+ "ink-divider": "^4.1.1",
120
+ "ink-markdown": "^1.0.4",
121
+ "ink-select-input": "^6.2.0",
122
+ "ink-spinner": "^5.0.0",
123
+ "ink-text-input": "^6.0.0",
124
+ "is-docker": "^4.0.0",
125
+ "is-wsl": "^3.1.1",
126
+ "jsonc-parser": "^3.3.1",
127
+ "jsonrepair": "^3.14.0",
128
+ "lodash-es": "^4.18.1",
129
+ "lru-cache": "^11.5.1",
130
+ "lucide-react": "^1.18.0",
131
+ "node-fetch": "^3.3.2",
132
+ "node-pty": "^1.1.0",
133
+ "open": "^11.0.0",
134
+ "openai": "^6.42.0",
135
+ "ora": "^9.4.0",
136
+ "p-map": "^7.0.4",
137
+ "picomatch": "^4.0.4",
138
+ "playwright": "^1.60.0",
139
+ "proper-lockfile": "^4.1.2",
140
+ "qrcode": "^1.5.4",
141
+ "react": "^19.2.7",
142
+ "react-dom": "^19.2.7",
143
+ "react-markdown": "^10.1.0",
144
+ "react-reconciler": "0.33.0",
145
+ "react-syntax-highlighter": "^16.1.1",
146
+ "shell-quote": "^1.8.4",
147
+ "tree-kill": "^1.2.2",
148
+ "turndown": "^7.2.4",
149
+ "usehooks-ts": "^3.1.1",
150
+ "vscode-jsonrpc": "^9.0.0",
151
+ "xss": "^1.0.15",
152
+ "zod": "^4.4.3"
153
+ },
154
+ "overrides": {
155
+ "react-reconciler": "0.33.0"
156
+ },
157
+ "devDependencies": {
158
+ "@ast-grep/cli": "^0.43.0",
159
+ "@biomejs/biome": "^2.5.0",
160
+ "@types/bun": "latest",
161
+ "@types/lodash-es": "^4.17.12",
162
+ "@types/semver": "^7.7.1"
163
+ },
164
+ "optionalDependencies": {}
165
+ }