claude-all-config 2.1.9 → 3.0.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 +138 -136
- package/VERSION +1 -1
- package/bin/skills-cli.js +722 -0
- package/index.js +170 -0
- package/lib/skill-hooks.js +140 -0
- package/package.json +46 -4
package/README.md
CHANGED
|
@@ -1,8 +1,15 @@
|
|
|
1
1
|
# 🤖 ClaudeAll
|
|
2
2
|
|
|
3
|
-
**Universal AI CLI Configuration
|
|
3
|
+
**Universal AI CLI Configuration with Advanced Skills System**
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
The most comprehensive AI agent configuration system with features **beyond skills.sh**:
|
|
6
|
+
- ✅ Quality scoring (0-100)
|
|
7
|
+
- ✅ Skill scaffolding generator
|
|
8
|
+
- ✅ Built-in testing framework
|
|
9
|
+
- ✅ Dependency management
|
|
10
|
+
- ✅ Hooks system (pre/post install)
|
|
11
|
+
- ✅ Multi-agent support (20+ agents)
|
|
12
|
+
- ✅ Offline-first design
|
|
6
13
|
|
|
7
14
|
[](https://www.npmjs.com/package/claude-all-config)
|
|
8
15
|
[](https://github.com/zesbe/ClaudeAll/blob/main/LICENSE)
|
|
@@ -11,49 +18,101 @@ Auto-detects installed CLIs and configures them with agents, skills, commands, M
|
|
|
11
18
|
|
|
12
19
|
## ⚡ Quick Install
|
|
13
20
|
|
|
14
|
-
### 🐧 Linux / Ubuntu / Mac
|
|
15
|
-
|
|
16
21
|
```bash
|
|
17
|
-
#
|
|
22
|
+
# npm (Recommended)
|
|
23
|
+
npm install -g claude-all-config
|
|
24
|
+
|
|
25
|
+
# curl
|
|
18
26
|
curl -fsSL https://raw.githubusercontent.com/zesbe/ClaudeAll/main/install.sh | bash
|
|
27
|
+
```
|
|
19
28
|
|
|
20
|
-
|
|
29
|
+
**Termux Android:**
|
|
30
|
+
```bash
|
|
31
|
+
pkg install nodejs-lts git
|
|
21
32
|
npm install -g claude-all-config
|
|
22
33
|
```
|
|
23
34
|
|
|
24
|
-
|
|
35
|
+
---
|
|
36
|
+
|
|
37
|
+
## 🆕 What's New in v3.0.0
|
|
38
|
+
|
|
39
|
+
### 🎯 Advanced Skills CLI
|
|
25
40
|
|
|
26
41
|
```bash
|
|
27
|
-
#
|
|
28
|
-
|
|
42
|
+
# List all skills with quality scores
|
|
43
|
+
claude-all-skills list
|
|
44
|
+
|
|
45
|
+
# Create new skill from template
|
|
46
|
+
claude-all-skills create my-awesome-skill
|
|
47
|
+
|
|
48
|
+
# Validate skill quality
|
|
49
|
+
claude-all-skills validate my-skill
|
|
50
|
+
|
|
51
|
+
# Run skill tests
|
|
52
|
+
claude-all-skills test my-skill
|
|
29
53
|
|
|
30
|
-
#
|
|
31
|
-
|
|
32
|
-
npm install -g @google/gemini-cli
|
|
54
|
+
# Export for publishing
|
|
55
|
+
claude-all-skills export my-skill
|
|
33
56
|
|
|
34
|
-
#
|
|
35
|
-
|
|
57
|
+
# View statistics
|
|
58
|
+
claude-all-skills stats
|
|
36
59
|
```
|
|
37
60
|
|
|
38
|
-
|
|
61
|
+
### 📊 Quality Scoring System
|
|
39
62
|
|
|
40
|
-
|
|
63
|
+
Every skill gets a quality score (0-100) based on:
|
|
64
|
+
- ✅ Has SKILL.md (+25)
|
|
65
|
+
- ✅ Has frontmatter (+10)
|
|
66
|
+
- ✅ Has description (+10)
|
|
67
|
+
- ✅ Has examples (+15)
|
|
68
|
+
- ✅ Has code blocks (+10)
|
|
69
|
+
- ✅ Has tests (+15)
|
|
70
|
+
- ✅ Has skill.json (+10)
|
|
71
|
+
- ✅ Has creation log (+5)
|
|
41
72
|
|
|
42
|
-
|
|
73
|
+
### 🪝 Hooks System
|
|
43
74
|
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
75
|
+
Define lifecycle hooks in `skill.json`:
|
|
76
|
+
```json
|
|
77
|
+
{
|
|
78
|
+
"hooks": {
|
|
79
|
+
"preInstall": "setup.sh",
|
|
80
|
+
"postInstall": "npm install",
|
|
81
|
+
"preUninstall": "cleanup.sh"
|
|
82
|
+
}
|
|
83
|
+
}
|
|
84
|
+
```
|
|
48
85
|
|
|
49
|
-
|
|
86
|
+
### 🔗 Dependency Management
|
|
87
|
+
|
|
88
|
+
Skills can depend on other skills:
|
|
89
|
+
```json
|
|
90
|
+
{
|
|
91
|
+
"dependencies": [
|
|
92
|
+
"systematic-debugging",
|
|
93
|
+
"test-driven-development"
|
|
94
|
+
]
|
|
95
|
+
}
|
|
96
|
+
```
|
|
50
97
|
|
|
51
|
-
|
|
98
|
+
---
|
|
52
99
|
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
|
56
|
-
|
|
100
|
+
## 🎯 Supported AI Agents
|
|
101
|
+
|
|
102
|
+
| Agent | Support |
|
|
103
|
+
|-------|---------|
|
|
104
|
+
| Claude Code | ✅ Full |
|
|
105
|
+
| Cursor | ✅ Full |
|
|
106
|
+
| GitHub Copilot | ✅ Full |
|
|
107
|
+
| Gemini CLI | ✅ Full |
|
|
108
|
+
| Windsurf | ✅ Full |
|
|
109
|
+
| OpenCode | ✅ Full |
|
|
110
|
+
| Roo | ✅ Full |
|
|
111
|
+
| Kilo | ✅ Full |
|
|
112
|
+
| Goose | ✅ Full |
|
|
113
|
+
| Codex | ✅ Full |
|
|
114
|
+
| Trae | ✅ Full |
|
|
115
|
+
| + 10 more | ✅ |
|
|
57
116
|
|
|
58
117
|
---
|
|
59
118
|
|
|
@@ -78,17 +137,17 @@ npm install -g claude-termux
|
|
|
78
137
|
| terraform-generator | Generate Terraform/IaC configs |
|
|
79
138
|
| ai-prompt-optimizer | Optimize AI prompts |
|
|
80
139
|
|
|
81
|
-
### ⚡ Skills (
|
|
140
|
+
### ⚡ Skills (60+)
|
|
82
141
|
|
|
83
142
|
| Category | Skills |
|
|
84
143
|
|----------|--------|
|
|
85
|
-
| **Development** | api-development, database-development, frontend-design, mobile-development |
|
|
144
|
+
| **Development** | api-development, database-development, frontend-design, mobile-development, backend-dev |
|
|
86
145
|
| **Quality** | code-quality, test-driven-development, integration-testing, testing-anti-patterns |
|
|
87
146
|
| **Planning** | brainstorming, writing-plans, executing-plans |
|
|
88
147
|
| **Review** | requesting-code-review, receiving-code-review, security-review, ui-ux-review |
|
|
89
148
|
| **Debug** | systematic-debugging, root-cause-tracing, error-handling |
|
|
90
149
|
| **Deploy** | deployment, defense-in-depth |
|
|
91
|
-
| **Advanced** | subagent-driven-development, dispatching-parallel-agents |
|
|
150
|
+
| **Advanced** | subagent-driven-development, dispatching-parallel-agents, condition-based-waiting |
|
|
92
151
|
|
|
93
152
|
### 📝 Commands (3)
|
|
94
153
|
|
|
@@ -109,55 +168,38 @@ npm install -g claude-termux
|
|
|
109
168
|
| **filesystem** | File system access |
|
|
110
169
|
| **fetch** | HTTP requests |
|
|
111
170
|
|
|
112
|
-
|
|
171
|
+
---
|
|
113
172
|
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
173
|
+
## 🆚 ClaudeAll vs skills.sh
|
|
174
|
+
|
|
175
|
+
| Feature | skills.sh | ClaudeAll |
|
|
176
|
+
|---------|-----------|-----------|
|
|
177
|
+
| Skill registry | ✅ | ✅ |
|
|
178
|
+
| Quality scoring | ❌ | ✅ 0-100 |
|
|
179
|
+
| Skill scaffolding | ❌ | ✅ `create` |
|
|
180
|
+
| Testing framework | ❌ | ✅ Built-in |
|
|
181
|
+
| Dependencies | ❌ | ✅ |
|
|
182
|
+
| Hooks system | ❌ | ✅ pre/post |
|
|
183
|
+
| Agents | ❌ | ✅ 14 agents |
|
|
184
|
+
| Commands | ❌ | ✅ 3 commands |
|
|
185
|
+
| Offline support | ❌ | ✅ |
|
|
186
|
+
| Export for npm | ❌ | ✅ |
|
|
118
187
|
|
|
119
188
|
---
|
|
120
189
|
|
|
121
|
-
## 🔥
|
|
190
|
+
## 🔥 Multi-Provider Launcher
|
|
122
191
|
|
|
123
192
|
The `claude-all` script supports 17+ AI providers:
|
|
124
193
|
|
|
125
|
-
| Provider | Command |
|
|
126
|
-
|----------|---------|
|
|
127
|
-
| Claude (default) | `claude-all` |
|
|
128
|
-
| Gemini | `claude-all gemini` |
|
|
129
|
-
| OpenAI | `claude-all openai` |
|
|
130
|
-
| GLM (ZhipuAI) | `claude-all glm` |
|
|
131
|
-
| MiniMax | `claude-all minimax` |
|
|
132
|
-
| xAI (Grok) | `claude-all xai` |
|
|
133
|
-
| Groq | `claude-all groq` |
|
|
134
|
-
| DeepSeek | `claude-all deepseek` |
|
|
135
|
-
| Perplexity | `claude-all perplexity` |
|
|
136
|
-
| Ollama | `claude-all ollama` |
|
|
137
|
-
| Mistral | `claude-all mistral` |
|
|
138
|
-
| Cohere | `claude-all cohere` |
|
|
139
|
-
| Moonshot | `claude-all moonshot` |
|
|
140
|
-
| Qwen | `claude-all qwen` |
|
|
141
|
-
| OpenRouter | `claude-all openrouter` |
|
|
142
|
-
| Letta | `claude-all letta` |
|
|
143
|
-
| Antigravity | `claude-all antigravity` |
|
|
144
|
-
|
|
145
|
-
### ✏️ Edit Models
|
|
146
|
-
|
|
147
|
-
Each provider has its own config in `models/<provider>/config.json`:
|
|
148
|
-
|
|
149
194
|
```bash
|
|
150
|
-
#
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
{ "id": "glm-4.7", "name": "GLM-4.7 (NEW!)" }
|
|
159
|
-
]
|
|
160
|
-
}
|
|
195
|
+
claude-all # Claude (default)
|
|
196
|
+
claude-all gemini # Gemini
|
|
197
|
+
claude-all openai # OpenAI
|
|
198
|
+
claude-all glm # ZhipuAI
|
|
199
|
+
claude-all minimax # MiniMax
|
|
200
|
+
claude-all deepseek # DeepSeek
|
|
201
|
+
claude-all groq # Groq
|
|
202
|
+
claude-all ollama # Ollama (local)
|
|
161
203
|
```
|
|
162
204
|
|
|
163
205
|
---
|
|
@@ -167,51 +209,24 @@ nano models/glm/config.json
|
|
|
167
209
|
```
|
|
168
210
|
ClaudeAll/
|
|
169
211
|
├── agents/ # 14 AI agents
|
|
170
|
-
├── skills/ #
|
|
212
|
+
├── skills/ # 60+ skills
|
|
171
213
|
├── commands/ # 3 commands
|
|
172
214
|
├── hooks/ # Session hooks
|
|
173
|
-
├──
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
│
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
├── providers/ # Provider wrapper scripts
|
|
182
|
-
├── auth/ # Auth scripts (Gemini, OpenAI OAuth)
|
|
183
|
-
├── bin/ # Executables
|
|
184
|
-
├── scripts/ # Utility scripts
|
|
185
|
-
├── utils/ # Libraries
|
|
186
|
-
├── tmux/ # Tmux config
|
|
187
|
-
├── claude-all # Multi-provider launcher (106KB)
|
|
188
|
-
├── mcp.json # MCP server config
|
|
189
|
-
├── install.sh # Universal installer
|
|
190
|
-
└── postinstall.js # npm hook
|
|
215
|
+
├── lib/ # Core libraries
|
|
216
|
+
│ └── skill-hooks.js # Hooks system
|
|
217
|
+
├── bin/
|
|
218
|
+
│ └── skills-cli.js # Skills CLI
|
|
219
|
+
├── models/ # 17 provider configs
|
|
220
|
+
├── index.js # Main module
|
|
221
|
+
├── claude-all # Multi-provider launcher
|
|
222
|
+
└── install.sh # Universal installer
|
|
191
223
|
```
|
|
192
224
|
|
|
193
225
|
---
|
|
194
226
|
|
|
195
|
-
## 🔐 Installation Paths
|
|
196
|
-
|
|
197
|
-
| Target | Claude | Gemini |
|
|
198
|
-
|--------|--------|--------|
|
|
199
|
-
| Agents | `~/.claude/agents/` | `~/.gemini/superpowers/agents/` |
|
|
200
|
-
| Skills | `~/.claude/skills/` | `~/.gemini/superpowers/skills/` |
|
|
201
|
-
| Commands | `~/.claude/commands/` | `~/.gemini/superpowers/commands/` |
|
|
202
|
-
| Hooks | `~/.claude/hooks/` | `~/.gemini/superpowers/hooks/` |
|
|
203
|
-
| MCP Config | `~/.mcp.json` | `~/.gemini/mcp.json` |
|
|
204
|
-
| Settings | `~/.claude/settings.local.json` | `~/.gemini/settings.json` |
|
|
205
|
-
|
|
206
|
-
---
|
|
207
|
-
|
|
208
227
|
## 🔄 Update
|
|
209
228
|
|
|
210
229
|
```bash
|
|
211
|
-
# curl
|
|
212
|
-
curl -fsSL https://raw.githubusercontent.com/zesbe/ClaudeAll/main/install.sh | bash
|
|
213
|
-
|
|
214
|
-
# npm
|
|
215
230
|
npm update -g claude-all-config
|
|
216
231
|
```
|
|
217
232
|
|
|
@@ -219,49 +234,36 @@ npm update -g claude-all-config
|
|
|
219
234
|
|
|
220
235
|
## 🚀 Usage
|
|
221
236
|
|
|
222
|
-
###
|
|
237
|
+
### Skills CLI
|
|
223
238
|
```bash
|
|
224
|
-
#
|
|
225
|
-
claude
|
|
239
|
+
# List all skills
|
|
240
|
+
claude-all-skills list
|
|
226
241
|
|
|
227
|
-
#
|
|
228
|
-
claude
|
|
242
|
+
# Create new skill
|
|
243
|
+
claude-all-skills create my-skill
|
|
244
|
+
|
|
245
|
+
# Validate before publish
|
|
246
|
+
claude-all-skills validate my-skill
|
|
229
247
|
```
|
|
230
248
|
|
|
231
|
-
###
|
|
249
|
+
### Claude Code
|
|
232
250
|
```bash
|
|
233
|
-
# Start with
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
# Select model
|
|
237
|
-
gemini -m gemini-2.5-pro
|
|
251
|
+
# Start with superpowers
|
|
252
|
+
claude
|
|
238
253
|
```
|
|
239
254
|
|
|
240
|
-
###
|
|
255
|
+
### Multi-Provider
|
|
241
256
|
```bash
|
|
242
|
-
# Default (Claude)
|
|
243
|
-
claude-all
|
|
244
|
-
|
|
245
|
-
# Other providers
|
|
246
257
|
claude-all gemini
|
|
247
|
-
claude-all
|
|
248
|
-
claude-all minimax
|
|
258
|
+
claude-all deepseek
|
|
249
259
|
```
|
|
250
260
|
|
|
251
261
|
---
|
|
252
262
|
|
|
253
|
-
##
|
|
263
|
+
## 📜 License
|
|
254
264
|
|
|
255
|
-
|
|
256
|
-
|---------|--------|--------|
|
|
257
|
-
| Config folder | `~/.claude/` | `~/.gemini/` |
|
|
258
|
-
| MCP config | `~/.mcp.json` | `~/.gemini/mcp.json` |
|
|
259
|
-
| Auto-approve | `settings.local.json` | `-y` flag |
|
|
260
|
-
| Model select | `-m sonnet` | `-m gemini-2.5-pro` |
|
|
261
|
-
| Resume | `--resume` | `-r latest` |
|
|
265
|
+
MIT License - see [LICENSE](LICENSE)
|
|
262
266
|
|
|
263
267
|
---
|
|
264
268
|
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
MIT License - see [LICENSE](LICENSE)
|
|
269
|
+
**Made with ❤️ by [zesbe](https://github.com/zesbe)**
|
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
3.0.0
|