claudish 2.4.0 → 2.5.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/README.md +10 -4
- package/dist/index.js +1546 -1245
- package/package.json +21 -20
- package/scripts/extract-models.ts +10 -0
- package/scripts/postinstall.cjs +0 -0
- package/skills/claudish-usage/SKILL.md +43 -24
package/README.md
CHANGED
|
@@ -135,7 +135,12 @@ claudish --help-ai > claudish-agent-guide.md
|
|
|
135
135
|
|
|
136
136
|
1. **Get available models:**
|
|
137
137
|
```bash
|
|
138
|
-
|
|
138
|
+
# List all models or search
|
|
139
|
+
claudish --models
|
|
140
|
+
claudish --models gemini
|
|
141
|
+
|
|
142
|
+
# Get top recommended models (JSON)
|
|
143
|
+
claudish --top-models --json
|
|
139
144
|
```
|
|
140
145
|
|
|
141
146
|
2. **Run Claudish through sub-agent** (recommended pattern):
|
|
@@ -187,7 +192,7 @@ claudish --help-ai > claudish-agent-guide.md
|
|
|
187
192
|
- ✅ Use file-based patterns to avoid context window pollution
|
|
188
193
|
- ✅ Delegate to sub-agents instead of running directly
|
|
189
194
|
- ✅ Return summaries only (not full conversation transcripts)
|
|
190
|
-
- ✅ Choose appropriate model for task (see `--
|
|
195
|
+
- ✅ Choose appropriate model for task (see `--models` or `--top-models`)
|
|
191
196
|
|
|
192
197
|
**Resources:**
|
|
193
198
|
- Full AI agent guide: `claudish --help-ai`
|
|
@@ -216,7 +221,8 @@ claudish [OPTIONS] <claude-args...>
|
|
|
216
221
|
| `--no-auto-approve` | Disable auto-approve (require prompts) | Auto-approve **enabled** |
|
|
217
222
|
| `--dangerous` | Pass `--dangerouslyDisableSandbox` | `false` |
|
|
218
223
|
| `--agent <agent>` | Use specific agent (e.g., `frontend:developer`) | - |
|
|
219
|
-
| `--
|
|
224
|
+
| `--models` | List all models or search (e.g., `--models gemini`) | - |
|
|
225
|
+
| `--top-models` | Show top recommended programming models | - |
|
|
220
226
|
| `--list-agents` | List available agents in current project | - |
|
|
221
227
|
| `--force-update` | Force refresh model cache | - |
|
|
222
228
|
| `--init` | Install Claudish skill in current project | - |
|
|
@@ -264,7 +270,7 @@ Claudish supports 5 OpenRouter models in priority order:
|
|
|
264
270
|
List models anytime with:
|
|
265
271
|
|
|
266
272
|
```bash
|
|
267
|
-
claudish --
|
|
273
|
+
claudish --models
|
|
268
274
|
```
|
|
269
275
|
|
|
270
276
|
## Agent Support (NEW in v2.1.0)
|