claudish 7.0.0 → 7.0.3
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 +16 -3
- package/dist/index.js +7298 -6439
- package/package.json +5 -5
- package/recommended-models.json +7 -7
package/AI_AGENT_GUIDE.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Claudish AI Agent Usage Guide
|
|
2
2
|
|
|
3
|
-
**Version:**
|
|
3
|
+
**Version:** 7.0.0
|
|
4
4
|
**Target Audience:** AI Agents running within Claude Code
|
|
5
5
|
**Purpose:** Quick reference for using Claudish CLI and MCP server in agentic workflows
|
|
6
6
|
|
|
@@ -65,6 +65,18 @@ claudish --model vertex/qwen/qwen3-coder-480b-a35b-instruct-maas "implement"
|
|
|
65
65
|
claudish --model vertex/openai/gpt-oss-120b-maas "reason"
|
|
66
66
|
```
|
|
67
67
|
|
|
68
|
+
### Default provider (v7.0.0+)
|
|
69
|
+
|
|
70
|
+
Bare model names (no `provider@` prefix) route through the configured default provider. Override per-invocation:
|
|
71
|
+
|
|
72
|
+
```bash
|
|
73
|
+
claudish --default-provider litellm --model minimax-m2.5 "task"
|
|
74
|
+
```
|
|
75
|
+
|
|
76
|
+
Explicit `provider@model` syntax always bypasses `defaultProvider` and routes directly to the named provider.
|
|
77
|
+
|
|
78
|
+
Custom endpoints can be registered in `~/.claudish/config.json`. See [docs/settings-reference.md](../../docs/settings-reference.md) for the full schema.
|
|
79
|
+
|
|
68
80
|
## Prerequisites
|
|
69
81
|
|
|
70
82
|
1. **Install Claudish:**
|
|
@@ -251,6 +263,7 @@ for (const model of models) {
|
|
|
251
263
|
|
|
252
264
|
| Flag | Description | Default |
|
|
253
265
|
|------|-------------|---------|
|
|
266
|
+
| `--default-provider <name>` | Override default provider for bare model routing (v7.0.0+) | Auto-detected |
|
|
254
267
|
| `--quiet` / `-q` | Suppress logs | Enabled in single-shot |
|
|
255
268
|
| `--verbose` / `-v` | Show logs | Enabled in interactive |
|
|
256
269
|
| `--debug` / `-d` | Debug logging to file | Disabled |
|
|
@@ -731,6 +744,6 @@ claudish --help-ai > claudish-agent-guide.md
|
|
|
731
744
|
|
|
732
745
|
---
|
|
733
746
|
|
|
734
|
-
**Version:**
|
|
735
|
-
**Last Updated:**
|
|
747
|
+
**Version:** 7.0.0
|
|
748
|
+
**Last Updated:** April 14, 2026
|
|
736
749
|
**Maintained by:** MadAppGang
|