claudish 2.6.3 → 2.9.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 +23 -26
- package/dist/index.js +4012 -494
- package/package.json +12 -2
- package/scripts/generate-manifest.ts +89 -0
- package/dist/mcp-server.js +0 -30705
- package/recommended-models.json +0 -133
package/README.md
CHANGED
|
@@ -24,47 +24,44 @@
|
|
|
24
24
|
|
|
25
25
|
## Installation
|
|
26
26
|
|
|
27
|
-
###
|
|
27
|
+
### Quick Install
|
|
28
28
|
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
-
|
|
29
|
+
```bash
|
|
30
|
+
# Shell script (Linux/macOS)
|
|
31
|
+
curl -fsSL https://raw.githubusercontent.com/MadAppGang/claudish/main/install.sh | bash
|
|
32
32
|
|
|
33
|
-
|
|
33
|
+
# Homebrew (macOS)
|
|
34
|
+
brew tap MadAppGang/claudish && brew install claudish
|
|
34
35
|
|
|
35
|
-
|
|
36
|
+
# npm
|
|
37
|
+
npm install -g claudish
|
|
36
38
|
|
|
37
|
-
|
|
39
|
+
# Bun
|
|
40
|
+
bun install -g claudish
|
|
41
|
+
```
|
|
38
42
|
|
|
39
|
-
|
|
40
|
-
# With Node.js (works everywhere)
|
|
41
|
-
npx claudish@latest --model x-ai/grok-code-fast-1 "your prompt"
|
|
43
|
+
### Prerequisites
|
|
42
44
|
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
```
|
|
45
|
+
- [Claude Code](https://claude.com/claude-code) - Claude CLI must be installed
|
|
46
|
+
- [OpenRouter API Key](https://openrouter.ai/keys) - Free tier available
|
|
46
47
|
|
|
47
|
-
|
|
48
|
+
### Other Install Options
|
|
48
49
|
|
|
49
|
-
|
|
50
|
-
# With npm (Node.js)
|
|
51
|
-
npm install -g claudish
|
|
50
|
+
**Use without installing:**
|
|
52
51
|
|
|
53
|
-
|
|
54
|
-
|
|
52
|
+
```bash
|
|
53
|
+
npx claudish@latest --model x-ai/grok-code-fast-1 "your prompt"
|
|
54
|
+
bunx claudish@latest --model x-ai/grok-code-fast-1 "your prompt"
|
|
55
55
|
```
|
|
56
56
|
|
|
57
|
-
**
|
|
57
|
+
**Install from source:**
|
|
58
58
|
|
|
59
59
|
```bash
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
bun run build
|
|
63
|
-
bun link # or: npm link
|
|
60
|
+
git clone https://github.com/MadAppGang/claudish.git
|
|
61
|
+
cd claudish
|
|
62
|
+
bun install && bun run build && bun link
|
|
64
63
|
```
|
|
65
64
|
|
|
66
|
-
**Performance Note:** While Claudish works with both runtimes, Bun offers faster startup times. Both provide identical functionality.
|
|
67
|
-
|
|
68
65
|
## Quick Start
|
|
69
66
|
|
|
70
67
|
### Step 0: Initialize Claudish Skill (First Time Only)
|