claudish 2.5.0 → 2.6.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/AI_AGENT_GUIDE.md +2 -2
- package/README.md +2 -2
- package/dist/index.js +31977 -988
- package/dist/mcp-server.js +30705 -0
- package/package.json +27 -22
- package/scripts/postinstall.cjs +0 -0
- package/skills/claudish-usage/SKILL.md +2 -2
package/package.json
CHANGED
|
@@ -1,16 +1,36 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "claudish",
|
|
3
|
-
"version": "2.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "2.6.0",
|
|
4
|
+
"description": "Run Claude Code with any OpenRouter model - CLI tool and MCP server",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
7
7
|
"bin": {
|
|
8
8
|
"claudish": "dist/index.js"
|
|
9
9
|
},
|
|
10
|
+
"scripts": {
|
|
11
|
+
"dev": "bun run src/index.ts",
|
|
12
|
+
"dev:mcp": "bun run src/index.ts --mcp",
|
|
13
|
+
"dev:grok": "bun run src/index.ts --interactive --model x-ai/grok-code-fast-1",
|
|
14
|
+
"dev:grok:debug": "bun run src/index.ts --interactive --debug --log-level info --model x-ai/grok-code-fast-1",
|
|
15
|
+
"dev:info": "bun run src/index.ts --interactive --monitor",
|
|
16
|
+
"extract-models": "bun run scripts/extract-models.ts",
|
|
17
|
+
"build": "bun run extract-models && bun build src/index.ts --outdir dist --target node && chmod +x dist/index.js",
|
|
18
|
+
"link": "npm link",
|
|
19
|
+
"unlink": "npm unlink -g claudish",
|
|
20
|
+
"install-global": "bun run build && npm link",
|
|
21
|
+
"kill-all": "pkill -f 'bun.*claudish' || pkill -f 'claude.*claudish-settings' || echo 'No claudish processes found'",
|
|
22
|
+
"test": "bun test ./tests/comprehensive-model-test.ts",
|
|
23
|
+
"typecheck": "tsc --noEmit",
|
|
24
|
+
"lint": "biome check .",
|
|
25
|
+
"format": "biome format --write .",
|
|
26
|
+
"postinstall": "node scripts/postinstall.cjs"
|
|
27
|
+
},
|
|
10
28
|
"dependencies": {
|
|
11
29
|
"@hono/node-server": "^1.19.6",
|
|
30
|
+
"@modelcontextprotocol/sdk": "^1.22.0",
|
|
12
31
|
"dotenv": "^17.2.3",
|
|
13
|
-
"hono": "^4.10.6"
|
|
32
|
+
"hono": "^4.10.6",
|
|
33
|
+
"zod": "^4.1.13"
|
|
14
34
|
},
|
|
15
35
|
"devDependencies": {
|
|
16
36
|
"@biomejs/biome": "^1.9.4",
|
|
@@ -35,25 +55,10 @@
|
|
|
35
55
|
"openrouter",
|
|
36
56
|
"proxy",
|
|
37
57
|
"cli",
|
|
58
|
+
"mcp",
|
|
59
|
+
"model-context-protocol",
|
|
38
60
|
"ai"
|
|
39
61
|
],
|
|
40
62
|
"author": "Jack Rudenko <i@madappgang.com>",
|
|
41
|
-
"license": "MIT"
|
|
42
|
-
|
|
43
|
-
"dev": "bun run src/index.ts",
|
|
44
|
-
"dev:grok": "bun run src/index.ts --interactive --model x-ai/grok-code-fast-1",
|
|
45
|
-
"dev:grok:debug": "bun run src/index.ts --interactive --debug --log-level info --model x-ai/grok-code-fast-1",
|
|
46
|
-
"dev:info": "bun run src/index.ts --interactive --monitor",
|
|
47
|
-
"extract-models": "bun run scripts/extract-models.ts",
|
|
48
|
-
"build": "bun run extract-models && bun build src/index.ts --outdir dist --target node && chmod +x dist/index.js",
|
|
49
|
-
"link": "npm link",
|
|
50
|
-
"unlink": "npm unlink -g claudish",
|
|
51
|
-
"install-global": "bun run build && npm link",
|
|
52
|
-
"kill-all": "pkill -f 'bun.*claudish' || pkill -f 'claude.*claudish-settings' || echo 'No claudish processes found'",
|
|
53
|
-
"test": "bun test ./tests/comprehensive-model-test.ts",
|
|
54
|
-
"typecheck": "tsc --noEmit",
|
|
55
|
-
"lint": "biome check .",
|
|
56
|
-
"format": "biome format --write .",
|
|
57
|
-
"postinstall": "node scripts/postinstall.cjs"
|
|
58
|
-
}
|
|
59
|
-
}
|
|
63
|
+
"license": "MIT"
|
|
64
|
+
}
|
package/scripts/postinstall.cjs
CHANGED
|
File without changes
|
|
@@ -1270,9 +1270,9 @@ Include:
|
|
|
1270
1270
|
## Additional Resources
|
|
1271
1271
|
|
|
1272
1272
|
**Documentation:**
|
|
1273
|
-
- Full README:
|
|
1273
|
+
- Full README: `mcp/claudish/README.md` (in repository root)
|
|
1274
1274
|
- AI Agent Guide: Print with `claudish --help-ai`
|
|
1275
|
-
- Model Integration:
|
|
1275
|
+
- Model Integration: `skills/claudish-integration/SKILL.md` (in repository root)
|
|
1276
1276
|
|
|
1277
1277
|
**External Links:**
|
|
1278
1278
|
- Claudish GitHub: https://github.com/MadAppGang/claude-code
|