claude-all-config 2.1.2 → 2.1.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/CLAUDE.md +60 -0
- package/README.md +114 -195
- package/install.sh +160 -99
- package/package.json +11 -2
- package/plugins/installed_plugins.json +3 -315
- package/postinstall.js +169 -53
package/CLAUDE.md
ADDED
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
# ClaudeAll Global Instructions
|
|
2
|
+
|
|
3
|
+
You are Claude Code enhanced with ClaudeAll superpowers.
|
|
4
|
+
|
|
5
|
+
## Behavior
|
|
6
|
+
|
|
7
|
+
1. **Proactive Mode** - Work autonomously without asking for permission. Just do it.
|
|
8
|
+
2. **Direct Execution** - Execute commands directly, don't ask user to run them.
|
|
9
|
+
3. **Indonesian + English** - User speaks Indonesian, respond in both languages as appropriate.
|
|
10
|
+
4. **Security Aware** - Never expose API keys, passwords, or credentials in output.
|
|
11
|
+
|
|
12
|
+
## Available Tools
|
|
13
|
+
|
|
14
|
+
### Agents (14)
|
|
15
|
+
Use Task tool with these agent types:
|
|
16
|
+
- `proactive-mode` - Default. Autonomous execution
|
|
17
|
+
- `code-generator` - Generate code from requirements
|
|
18
|
+
- `code-reviewer` - Review code quality
|
|
19
|
+
- `security-auditor` - Security vulnerability scanning
|
|
20
|
+
- `test-generator` - Generate tests
|
|
21
|
+
- `doc-generator` - Generate documentation
|
|
22
|
+
- `api-tester` - Test API endpoints
|
|
23
|
+
- `performance-analyzer` - Analyze performance
|
|
24
|
+
- `accessibility-reviewer` - Check accessibility
|
|
25
|
+
- `component-generator` - Generate UI components
|
|
26
|
+
- `migration-generator` - Generate DB migrations
|
|
27
|
+
- `readme-generator` - Generate README files
|
|
28
|
+
- `terraform-generator` - Generate Terraform configs
|
|
29
|
+
- `ai-prompt-optimizer` - Optimize AI prompts
|
|
30
|
+
|
|
31
|
+
### Skills (34)
|
|
32
|
+
Located in `~/.claude/skills/`. Use Skill tool to invoke.
|
|
33
|
+
|
|
34
|
+
### Commands (3)
|
|
35
|
+
- `/brainstorm` - Start brainstorming session
|
|
36
|
+
- `/write-plan` - Write development plan
|
|
37
|
+
- `/execute-plan` - Execute existing plan
|
|
38
|
+
|
|
39
|
+
### MCP Servers (6)
|
|
40
|
+
- `context7` - Documentation & library context
|
|
41
|
+
- `exa` - Web search & crawling
|
|
42
|
+
- `sequential-thinking` - Step-by-step reasoning
|
|
43
|
+
- `memory` - Knowledge graph persistence
|
|
44
|
+
- `filesystem` - File system access
|
|
45
|
+
- `fetch` - HTTP requests
|
|
46
|
+
|
|
47
|
+
## Workflow
|
|
48
|
+
|
|
49
|
+
1. **Start** - Use proactive-mode by default
|
|
50
|
+
2. **Plan** - For complex tasks, use `/write-plan` first
|
|
51
|
+
3. **Execute** - Run commands directly, verify results
|
|
52
|
+
4. **Test** - Always test after implementation
|
|
53
|
+
5. **Commit** - Commit with clear messages when asked
|
|
54
|
+
|
|
55
|
+
## Remember
|
|
56
|
+
|
|
57
|
+
- Bypass permissions are enabled - no need to ask
|
|
58
|
+
- MCP tools available via `mcp__*` prefix
|
|
59
|
+
- Skills enhance capabilities - use them
|
|
60
|
+
- Be direct, efficient, and thorough
|
package/README.md
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
# 🤖 ClaudeAll
|
|
2
2
|
|
|
3
|
-
**
|
|
3
|
+
**Universal AI CLI Configuration - One Package for Claude Code + Gemini CLI**
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
Auto-detects installed CLIs and configures them with agents, skills, commands, MCP servers, and more.
|
|
6
6
|
|
|
7
7
|
[](https://www.npmjs.com/package/claude-all-config)
|
|
8
8
|
[](https://github.com/zesbe/ClaudeAll/blob/main/LICENSE)
|
|
@@ -11,37 +11,32 @@ One command to supercharge your Claude Code with agents, skills, commands, MCP s
|
|
|
11
11
|
|
|
12
12
|
## ⚡ Quick Install
|
|
13
13
|
|
|
14
|
-
### Option 1: curl (Recommended)
|
|
15
14
|
```bash
|
|
16
15
|
curl -fsSL https://raw.githubusercontent.com/zesbe/ClaudeAll/main/install.sh | bash
|
|
17
16
|
```
|
|
18
17
|
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
```
|
|
18
|
+
**Auto-detects and installs to:**
|
|
19
|
+
- ✅ Claude Code → `~/.claude/`
|
|
20
|
+
- ✅ Gemini CLI → `~/.gemini/superpowers/`
|
|
23
21
|
|
|
24
|
-
|
|
25
|
-
```bash
|
|
26
|
-
curl -fsSL https://raw.githubusercontent.com/zesbe/ClaudeAll/main/install-termux.sh | bash
|
|
27
|
-
```
|
|
22
|
+
---
|
|
28
23
|
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
24
|
+
## 🎯 Supported CLIs
|
|
25
|
+
|
|
26
|
+
| CLI | Install | Config Path |
|
|
27
|
+
|-----|---------|-------------|
|
|
28
|
+
| **Claude Code** | `npm i -g @anthropic-ai/claude-code` | `~/.claude/` |
|
|
29
|
+
| **Gemini CLI** | `npm i -g @google/gemini-cli` | `~/.gemini/superpowers/` |
|
|
35
30
|
|
|
36
31
|
---
|
|
37
32
|
|
|
38
33
|
## 📦 What's Included
|
|
39
34
|
|
|
40
|
-
### 🤖 Agents (
|
|
35
|
+
### 🤖 Agents (14)
|
|
41
36
|
|
|
42
37
|
| Agent | Description |
|
|
43
38
|
|-------|-------------|
|
|
44
|
-
| **proactive-mode** | Default. Autonomous
|
|
39
|
+
| **proactive-mode** | Default. Autonomous - langsung gas tanpa nanya |
|
|
45
40
|
| code-generator | Generate code dari requirements |
|
|
46
41
|
| code-reviewer | Review code quality & best practices |
|
|
47
42
|
| security-auditor | Security vulnerability scanning |
|
|
@@ -56,7 +51,7 @@ cd ClaudeAll
|
|
|
56
51
|
| terraform-generator | Generate Terraform/IaC configs |
|
|
57
52
|
| ai-prompt-optimizer | Optimize AI prompts |
|
|
58
53
|
|
|
59
|
-
### ⚡ Skills (
|
|
54
|
+
### ⚡ Skills (34)
|
|
60
55
|
|
|
61
56
|
| Category | Skills |
|
|
62
57
|
|----------|--------|
|
|
@@ -66,10 +61,7 @@ cd ClaudeAll
|
|
|
66
61
|
| **Review** | requesting-code-review, receiving-code-review, security-review, ui-ux-review |
|
|
67
62
|
| **Debug** | systematic-debugging, root-cause-tracing, error-handling |
|
|
68
63
|
| **Deploy** | deployment, defense-in-depth |
|
|
69
|
-
| **
|
|
70
|
-
| **Advanced** | subagent-driven-development, dispatching-parallel-agents, condition-based-waiting |
|
|
71
|
-
| **Tools** | using-git-worktrees, using-superpowers, sharing-skills, verification-before-completion |
|
|
72
|
-
| **Refactor** | refactoring, performance-optimization, finishing-a-development-branch |
|
|
64
|
+
| **Advanced** | subagent-driven-development, dispatching-parallel-agents |
|
|
73
65
|
|
|
74
66
|
### 📝 Commands (3)
|
|
75
67
|
|
|
@@ -81,37 +73,16 @@ cd ClaudeAll
|
|
|
81
73
|
|
|
82
74
|
### 🔧 MCP Servers (6)
|
|
83
75
|
|
|
84
|
-
| Server | Description |
|
|
85
|
-
|
|
86
|
-
| **context7** | Documentation & library context |
|
|
87
|
-
| **exa** | Web search & crawling |
|
|
88
|
-
| **sequential-thinking** | Step-by-step reasoning |
|
|
89
|
-
| **memory** | Knowledge graph persistence |
|
|
90
|
-
| **filesystem** | File system access |
|
|
91
|
-
| **fetch** | HTTP requests |
|
|
92
|
-
|
|
93
|
-
### 🔗 Hooks (5)
|
|
94
|
-
|
|
95
|
-
| Hook | Description |
|
|
96
|
-
|------|-------------|
|
|
97
|
-
| auto-context.json | Auto-load context on session start |
|
|
98
|
-
| smart-session.sh | Smart session management |
|
|
99
|
-
| session-start.sh | Session initialization |
|
|
100
|
-
| hooks.json | Hook configuration |
|
|
101
|
-
| run-hook.cmd | Windows hook runner |
|
|
102
|
-
|
|
103
|
-
### 🖥️ Tmux Config
|
|
76
|
+
| Server | Description |
|
|
77
|
+
|--------|-------------|
|
|
78
|
+
| **context7** | Documentation & library context |
|
|
79
|
+
| **exa** | Web search & crawling |
|
|
80
|
+
| **sequential-thinking** | Step-by-step reasoning |
|
|
81
|
+
| **memory** | Knowledge graph persistence |
|
|
82
|
+
| **filesystem** | File system access |
|
|
83
|
+
| **fetch** | HTTP requests |
|
|
104
84
|
|
|
105
|
-
|
|
106
|
-
|---------|-------------|
|
|
107
|
-
| Mouse scroll | Scroll without entering copy mode |
|
|
108
|
-
| Touch support | Touch-friendly for mobile/tablets |
|
|
109
|
-
| Vi copy mode | Vim-style copy/paste |
|
|
110
|
-
| Split panes | `|` horizontal, `-` vertical |
|
|
111
|
-
| Navigation | `Alt+Arrow` keys for pane switching |
|
|
112
|
-
| Status bar | Time, date, hostname display |
|
|
113
|
-
|
|
114
|
-
### 🔓 Bypass Permissions
|
|
85
|
+
### 🔓 Bypass Permissions (Claude)
|
|
115
86
|
|
|
116
87
|
All tools pre-approved - no prompts needed:
|
|
117
88
|
- `Bash(*)`, `Read(*)`, `Write(*)`, `Edit(*)`
|
|
@@ -120,198 +91,146 @@ All tools pre-approved - no prompts needed:
|
|
|
120
91
|
|
|
121
92
|
---
|
|
122
93
|
|
|
123
|
-
##
|
|
94
|
+
## 🔥 Claude-All Multi-Provider Launcher
|
|
124
95
|
|
|
125
|
-
|
|
126
|
-
ClaudeAll/
|
|
127
|
-
├── agents/ # 15 AI agents
|
|
128
|
-
├── skills/ # 36 skill modules
|
|
129
|
-
├── commands/ # 3 custom commands
|
|
130
|
-
├── hooks/ # Session hooks
|
|
131
|
-
├── plugins/ # Plugin configs
|
|
132
|
-
├── tmux/ # Tmux configuration
|
|
133
|
-
│ ├── config/ # tmux.conf, tmux-vps.conf
|
|
134
|
-
│ └── bin/ # tmux-setup.js
|
|
135
|
-
├── models/ # 🔥 Provider configs (17 folders, user-editable)
|
|
136
|
-
│ ├── gemini/config.json
|
|
137
|
-
│ ├── openai/config.json
|
|
138
|
-
│ ├── glm/config.json
|
|
139
|
-
│ ├── minimax/config.json
|
|
140
|
-
│ ├── letta/config.json
|
|
141
|
-
│ └── .../config.json
|
|
142
|
-
├── providers/ # Provider wrapper scripts
|
|
143
|
-
├── auth/ # Auth scripts (Gemini, OpenAI)
|
|
144
|
-
├── bin/ # Executables (api-manager, launchers)
|
|
145
|
-
├── scripts/ # Utility scripts
|
|
146
|
-
├── utils/ # Utility libs
|
|
147
|
-
├── lib/ # Core libraries
|
|
148
|
-
├── claude-all # 🔥 Multi-provider launcher (106KB)
|
|
149
|
-
├── mcp.json # MCP server config
|
|
150
|
-
├── settings.local.json # Bypass permissions
|
|
151
|
-
├── install.sh # curl installer
|
|
152
|
-
├── install-termux.sh # Termux installer
|
|
153
|
-
├── postinstall.js # npm hook
|
|
154
|
-
└── update.sh # Quick update
|
|
155
|
-
```
|
|
156
|
-
|
|
157
|
-
### 🔥 Claude-All Multi-Provider Launcher
|
|
158
|
-
|
|
159
|
-
The `claude-all` script is a powerful 106KB bash wrapper that supports multiple AI providers:
|
|
96
|
+
The `claude-all` script supports 17+ AI providers:
|
|
160
97
|
|
|
161
98
|
| Provider | Command |
|
|
162
99
|
|----------|---------|
|
|
163
100
|
| Claude (default) | `claude-all` |
|
|
164
101
|
| Gemini | `claude-all gemini` |
|
|
165
102
|
| OpenAI | `claude-all openai` |
|
|
166
|
-
| GLM | `claude-all glm` |
|
|
103
|
+
| GLM (ZhipuAI) | `claude-all glm` |
|
|
167
104
|
| MiniMax | `claude-all minimax` |
|
|
168
|
-
| xAI | `claude-all xai` |
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
-
|
|
174
|
-
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
105
|
+
| xAI (Grok) | `claude-all xai` |
|
|
106
|
+
| Groq | `claude-all groq` |
|
|
107
|
+
| DeepSeek | `claude-all deepseek` |
|
|
108
|
+
| Perplexity | `claude-all perplexity` |
|
|
109
|
+
| Ollama | `claude-all ollama` |
|
|
110
|
+
| Mistral | `claude-all mistral` |
|
|
111
|
+
| Cohere | `claude-all cohere` |
|
|
112
|
+
| Moonshot | `claude-all moonshot` |
|
|
113
|
+
| Qwen | `claude-all qwen` |
|
|
114
|
+
| OpenRouter | `claude-all openrouter` |
|
|
115
|
+
| Letta | `claude-all letta` |
|
|
116
|
+
| Antigravity | `claude-all antigravity` |
|
|
117
|
+
|
|
118
|
+
### ✏️ Edit Models
|
|
119
|
+
|
|
120
|
+
Each provider has its own config in `models/<provider>/config.json`:
|
|
179
121
|
|
|
180
|
-
|
|
122
|
+
```bash
|
|
123
|
+
# Example: Add new GLM model
|
|
124
|
+
nano models/glm/config.json
|
|
125
|
+
```
|
|
181
126
|
|
|
182
|
-
Edit `models/glm/config.json`:
|
|
183
127
|
```json
|
|
184
128
|
{
|
|
185
129
|
"models": [
|
|
186
130
|
{ "id": "glm-4", "name": "GLM-4" },
|
|
187
|
-
{ "id": "glm-4-flash", "name": "GLM-4 Flash" },
|
|
188
131
|
{ "id": "glm-4.7", "name": "GLM-4.7 (NEW!)" }
|
|
189
132
|
]
|
|
190
133
|
}
|
|
191
134
|
```
|
|
192
135
|
|
|
193
|
-
|
|
136
|
+
---
|
|
137
|
+
|
|
138
|
+
## 📁 Project Structure
|
|
139
|
+
|
|
140
|
+
```
|
|
141
|
+
ClaudeAll/
|
|
142
|
+
├── agents/ # 14 AI agents
|
|
143
|
+
├── skills/ # 34 skills
|
|
144
|
+
├── commands/ # 3 commands
|
|
145
|
+
├── hooks/ # Session hooks
|
|
146
|
+
├── plugins/ # Plugin configs
|
|
147
|
+
├── models/ # 17 provider configs (user-editable)
|
|
148
|
+
│ ├── gemini/config.json
|
|
149
|
+
│ ├── openai/config.json
|
|
150
|
+
│ ├── glm/config.json
|
|
151
|
+
│ ├── minimax/config.json
|
|
152
|
+
│ ├── letta/config.json
|
|
153
|
+
│ └── .../config.json
|
|
154
|
+
├── providers/ # Provider wrapper scripts
|
|
155
|
+
├── auth/ # Auth scripts (Gemini, OpenAI OAuth)
|
|
156
|
+
├── bin/ # Executables
|
|
157
|
+
├── scripts/ # Utility scripts
|
|
158
|
+
├── utils/ # Libraries
|
|
159
|
+
├── tmux/ # Tmux config
|
|
160
|
+
├── claude-all # Multi-provider launcher (106KB)
|
|
161
|
+
├── mcp.json # MCP server config
|
|
162
|
+
├── install.sh # Universal installer
|
|
163
|
+
└── postinstall.js # npm hook
|
|
164
|
+
```
|
|
194
165
|
|
|
195
166
|
---
|
|
196
167
|
|
|
197
168
|
## 🔐 Installation Paths
|
|
198
169
|
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
|
202
|
-
|
|
203
|
-
|
|
|
204
|
-
|
|
|
205
|
-
|
|
|
206
|
-
|
|
|
207
|
-
| Plugins | `~/.claude/plugins/` |
|
|
208
|
-
| Settings | `~/.claude/settings.local.json` |
|
|
209
|
-
| MCP Config | `~/.mcp.json` |
|
|
210
|
-
| Tmux Config | `~/.tmux.conf` |
|
|
170
|
+
| Target | Claude | Gemini |
|
|
171
|
+
|--------|--------|--------|
|
|
172
|
+
| Agents | `~/.claude/agents/` | `~/.gemini/superpowers/agents/` |
|
|
173
|
+
| Skills | `~/.claude/skills/` | `~/.gemini/superpowers/skills/` |
|
|
174
|
+
| Commands | `~/.claude/commands/` | `~/.gemini/superpowers/commands/` |
|
|
175
|
+
| Hooks | `~/.claude/hooks/` | `~/.gemini/superpowers/hooks/` |
|
|
176
|
+
| MCP Config | `~/.mcp.json` | `~/.gemini/mcp.json` |
|
|
177
|
+
| Settings | `~/.claude/settings.local.json` | `~/.gemini/settings.json` |
|
|
211
178
|
|
|
212
179
|
---
|
|
213
180
|
|
|
214
181
|
## 🔄 Update
|
|
215
182
|
|
|
216
183
|
```bash
|
|
217
|
-
# curl
|
|
218
184
|
curl -fsSL https://raw.githubusercontent.com/zesbe/ClaudeAll/main/install.sh | bash
|
|
219
|
-
|
|
220
|
-
# npm
|
|
221
|
-
npm update -g claude-all-config
|
|
222
|
-
|
|
223
|
-
# manual
|
|
224
|
-
cd ~/.claude-all-config && git pull && ./install.sh
|
|
225
185
|
```
|
|
226
186
|
|
|
227
187
|
---
|
|
228
188
|
|
|
229
189
|
## 🚀 Usage
|
|
230
190
|
|
|
231
|
-
|
|
232
|
-
|
|
191
|
+
### Claude Code
|
|
233
192
|
```bash
|
|
234
|
-
#
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
# Check MCP servers
|
|
238
|
-
/mcp
|
|
239
|
-
|
|
240
|
-
# List agents
|
|
241
|
-
/agent list
|
|
193
|
+
# Start with bypass permissions
|
|
194
|
+
claude
|
|
242
195
|
|
|
243
|
-
# Use
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
# Use commands
|
|
247
|
-
/brainstorm
|
|
248
|
-
/write-plan
|
|
249
|
-
/execute-plan
|
|
196
|
+
# Use proactive-mode (default after install)
|
|
197
|
+
claude
|
|
250
198
|
```
|
|
251
199
|
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
### Change Default Agent
|
|
200
|
+
### Gemini CLI
|
|
201
|
+
```bash
|
|
202
|
+
# Start with YOLO mode
|
|
203
|
+
gemini -y
|
|
257
204
|
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
{
|
|
261
|
-
"agent": "code-reviewer"
|
|
262
|
-
}
|
|
205
|
+
# Select model
|
|
206
|
+
gemini -m gemini-2.5-pro
|
|
263
207
|
```
|
|
264
208
|
|
|
265
|
-
###
|
|
209
|
+
### Claude-All (Multi-Provider)
|
|
210
|
+
```bash
|
|
211
|
+
# Default (Claude)
|
|
212
|
+
claude-all
|
|
266
213
|
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
"deny": ["Bash(rm -rf /*)"]
|
|
272
|
-
}
|
|
273
|
-
}
|
|
214
|
+
# Other providers
|
|
215
|
+
claude-all gemini
|
|
216
|
+
claude-all glm
|
|
217
|
+
claude-all minimax
|
|
274
218
|
```
|
|
275
219
|
|
|
276
|
-
### Custom MCP Server
|
|
277
|
-
|
|
278
|
-
Edit `~/.mcp.json` to add/remove servers.
|
|
279
|
-
|
|
280
|
-
---
|
|
281
|
-
|
|
282
|
-
## 📋 Requirements
|
|
283
|
-
|
|
284
|
-
- Node.js >= 14.0.0
|
|
285
|
-
- Claude Code CLI (`@anthropic-ai/claude-code`)
|
|
286
|
-
- Git (for curl install)
|
|
287
|
-
- tmux (optional, for tmux config)
|
|
288
|
-
|
|
289
|
-
---
|
|
290
|
-
|
|
291
|
-
## 🤝 Contributing
|
|
292
|
-
|
|
293
|
-
1. Fork the repository
|
|
294
|
-
2. Create feature branch (`git checkout -b feature/amazing`)
|
|
295
|
-
3. Commit changes (`git commit -m 'Add amazing feature'`)
|
|
296
|
-
4. Push to branch (`git push origin feature/amazing`)
|
|
297
|
-
5. Open Pull Request
|
|
298
|
-
|
|
299
|
-
---
|
|
300
|
-
|
|
301
|
-
## 📄 License
|
|
302
|
-
|
|
303
|
-
MIT License - Free to use and modify.
|
|
304
|
-
|
|
305
220
|
---
|
|
306
221
|
|
|
307
|
-
##
|
|
222
|
+
## 📋 Comparison
|
|
308
223
|
|
|
309
|
-
|
|
224
|
+
| Feature | Claude | Gemini |
|
|
225
|
+
|---------|--------|--------|
|
|
226
|
+
| Config folder | `~/.claude/` | `~/.gemini/` |
|
|
227
|
+
| MCP config | `~/.mcp.json` | `~/.gemini/mcp.json` |
|
|
228
|
+
| Auto-approve | `settings.local.json` | `-y` flag |
|
|
229
|
+
| Model select | `-m sonnet` | `-m gemini-2.5-pro` |
|
|
230
|
+
| Resume | `--resume` | `-r latest` |
|
|
310
231
|
|
|
311
232
|
---
|
|
312
233
|
|
|
313
|
-
##
|
|
234
|
+
## 📜 License
|
|
314
235
|
|
|
315
|
-
- [
|
|
316
|
-
- [GitHub Repository](https://github.com/zesbe/ClaudeAll)
|
|
317
|
-
- [Issues](https://github.com/zesbe/ClaudeAll/issues)
|
|
236
|
+
MIT License - see [LICENSE](LICENSE)
|