claudish-oai 5.0.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 +716 -0
- package/dist/index.js +64249 -0
- package/package.json +62 -0
- package/recommended-models.json +196 -0
- package/skills/claudish-usage/SKILL.md +1312 -0
package/package.json
ADDED
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "claudish-oai",
|
|
3
|
+
"version": "5.0.0",
|
|
4
|
+
"description": "Run Claude Code with any model - OpenRouter, Ollama, LM Studio & local models",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "./dist/index.js",
|
|
7
|
+
"bin": {
|
|
8
|
+
"claudish": "dist/index.js"
|
|
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
|
+
"build": "bun build src/index.ts --outdir dist --target node && chmod +x dist/index.js",
|
|
17
|
+
"build:binary": "bun build src/index.ts --compile --outfile claudish",
|
|
18
|
+
"typecheck": "tsc --noEmit",
|
|
19
|
+
"lint": "biome check .",
|
|
20
|
+
"format": "biome format --write .",
|
|
21
|
+
"test": "bun test"
|
|
22
|
+
},
|
|
23
|
+
"dependencies": {
|
|
24
|
+
"@inquirer/prompts": "^8.0.1",
|
|
25
|
+
"@inquirer/search": "^4.0.1",
|
|
26
|
+
"@modelcontextprotocol/sdk": "^1.22.0",
|
|
27
|
+
"dotenv": "^17.2.3"
|
|
28
|
+
},
|
|
29
|
+
"devDependencies": {
|
|
30
|
+
"@biomejs/biome": "^1.9.4",
|
|
31
|
+
"@types/bun": "latest",
|
|
32
|
+
"bun-types": "^1.3.6",
|
|
33
|
+
"typescript": "^5.9.3"
|
|
34
|
+
},
|
|
35
|
+
"files": [
|
|
36
|
+
"dist/",
|
|
37
|
+
"AI_AGENT_GUIDE.md",
|
|
38
|
+
"recommended-models.json",
|
|
39
|
+
"skills/"
|
|
40
|
+
],
|
|
41
|
+
"engines": {
|
|
42
|
+
"node": ">=18.0.0",
|
|
43
|
+
"bun": ">=1.0.0"
|
|
44
|
+
},
|
|
45
|
+
"preferGlobal": true,
|
|
46
|
+
"keywords": [
|
|
47
|
+
"claude",
|
|
48
|
+
"claude-code",
|
|
49
|
+
"openrouter",
|
|
50
|
+
"proxy",
|
|
51
|
+
"cli",
|
|
52
|
+
"mcp",
|
|
53
|
+
"model-context-protocol",
|
|
54
|
+
"ai"
|
|
55
|
+
],
|
|
56
|
+
"author": "Jack Rudenko <i@madappgang.com>",
|
|
57
|
+
"license": "MIT",
|
|
58
|
+
"repository": {
|
|
59
|
+
"type": "git",
|
|
60
|
+
"url": "https://github.com/MadAppGang/claudish"
|
|
61
|
+
}
|
|
62
|
+
}
|
|
@@ -0,0 +1,196 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": "1.2.0",
|
|
3
|
+
"lastUpdated": "2026-02-12",
|
|
4
|
+
"source": "https://openrouter.ai/models?categories=programming&fmt=cards&order=top-weekly",
|
|
5
|
+
"models": [
|
|
6
|
+
{
|
|
7
|
+
"id": "x-ai/grok-4.1-fast",
|
|
8
|
+
"name": "xAI: Grok 4.1 Fast",
|
|
9
|
+
"description": "Grok 4.1 Fast is xAI's best agentic tool calling model with a 2M context window. Excels at real-world use cases like customer support and deep research. Reasoning can be enabled or disabled via API parameters.",
|
|
10
|
+
"provider": "X-ai",
|
|
11
|
+
"category": "reasoning",
|
|
12
|
+
"priority": 1,
|
|
13
|
+
"pricing": {
|
|
14
|
+
"input": "$0.20/1M",
|
|
15
|
+
"output": "$0.50/1M",
|
|
16
|
+
"average": "$0.35/1M"
|
|
17
|
+
},
|
|
18
|
+
"context": "2M",
|
|
19
|
+
"maxOutputTokens": 30000,
|
|
20
|
+
"modality": "text+image->text",
|
|
21
|
+
"supportsTools": true,
|
|
22
|
+
"supportsReasoning": true,
|
|
23
|
+
"supportsVision": true,
|
|
24
|
+
"isModerated": false,
|
|
25
|
+
"recommended": true
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
"id": "minimax/minimax-m2.1",
|
|
29
|
+
"name": "MiniMax: MiniMax M2.1",
|
|
30
|
+
"description": "MiniMax-M2.1 is a lightweight, state-of-the-art model optimized for coding and agentic workflows. With only 10B activated parameters, it delivers exceptional latency and cost efficiency with leading multilingual coding performance.",
|
|
31
|
+
"provider": "Minimax",
|
|
32
|
+
"category": "reasoning",
|
|
33
|
+
"priority": 2,
|
|
34
|
+
"pricing": {
|
|
35
|
+
"input": "$0.27/1M",
|
|
36
|
+
"output": "$0.95/1M",
|
|
37
|
+
"average": "$0.61/1M"
|
|
38
|
+
},
|
|
39
|
+
"context": "196K",
|
|
40
|
+
"maxOutputTokens": null,
|
|
41
|
+
"modality": "text->text",
|
|
42
|
+
"supportsTools": true,
|
|
43
|
+
"supportsReasoning": true,
|
|
44
|
+
"supportsVision": false,
|
|
45
|
+
"isModerated": false,
|
|
46
|
+
"recommended": true
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
"id": "z-ai/glm-5",
|
|
50
|
+
"name": "Z.ai: GLM 5",
|
|
51
|
+
"description": "GLM-5 is Z.ai's flagship open-source foundation model engineered for complex systems design and long-horizon agent workflows. Delivers production-grade performance on large-scale programming tasks with advanced agentic planning, deep backend reasoning, and iterative self-correction.",
|
|
52
|
+
"provider": "Z-ai",
|
|
53
|
+
"category": "reasoning",
|
|
54
|
+
"priority": 3,
|
|
55
|
+
"pricing": {
|
|
56
|
+
"input": "$1.00/1M",
|
|
57
|
+
"output": "$3.20/1M",
|
|
58
|
+
"average": "$2.10/1M"
|
|
59
|
+
},
|
|
60
|
+
"context": "203K",
|
|
61
|
+
"maxOutputTokens": 202752,
|
|
62
|
+
"modality": "text->text",
|
|
63
|
+
"supportsTools": true,
|
|
64
|
+
"supportsReasoning": true,
|
|
65
|
+
"supportsVision": false,
|
|
66
|
+
"isModerated": false,
|
|
67
|
+
"recommended": true
|
|
68
|
+
},
|
|
69
|
+
{
|
|
70
|
+
"id": "google/gemini-3-pro-preview",
|
|
71
|
+
"name": "Google: Gemini 3 Pro Preview",
|
|
72
|
+
"description": "Gemini 3 Pro is Google's flagship frontier model for high-precision multimodal reasoning. Combines strong performance across text, image, video, audio, and code with a 1M-token context window. State-of-the-art benchmark results in reasoning, STEM, and multimodal understanding.",
|
|
73
|
+
"provider": "Google",
|
|
74
|
+
"category": "vision",
|
|
75
|
+
"priority": 4,
|
|
76
|
+
"pricing": {
|
|
77
|
+
"input": "$2.00/1M",
|
|
78
|
+
"output": "$12.00/1M",
|
|
79
|
+
"average": "$7.00/1M"
|
|
80
|
+
},
|
|
81
|
+
"context": "1048K",
|
|
82
|
+
"maxOutputTokens": 65536,
|
|
83
|
+
"modality": "text+image->text",
|
|
84
|
+
"supportsTools": true,
|
|
85
|
+
"supportsReasoning": true,
|
|
86
|
+
"supportsVision": true,
|
|
87
|
+
"isModerated": false,
|
|
88
|
+
"recommended": true
|
|
89
|
+
},
|
|
90
|
+
{
|
|
91
|
+
"id": "openai/gpt-5.3-codex",
|
|
92
|
+
"name": "OpenAI: GPT-5.3-Codex",
|
|
93
|
+
"description": "GPT-5.3-Codex is the latest in the Codex series, optimized for software engineering and coding workflows. Designed for interactive development sessions and long, independent execution of complex engineering tasks.",
|
|
94
|
+
"provider": "Openai",
|
|
95
|
+
"category": "reasoning",
|
|
96
|
+
"priority": 5,
|
|
97
|
+
"pricing": {
|
|
98
|
+
"input": "$1.75/1M",
|
|
99
|
+
"output": "$14.00/1M",
|
|
100
|
+
"average": "$7.88/1M"
|
|
101
|
+
},
|
|
102
|
+
"context": "400K",
|
|
103
|
+
"maxOutputTokens": 128000,
|
|
104
|
+
"modality": "text+image->text",
|
|
105
|
+
"supportsTools": true,
|
|
106
|
+
"supportsReasoning": true,
|
|
107
|
+
"supportsVision": true,
|
|
108
|
+
"isModerated": false,
|
|
109
|
+
"recommended": true
|
|
110
|
+
},
|
|
111
|
+
{
|
|
112
|
+
"id": "moonshotai/kimi-k2.5",
|
|
113
|
+
"name": "MoonshotAI: Kimi K2.5",
|
|
114
|
+
"description": "Kimi K2.5 is Moonshot AI's native multimodal model with state-of-the-art visual coding capability and a self-directed agent swarm paradigm. Built on Kimi K2 with continued pretraining over approximately 15T mixed visual and text tokens.",
|
|
115
|
+
"provider": "Moonshotai",
|
|
116
|
+
"category": "reasoning",
|
|
117
|
+
"priority": 6,
|
|
118
|
+
"pricing": {
|
|
119
|
+
"input": "$0.45/1M",
|
|
120
|
+
"output": "$2.25/1M",
|
|
121
|
+
"average": "$1.35/1M"
|
|
122
|
+
},
|
|
123
|
+
"context": "262K",
|
|
124
|
+
"maxOutputTokens": 65535,
|
|
125
|
+
"modality": "text+image->text",
|
|
126
|
+
"supportsTools": true,
|
|
127
|
+
"supportsReasoning": true,
|
|
128
|
+
"supportsVision": true,
|
|
129
|
+
"isModerated": false,
|
|
130
|
+
"recommended": true
|
|
131
|
+
},
|
|
132
|
+
{
|
|
133
|
+
"id": "deepseek/deepseek-v3.2",
|
|
134
|
+
"name": "DeepSeek: DeepSeek V3.2",
|
|
135
|
+
"description": "DeepSeek-V3.2 harmonizes high computational efficiency with strong reasoning and agentic tool-use. Uses DeepSeek Sparse Attention for cost-effective long-context scenarios. GPT-5 class performance with gold-medal results on 2025 IMO and IOI.",
|
|
136
|
+
"provider": "Deepseek",
|
|
137
|
+
"category": "reasoning",
|
|
138
|
+
"priority": 7,
|
|
139
|
+
"pricing": {
|
|
140
|
+
"input": "$0.25/1M",
|
|
141
|
+
"output": "$0.38/1M",
|
|
142
|
+
"average": "$0.32/1M"
|
|
143
|
+
},
|
|
144
|
+
"context": "163K",
|
|
145
|
+
"maxOutputTokens": 65536,
|
|
146
|
+
"modality": "text->text",
|
|
147
|
+
"supportsTools": true,
|
|
148
|
+
"supportsReasoning": true,
|
|
149
|
+
"supportsVision": false,
|
|
150
|
+
"isModerated": false,
|
|
151
|
+
"recommended": true
|
|
152
|
+
},
|
|
153
|
+
{
|
|
154
|
+
"id": "qwen/qwen3-coder-next",
|
|
155
|
+
"name": "Qwen: Qwen3 Coder Next",
|
|
156
|
+
"description": "Qwen3-Coder-Next is an open-weight model optimized for coding agents. Sparse MoE design with 80B total parameters and only 3B activated per token, delivering performance comparable to 10-20x larger models. Ideal for cost-sensitive, always-on agent deployment.",
|
|
157
|
+
"provider": "Qwen",
|
|
158
|
+
"category": "coding",
|
|
159
|
+
"priority": 8,
|
|
160
|
+
"pricing": {
|
|
161
|
+
"input": "$0.07/1M",
|
|
162
|
+
"output": "$0.30/1M",
|
|
163
|
+
"average": "$0.18/1M"
|
|
164
|
+
},
|
|
165
|
+
"context": "262K",
|
|
166
|
+
"maxOutputTokens": 65536,
|
|
167
|
+
"modality": "text->text",
|
|
168
|
+
"supportsTools": true,
|
|
169
|
+
"supportsReasoning": false,
|
|
170
|
+
"supportsVision": false,
|
|
171
|
+
"isModerated": false,
|
|
172
|
+
"recommended": true
|
|
173
|
+
},
|
|
174
|
+
{
|
|
175
|
+
"id": "google/gemini-3-flash-preview",
|
|
176
|
+
"name": "Google: Gemini 3 Flash Preview",
|
|
177
|
+
"description": "Gemini 3 Flash is a high-speed thinking model designed for agentic workflows, multi-turn chat, and coding assistance. Delivers near-Pro level reasoning with substantially lower latency. 1M context window.",
|
|
178
|
+
"provider": "Google",
|
|
179
|
+
"category": "vision",
|
|
180
|
+
"priority": 9,
|
|
181
|
+
"pricing": {
|
|
182
|
+
"input": "$0.50/1M",
|
|
183
|
+
"output": "$3.00/1M",
|
|
184
|
+
"average": "$1.75/1M"
|
|
185
|
+
},
|
|
186
|
+
"context": "1048K",
|
|
187
|
+
"maxOutputTokens": 65535,
|
|
188
|
+
"modality": "text+image->text",
|
|
189
|
+
"supportsTools": true,
|
|
190
|
+
"supportsReasoning": true,
|
|
191
|
+
"supportsVision": true,
|
|
192
|
+
"isModerated": false,
|
|
193
|
+
"recommended": true
|
|
194
|
+
}
|
|
195
|
+
]
|
|
196
|
+
}
|