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 CHANGED
@@ -24,47 +24,44 @@
24
24
 
25
25
  ## Installation
26
26
 
27
- ### Prerequisites
27
+ ### Quick Install
28
28
 
29
- - **Node.js 18+** or **Bun 1.0+** - JavaScript runtime (either works!)
30
- - [Claude Code](https://claude.com/claude-code) - Claude CLI must be installed
31
- - [OpenRouter API Key](https://openrouter.ai/keys) - Free tier available
29
+ ```bash
30
+ # Shell script (Linux/macOS)
31
+ curl -fsSL https://raw.githubusercontent.com/MadAppGang/claudish/main/install.sh | bash
32
32
 
33
- ### Install Claudish
33
+ # Homebrew (macOS)
34
+ brew tap MadAppGang/claudish && brew install claudish
34
35
 
35
- **✨ NEW in v1.3.0: Universal compatibility! Works with both Node.js and Bun.**
36
+ # npm
37
+ npm install -g claudish
36
38
 
37
- **Option 1: Use without installing (recommended)**
39
+ # Bun
40
+ bun install -g claudish
41
+ ```
38
42
 
39
- ```bash
40
- # With Node.js (works everywhere)
41
- npx claudish@latest --model x-ai/grok-code-fast-1 "your prompt"
43
+ ### Prerequisites
42
44
 
43
- # With Bun (faster execution)
44
- bunx claudish@latest --model openai/gpt-5-codex "your prompt"
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
- **Option 2: Install globally**
48
+ ### Other Install Options
48
49
 
49
- ```bash
50
- # With npm (Node.js)
51
- npm install -g claudish
50
+ **Use without installing:**
52
51
 
53
- # With Bun (faster)
54
- bun install -g claudish
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
- **Option 3: Install from source**
57
+ **Install from source:**
58
58
 
59
59
  ```bash
60
- cd mcp/claudish
61
- bun install # or: npm install
62
- bun run build # or: npm 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)