claude-all-config 2.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/LICENSE +21 -0
- package/LICENSE.md +70 -0
- package/README.md +133 -0
- package/VERSION +1 -0
- package/agents/accessibility-reviewer.md +96 -0
- package/agents/ai-prompt-optimizer.md +94 -0
- package/agents/api-tester.md +102 -0
- package/agents/code-generator.md +94 -0
- package/agents/code-reviewer.md +47 -0
- package/agents/component-generator.md +102 -0
- package/agents/doc-generator.md +91 -0
- package/agents/migration-generator.md +94 -0
- package/agents/performance-analyzer.md +90 -0
- package/agents/proactive-mode.md +91 -0
- package/agents/readme-generator.md +101 -0
- package/agents/security-auditor.md +86 -0
- package/agents/terraform-generator.md +94 -0
- package/agents/test-generator.md +76 -0
- package/bin/agentrouter.json +36 -0
- package/bin/ai-chat +20 -0
- package/bin/antigravity.json +76 -0
- package/bin/api-manager +340 -0
- package/bin/claude-launcher +19 -0
- package/bin/claude-master +15 -0
- package/bin/claude_master.py +295 -0
- package/bin/cohere.json +7 -0
- package/bin/deepseek.json +44 -0
- package/bin/gemini.json +56 -0
- package/bin/glm.json +21 -0
- package/bin/groq.json +41 -0
- package/bin/minimax.json +26 -0
- package/bin/mistral.json +7 -0
- package/bin/moonshot.json +7 -0
- package/bin/ollama.json +36 -0
- package/bin/openai.json +46 -0
- package/bin/openrouter.json +38 -0
- package/bin/perplexity.json +12 -0
- package/bin/qwen.json +7 -0
- package/bin/switch-provider +73 -0
- package/bin/test.json +7 -0
- package/bin/xai.json +41 -0
- package/claude-all +2707 -0
- package/claude-config.json +340 -0
- package/claude-suite/REFACTORING_SUMMARY.md +88 -0
- package/claude-suite/auth/.antigravity_proxy.py +78 -0
- package/claude-suite/auth/__pycache__/openai_auth.cpython-312.pyc +0 -0
- package/claude-suite/auth/gemini_auth.py +80 -0
- package/claude-suite/auth/openai_auth.py +138 -0
- package/claude-suite/backups/claude-all-before-refactor +1075 -0
- package/claude-suite/backups/claude-all.backup +840 -0
- package/claude-suite/backups/claude-all.original +840 -0
- package/claude-suite/models/add-model-manual.sh +588 -0
- package/claude-suite/models/add-model.sh +114 -0
- package/claude-suite/models/model-switcher.sh +69 -0
- package/claude-suite/providers/claude-glm +89 -0
- package/claude-suite/providers/claude-glm-wrapper.sh +55 -0
- package/claude-suite/providers/claude-minimax +12 -0
- package/claude-suite/providers/claude-smart +132 -0
- package/claude-suite/providers/xai_chat.sh +56 -0
- package/claude-suite/utils/__pycache__/claude_master.cpython-312.pyc +0 -0
- package/claude-suite/utils/antigravity_proxy_server.py +168 -0
- package/claude-suite/utils/claude-all-help.txt +83 -0
- package/claude-suite/utils/claude_master.py +408 -0
- package/commands/brainstorm.md +5 -0
- package/commands/execute-plan.md +5 -0
- package/commands/write-plan.md +5 -0
- package/docs/ANTIGRAVITY-SETUP.md +176 -0
- package/docs/AUTH_CREDENTIALS.md +54 -0
- package/docs/NPM-INSTALLATION.md +166 -0
- package/hooks/hooks.json +15 -0
- package/hooks/run-hook.cmd +19 -0
- package/hooks/session-start.sh +52 -0
- package/install.sh +155 -0
- package/mcp.json +34 -0
- package/model/perplexity.json +12 -0
- package/package.json +69 -0
- package/plugins/README.md +47 -0
- package/plugins/installed_plugins.json +317 -0
- package/plugins/known_marketplaces.json +10 -0
- package/plugins/marketplace-info/marketplace.json +517 -0
- package/postinstall.js +100 -0
- package/scripts/antigravity_proxy_server.py +168 -0
- package/scripts/get_gemini_api_key.py +96 -0
- package/scripts/setup_antigravity_auth.py +171 -0
- package/skills/api-development/SKILL.md +11 -0
- package/skills/api-development/openapi/api-documentation.yaml +108 -0
- package/skills/brainstorming/SKILL.md +54 -0
- package/skills/code-quality/SKILL.md +196 -0
- package/skills/condition-based-waiting/SKILL.md +120 -0
- package/skills/condition-based-waiting/example.ts +158 -0
- package/skills/database-development/SKILL.md +11 -0
- package/skills/database-development/migrations/migration.template.sql +49 -0
- package/skills/defense-in-depth/SKILL.md +127 -0
- package/skills/deployment/SKILL.md +11 -0
- package/skills/deployment/ci-cd/github-actions.yml +95 -0
- package/skills/deployment/docker/Dockerfile.template +39 -0
- package/skills/dispatching-parallel-agents/SKILL.md +180 -0
- package/skills/documentation-generation/SKILL.md +8 -0
- package/skills/documentation-generation/templates/README.template.md +60 -0
- package/skills/error-handling/SKILL.md +267 -0
- package/skills/executing-plans/SKILL.md +76 -0
- package/skills/finishing-a-development-branch/SKILL.md +200 -0
- package/skills/frontend-design/frontend-design/SKILL.md +42 -0
- package/skills/integration-testing/SKILL.md +13 -0
- package/skills/integration-testing/examples/contract-test.py +317 -0
- package/skills/integration-testing/examples/e2e-test.js +147 -0
- package/skills/integration-testing/examples/test-isolation.md +94 -0
- package/skills/logging-monitoring/SKILL.md +66 -0
- package/skills/mobile-development/SKILL.md +11 -0
- package/skills/mobile-development/responsive/responsive.css +80 -0
- package/skills/performance-optimization/SKILL.md +9 -0
- package/skills/performance-optimization/profiling/profile.template.js +21 -0
- package/skills/receiving-code-review/SKILL.md +209 -0
- package/skills/refactoring/SKILL.md +11 -0
- package/skills/refactoring/code-smells/common-smells.md +115 -0
- package/skills/requesting-code-review/SKILL.md +105 -0
- package/skills/requesting-code-review/code-reviewer.md +146 -0
- package/skills/root-cause-tracing/SKILL.md +174 -0
- package/skills/root-cause-tracing/find-polluter.sh +63 -0
- package/skills/security-review/SKILL.md +11 -0
- package/skills/security-review/checklists/owasp-checklist.md +31 -0
- package/skills/sharing-skills/SKILL.md +194 -0
- package/skills/subagent-driven-development/SKILL.md +240 -0
- package/skills/subagent-driven-development/code-quality-reviewer-prompt.md +20 -0
- package/skills/subagent-driven-development/implementer-prompt.md +78 -0
- package/skills/subagent-driven-development/spec-reviewer-prompt.md +61 -0
- package/skills/systematic-debugging/CREATION-LOG.md +119 -0
- package/skills/systematic-debugging/SKILL.md +295 -0
- package/skills/systematic-debugging/test-academic.md +14 -0
- package/skills/systematic-debugging/test-pressure-1.md +58 -0
- package/skills/systematic-debugging/test-pressure-2.md +68 -0
- package/skills/systematic-debugging/test-pressure-3.md +69 -0
- package/skills/test-driven-development/SKILL.md +364 -0
- package/skills/testing-anti-patterns/SKILL.md +302 -0
- package/skills/testing-skills-with-subagents/SKILL.md +387 -0
- package/skills/testing-skills-with-subagents/examples/CLAUDE_MD_TESTING.md +189 -0
- package/skills/ui-ux-review/SKILL.md +13 -0
- package/skills/ui-ux-review/checklists/ux-heuristics.md +61 -0
- package/skills/using-git-worktrees/SKILL.md +213 -0
- package/skills/using-superpowers/SKILL.md +101 -0
- package/skills/verification-before-completion/SKILL.md +139 -0
- package/skills/writing-plans/SKILL.md +116 -0
- package/skills/writing-skills/SKILL.md +622 -0
- package/skills/writing-skills/anthropic-best-practices.md +1150 -0
- package/skills/writing-skills/graphviz-conventions.dot +172 -0
- package/skills/writing-skills/persuasion-principles.md +187 -0
- package/update.sh +36 -0
- package/utils/check-superpowers.sh +114 -0
- package/utils/claude-branding.md +166 -0
- package/utils/config.js +185 -0
- package/utils/custom-claude-config.sh +89 -0
- package/utils/custom-claude-hooks.md +129 -0
- package/utils/custom-claude-lib.js +222 -0
- package/utils/customize-claude-ui.sh +162 -0
- package/utils/fix-claude-integration.sh +133 -0
- package/utils/help.js +125 -0
- package/utils/install-curl.ps1 +135 -0
- package/utils/install-curl.sh +525 -0
- package/utils/install-superpowers.js +411 -0
- package/utils/install.js +298 -0
- package/utils/install.sh +182 -0
- package/utils/postinstall.js +63 -0
- package/utils/rename-claude.sh +96 -0
- package/utils/uninstall-superpowers.js +273 -0
- package/utils/uninstall.ps1 +136 -0
- package/utils/uninstall.sh +163 -0
- package/utils/update.sh +160 -0
|
@@ -0,0 +1,517 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://anthropic.com/claude-code/marketplace.schema.json",
|
|
3
|
+
"name": "claude-plugins-official",
|
|
4
|
+
"description": "Directory of popular Claude Code extensions including development tools, productivity plugins, and MCP integrations",
|
|
5
|
+
"owner": {
|
|
6
|
+
"name": "Anthropic",
|
|
7
|
+
"email": "support@anthropic.com"
|
|
8
|
+
},
|
|
9
|
+
"plugins": [
|
|
10
|
+
{
|
|
11
|
+
"name": "typescript-lsp",
|
|
12
|
+
"description": "TypeScript/JavaScript language server for enhanced code intelligence",
|
|
13
|
+
"version": "1.0.0",
|
|
14
|
+
"author": {
|
|
15
|
+
"name": "Anthropic",
|
|
16
|
+
"email": "support@anthropic.com"
|
|
17
|
+
},
|
|
18
|
+
"source": "./plugins/typescript-lsp",
|
|
19
|
+
"category": "development",
|
|
20
|
+
"strict": false,
|
|
21
|
+
"lspServers": {
|
|
22
|
+
"typescript": {
|
|
23
|
+
"command": "typescript-language-server",
|
|
24
|
+
"args": ["--stdio"],
|
|
25
|
+
"extensionToLanguage": {
|
|
26
|
+
".ts": "typescript",
|
|
27
|
+
".tsx": "typescriptreact",
|
|
28
|
+
".js": "javascript",
|
|
29
|
+
".jsx": "javascriptreact",
|
|
30
|
+
".mts": "typescript",
|
|
31
|
+
".cts": "typescript",
|
|
32
|
+
".mjs": "javascript",
|
|
33
|
+
".cjs": "javascript"
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
"name": "pyright-lsp",
|
|
40
|
+
"description": "Python language server (Pyright) for type checking and code intelligence",
|
|
41
|
+
"version": "1.0.0",
|
|
42
|
+
"author": {
|
|
43
|
+
"name": "Anthropic",
|
|
44
|
+
"email": "support@anthropic.com"
|
|
45
|
+
},
|
|
46
|
+
"source": "./plugins/pyright-lsp",
|
|
47
|
+
"category": "development",
|
|
48
|
+
"strict": false,
|
|
49
|
+
"lspServers": {
|
|
50
|
+
"pyright": {
|
|
51
|
+
"command": "pyright-langserver",
|
|
52
|
+
"args": ["--stdio"],
|
|
53
|
+
"extensionToLanguage": {
|
|
54
|
+
".py": "python",
|
|
55
|
+
".pyi": "python"
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
},
|
|
60
|
+
{
|
|
61
|
+
"name": "gopls-lsp",
|
|
62
|
+
"description": "Go language server for code intelligence and refactoring",
|
|
63
|
+
"version": "1.0.0",
|
|
64
|
+
"author": {
|
|
65
|
+
"name": "Anthropic",
|
|
66
|
+
"email": "support@anthropic.com"
|
|
67
|
+
},
|
|
68
|
+
"source": "./plugins/gopls-lsp",
|
|
69
|
+
"category": "development",
|
|
70
|
+
"strict": false,
|
|
71
|
+
"lspServers": {
|
|
72
|
+
"gopls": {
|
|
73
|
+
"command": "gopls",
|
|
74
|
+
"extensionToLanguage": {
|
|
75
|
+
".go": "go"
|
|
76
|
+
}
|
|
77
|
+
}
|
|
78
|
+
}
|
|
79
|
+
},
|
|
80
|
+
{
|
|
81
|
+
"name": "rust-analyzer-lsp",
|
|
82
|
+
"description": "Rust language server for code intelligence and analysis",
|
|
83
|
+
"version": "1.0.0",
|
|
84
|
+
"author": {
|
|
85
|
+
"name": "Anthropic",
|
|
86
|
+
"email": "support@anthropic.com"
|
|
87
|
+
},
|
|
88
|
+
"source": "./plugins/rust-analyzer-lsp",
|
|
89
|
+
"category": "development",
|
|
90
|
+
"strict": false,
|
|
91
|
+
"lspServers": {
|
|
92
|
+
"rust-analyzer": {
|
|
93
|
+
"command": "rust-analyzer",
|
|
94
|
+
"extensionToLanguage": {
|
|
95
|
+
".rs": "rust"
|
|
96
|
+
}
|
|
97
|
+
}
|
|
98
|
+
}
|
|
99
|
+
},
|
|
100
|
+
{
|
|
101
|
+
"name": "clangd-lsp",
|
|
102
|
+
"description": "C/C++ language server (clangd) for code intelligence",
|
|
103
|
+
"version": "1.0.0",
|
|
104
|
+
"author": {
|
|
105
|
+
"name": "Anthropic",
|
|
106
|
+
"email": "support@anthropic.com"
|
|
107
|
+
},
|
|
108
|
+
"source": "./plugins/clangd-lsp",
|
|
109
|
+
"category": "development",
|
|
110
|
+
"strict": false,
|
|
111
|
+
"lspServers": {
|
|
112
|
+
"clangd": {
|
|
113
|
+
"command": "clangd",
|
|
114
|
+
"args": ["--background-index"],
|
|
115
|
+
"extensionToLanguage": {
|
|
116
|
+
".c": "c",
|
|
117
|
+
".h": "c",
|
|
118
|
+
".cpp": "cpp",
|
|
119
|
+
".cc": "cpp",
|
|
120
|
+
".cxx": "cpp",
|
|
121
|
+
".hpp": "cpp",
|
|
122
|
+
".hxx": "cpp",
|
|
123
|
+
".C": "cpp",
|
|
124
|
+
".H": "cpp"
|
|
125
|
+
}
|
|
126
|
+
}
|
|
127
|
+
}
|
|
128
|
+
},
|
|
129
|
+
{
|
|
130
|
+
"name": "php-lsp",
|
|
131
|
+
"description": "PHP language server (Intelephense) for code intelligence",
|
|
132
|
+
"version": "1.0.0",
|
|
133
|
+
"author": {
|
|
134
|
+
"name": "Anthropic",
|
|
135
|
+
"email": "support@anthropic.com"
|
|
136
|
+
},
|
|
137
|
+
"source": "./plugins/php-lsp",
|
|
138
|
+
"category": "development",
|
|
139
|
+
"strict": false,
|
|
140
|
+
"lspServers": {
|
|
141
|
+
"intelephense": {
|
|
142
|
+
"command": "intelephense",
|
|
143
|
+
"args": ["--stdio"],
|
|
144
|
+
"extensionToLanguage": {
|
|
145
|
+
".php": "php"
|
|
146
|
+
}
|
|
147
|
+
}
|
|
148
|
+
}
|
|
149
|
+
},
|
|
150
|
+
{
|
|
151
|
+
"name": "swift-lsp",
|
|
152
|
+
"description": "Swift language server (SourceKit-LSP) for code intelligence",
|
|
153
|
+
"version": "1.0.0",
|
|
154
|
+
"author": {
|
|
155
|
+
"name": "Anthropic",
|
|
156
|
+
"email": "support@anthropic.com"
|
|
157
|
+
},
|
|
158
|
+
"source": "./plugins/swift-lsp",
|
|
159
|
+
"category": "development",
|
|
160
|
+
"strict": false,
|
|
161
|
+
"lspServers": {
|
|
162
|
+
"sourcekit-lsp": {
|
|
163
|
+
"command": "sourcekit-lsp",
|
|
164
|
+
"extensionToLanguage": {
|
|
165
|
+
".swift": "swift"
|
|
166
|
+
}
|
|
167
|
+
}
|
|
168
|
+
}
|
|
169
|
+
},
|
|
170
|
+
{
|
|
171
|
+
"name": "csharp-lsp",
|
|
172
|
+
"description": "C# language server for code intelligence",
|
|
173
|
+
"version": "1.0.0",
|
|
174
|
+
"author": {
|
|
175
|
+
"name": "Anthropic",
|
|
176
|
+
"email": "support@anthropic.com"
|
|
177
|
+
},
|
|
178
|
+
"source": "./plugins/csharp-lsp",
|
|
179
|
+
"category": "development",
|
|
180
|
+
"strict": false,
|
|
181
|
+
"lspServers": {
|
|
182
|
+
"csharp-ls": {
|
|
183
|
+
"command": "csharp-ls",
|
|
184
|
+
"extensionToLanguage": {
|
|
185
|
+
".cs": "csharp"
|
|
186
|
+
}
|
|
187
|
+
}
|
|
188
|
+
}
|
|
189
|
+
},
|
|
190
|
+
{
|
|
191
|
+
"name": "jdtls-lsp",
|
|
192
|
+
"description": "Java language server (Eclipse JDT.LS) for code intelligence",
|
|
193
|
+
"version": "1.0.0",
|
|
194
|
+
"author": {
|
|
195
|
+
"name": "Anthropic",
|
|
196
|
+
"email": "support@anthropic.com"
|
|
197
|
+
},
|
|
198
|
+
"source": "./plugins/jdtls-lsp",
|
|
199
|
+
"category": "development",
|
|
200
|
+
"strict": false,
|
|
201
|
+
"lspServers": {
|
|
202
|
+
"jdtls": {
|
|
203
|
+
"command": "jdtls",
|
|
204
|
+
"extensionToLanguage": {
|
|
205
|
+
".java": "java"
|
|
206
|
+
},
|
|
207
|
+
"startupTimeout": 120000
|
|
208
|
+
}
|
|
209
|
+
}
|
|
210
|
+
},
|
|
211
|
+
{
|
|
212
|
+
"name": "lua-lsp",
|
|
213
|
+
"description": "Lua language server for code intelligence",
|
|
214
|
+
"version": "1.0.0",
|
|
215
|
+
"author": {
|
|
216
|
+
"name": "Anthropic",
|
|
217
|
+
"email": "support@anthropic.com"
|
|
218
|
+
},
|
|
219
|
+
"source": "./plugins/lua-lsp",
|
|
220
|
+
"category": "development",
|
|
221
|
+
"strict": false,
|
|
222
|
+
"lspServers": {
|
|
223
|
+
"lua": {
|
|
224
|
+
"command": "lua-language-server",
|
|
225
|
+
"extensionToLanguage": {
|
|
226
|
+
".lua": "lua"
|
|
227
|
+
}
|
|
228
|
+
}
|
|
229
|
+
}
|
|
230
|
+
},
|
|
231
|
+
{
|
|
232
|
+
"name": "agent-sdk-dev",
|
|
233
|
+
"description": "Development kit for working with the Claude Agent SDK",
|
|
234
|
+
"author": {
|
|
235
|
+
"name": "Anthropic",
|
|
236
|
+
"email": "support@anthropic.com"
|
|
237
|
+
},
|
|
238
|
+
"source": "./plugins/agent-sdk-dev",
|
|
239
|
+
"category": "development",
|
|
240
|
+
"homepage": "https://github.com/anthropics/claude-plugins-public/tree/main/plugins/agent-sdk-dev"
|
|
241
|
+
},
|
|
242
|
+
{
|
|
243
|
+
"name": "pr-review-toolkit",
|
|
244
|
+
"description": "Comprehensive PR review agents specializing in comments, tests, error handling, type design, code quality, and code simplification",
|
|
245
|
+
"author": {
|
|
246
|
+
"name": "Anthropic",
|
|
247
|
+
"email": "support@anthropic.com"
|
|
248
|
+
},
|
|
249
|
+
"source": "./plugins/pr-review-toolkit",
|
|
250
|
+
"category": "productivity",
|
|
251
|
+
"homepage": "https://github.com/anthropics/claude-plugins-public/tree/main/plugins/pr-review-toolkit"
|
|
252
|
+
},
|
|
253
|
+
{
|
|
254
|
+
"name": "commit-commands",
|
|
255
|
+
"description": "Commands for git commit workflows including commit, push, and PR creation",
|
|
256
|
+
"author": {
|
|
257
|
+
"name": "Anthropic",
|
|
258
|
+
"email": "support@anthropic.com"
|
|
259
|
+
},
|
|
260
|
+
"source": "./plugins/commit-commands",
|
|
261
|
+
"category": "productivity",
|
|
262
|
+
"homepage": "https://github.com/anthropics/claude-plugins-public/tree/main/plugins/commit-commands"
|
|
263
|
+
},
|
|
264
|
+
{
|
|
265
|
+
"name": "feature-dev",
|
|
266
|
+
"description": "Comprehensive feature development workflow with specialized agents for codebase exploration, architecture design, and quality review",
|
|
267
|
+
"author": {
|
|
268
|
+
"name": "Anthropic",
|
|
269
|
+
"email": "support@anthropic.com"
|
|
270
|
+
},
|
|
271
|
+
"source": "./plugins/feature-dev",
|
|
272
|
+
"category": "development",
|
|
273
|
+
"homepage": "https://github.com/anthropics/claude-plugins-public/tree/main/plugins/feature-dev"
|
|
274
|
+
},
|
|
275
|
+
{
|
|
276
|
+
"name": "security-guidance",
|
|
277
|
+
"description": "Security reminder hook that warns about potential security issues when editing files, including command injection, XSS, and unsafe code patterns",
|
|
278
|
+
"author": {
|
|
279
|
+
"name": "Anthropic",
|
|
280
|
+
"email": "support@anthropic.com"
|
|
281
|
+
},
|
|
282
|
+
"source": "./plugins/security-guidance",
|
|
283
|
+
"category": "security",
|
|
284
|
+
"homepage": "https://github.com/anthropics/claude-plugins-public/tree/main/plugins/security-guidance"
|
|
285
|
+
},
|
|
286
|
+
{
|
|
287
|
+
"name": "code-review",
|
|
288
|
+
"description": "Automated code review for pull requests using multiple specialized agents with confidence-based scoring to filter false positives",
|
|
289
|
+
"author": {
|
|
290
|
+
"name": "Anthropic",
|
|
291
|
+
"email": "support@anthropic.com"
|
|
292
|
+
},
|
|
293
|
+
"source": "./plugins/code-review",
|
|
294
|
+
"category": "productivity",
|
|
295
|
+
"homepage": "https://github.com/anthropics/claude-plugins-public/tree/main/plugins/code-review"
|
|
296
|
+
},
|
|
297
|
+
{
|
|
298
|
+
"name": "explanatory-output-style",
|
|
299
|
+
"description": "Adds educational insights about implementation choices and codebase patterns (mimics the deprecated Explanatory output style)",
|
|
300
|
+
"author": {
|
|
301
|
+
"name": "Anthropic",
|
|
302
|
+
"email": "support@anthropic.com"
|
|
303
|
+
},
|
|
304
|
+
"source": "./plugins/explanatory-output-style",
|
|
305
|
+
"category": "learning",
|
|
306
|
+
"homepage": "https://github.com/anthropics/claude-plugins-public/tree/main/plugins/explanatory-output-style"
|
|
307
|
+
},
|
|
308
|
+
{
|
|
309
|
+
"name": "learning-output-style",
|
|
310
|
+
"description": "Interactive learning mode that requests meaningful code contributions at decision points (mimics the unshipped Learning output style)",
|
|
311
|
+
"author": {
|
|
312
|
+
"name": "Anthropic",
|
|
313
|
+
"email": "support@anthropic.com"
|
|
314
|
+
},
|
|
315
|
+
"source": "./plugins/learning-output-style",
|
|
316
|
+
"category": "learning",
|
|
317
|
+
"homepage": "https://github.com/anthropics/claude-plugins-public/tree/main/plugins/learning-output-style"
|
|
318
|
+
},
|
|
319
|
+
{
|
|
320
|
+
"name": "frontend-design",
|
|
321
|
+
"description": "Create distinctive, production-grade frontend interfaces with high design quality. Generates creative, polished code that avoids generic AI aesthetics.",
|
|
322
|
+
"author": {
|
|
323
|
+
"name": "Anthropic",
|
|
324
|
+
"email": "support@anthropic.com"
|
|
325
|
+
},
|
|
326
|
+
"source": "./plugins/frontend-design",
|
|
327
|
+
"category": "development",
|
|
328
|
+
"homepage": "https://github.com/anthropics/claude-plugins-public/tree/main/plugins/frontend-design"
|
|
329
|
+
},
|
|
330
|
+
{
|
|
331
|
+
"name": "ralph-loop",
|
|
332
|
+
"description": "Interactive self-referential AI loops for iterative development, implementing the Ralph Wiggum technique. Claude works on the same task repeatedly, seeing its previous work, until completion.",
|
|
333
|
+
"author": {
|
|
334
|
+
"name": "Anthropic",
|
|
335
|
+
"email": "support@anthropic.com"
|
|
336
|
+
},
|
|
337
|
+
"source": "./plugins/ralph-loop",
|
|
338
|
+
"category": "development",
|
|
339
|
+
"homepage": "https://github.com/anthropics/claude-plugins-public/tree/main/plugins/ralph-loop"
|
|
340
|
+
},
|
|
341
|
+
{
|
|
342
|
+
"name": "hookify",
|
|
343
|
+
"description": "Easily create custom hooks to prevent unwanted behaviors by analyzing conversation patterns or from explicit instructions. Define rules via simple markdown files.",
|
|
344
|
+
"author": {
|
|
345
|
+
"name": "Anthropic",
|
|
346
|
+
"email": "support@anthropic.com"
|
|
347
|
+
},
|
|
348
|
+
"source": "./plugins/hookify",
|
|
349
|
+
"category": "productivity",
|
|
350
|
+
"homepage": "https://github.com/anthropics/claude-plugins-public/tree/main/plugins/hookify"
|
|
351
|
+
},
|
|
352
|
+
{
|
|
353
|
+
"name": "plugin-dev",
|
|
354
|
+
"description": "Comprehensive toolkit for developing Claude Code plugins. Includes 7 expert skills covering hooks, MCP integration, commands, agents, and best practices. AI-assisted plugin creation and validation.",
|
|
355
|
+
"author": {
|
|
356
|
+
"name": "Anthropic",
|
|
357
|
+
"email": "support@anthropic.com"
|
|
358
|
+
},
|
|
359
|
+
"source": "./plugins/plugin-dev",
|
|
360
|
+
"category": "development",
|
|
361
|
+
"homepage": "https://github.com/anthropics/claude-plugins-public/tree/main/plugins/plugin-dev"
|
|
362
|
+
},
|
|
363
|
+
{
|
|
364
|
+
"name": "greptile",
|
|
365
|
+
"description": "AI-powered codebase search and understanding. Query your repositories using natural language to find relevant code, understand dependencies, and get contextual answers about your codebase architecture.",
|
|
366
|
+
"category": "development",
|
|
367
|
+
"source": "./external_plugins/greptile",
|
|
368
|
+
"homepage": "https://github.com/anthropics/claude-plugins-public/tree/main/external_plugins/greptile"
|
|
369
|
+
},
|
|
370
|
+
{
|
|
371
|
+
"name": "serena",
|
|
372
|
+
"description": "Semantic code analysis MCP server providing intelligent code understanding, refactoring suggestions, and codebase navigation through language server protocol integration.",
|
|
373
|
+
"category": "development",
|
|
374
|
+
"source": "./external_plugins/serena",
|
|
375
|
+
"homepage": "https://github.com/anthropics/claude-plugins-public/tree/main/external_plugins/serena",
|
|
376
|
+
"tags": ["community-managed"]
|
|
377
|
+
},
|
|
378
|
+
{
|
|
379
|
+
"name": "playwright",
|
|
380
|
+
"description": "Browser automation and end-to-end testing MCP server by Microsoft. Enables Claude to interact with web pages, take screenshots, fill forms, click elements, and perform automated browser testing workflows.",
|
|
381
|
+
"category": "testing",
|
|
382
|
+
"source": "./external_plugins/playwright",
|
|
383
|
+
"homepage": "https://github.com/anthropics/claude-plugins-public/tree/main/external_plugins/playwright"
|
|
384
|
+
},
|
|
385
|
+
{
|
|
386
|
+
"name": "github",
|
|
387
|
+
"description": "Official GitHub MCP server for repository management. Create issues, manage pull requests, review code, search repositories, and interact with GitHub's full API directly from Claude Code.",
|
|
388
|
+
"category": "productivity",
|
|
389
|
+
"source": "./external_plugins/github",
|
|
390
|
+
"homepage": "https://github.com/anthropics/claude-plugins-public/tree/main/external_plugins/github"
|
|
391
|
+
},
|
|
392
|
+
{
|
|
393
|
+
"name": "supabase",
|
|
394
|
+
"description": "Supabase MCP integration for database operations, authentication, storage, and real-time subscriptions. Manage your Supabase projects, run SQL queries, and interact with your backend directly.",
|
|
395
|
+
"category": "database",
|
|
396
|
+
"source": "./external_plugins/supabase",
|
|
397
|
+
"homepage": "https://github.com/anthropics/claude-plugins-public/tree/main/external_plugins/supabase"
|
|
398
|
+
},
|
|
399
|
+
{
|
|
400
|
+
"name": "atlassian",
|
|
401
|
+
"description": "Connect to Atlassian products including Jira and Confluence. Search and create issues, access documentation, manage sprints, and integrate your development workflow with Atlassian's collaboration tools.",
|
|
402
|
+
"category": "productivity",
|
|
403
|
+
"source": {
|
|
404
|
+
"source": "url",
|
|
405
|
+
"url": "https://github.com/atlassian/atlassian-mcp-server.git"
|
|
406
|
+
},
|
|
407
|
+
"homepage": "https://github.com/atlassian/atlassian-mcp-server"
|
|
408
|
+
},
|
|
409
|
+
{
|
|
410
|
+
"name": "laravel-boost",
|
|
411
|
+
"description": "Laravel development toolkit MCP server. Provides intelligent assistance for Laravel applications including Artisan commands, Eloquent queries, routing, migrations, and framework-specific code generation.",
|
|
412
|
+
"category": "development",
|
|
413
|
+
"source": "./external_plugins/laravel-boost",
|
|
414
|
+
"homepage": "https://github.com/anthropics/claude-plugins-public/tree/main/external_plugins/laravel-boost"
|
|
415
|
+
},
|
|
416
|
+
{
|
|
417
|
+
"name": "figma",
|
|
418
|
+
"description": "Figma design platform integration. Access design files, extract component information, read design tokens, and translate designs into code. Bridge the gap between design and development workflows.",
|
|
419
|
+
"category": "design",
|
|
420
|
+
"source": {
|
|
421
|
+
"source": "url",
|
|
422
|
+
"url": "https://github.com/figma/mcp-server-guide.git"
|
|
423
|
+
},
|
|
424
|
+
"homepage": "https://github.com/figma/mcp-server-guide"
|
|
425
|
+
},
|
|
426
|
+
{
|
|
427
|
+
"name": "asana",
|
|
428
|
+
"description": "Asana project management integration. Create and manage tasks, search projects, update assignments, track progress, and integrate your development workflow with Asana's work management platform.",
|
|
429
|
+
"category": "productivity",
|
|
430
|
+
"source": "./external_plugins/asana",
|
|
431
|
+
"homepage": "https://github.com/anthropics/claude-plugins-public/tree/main/external_plugins/asana"
|
|
432
|
+
},
|
|
433
|
+
{
|
|
434
|
+
"name": "linear",
|
|
435
|
+
"description": "Linear issue tracking integration. Create issues, manage projects, update statuses, search across workspaces, and streamline your software development workflow with Linear's modern issue tracker.",
|
|
436
|
+
"category": "productivity",
|
|
437
|
+
"source": "./external_plugins/linear",
|
|
438
|
+
"homepage": "https://github.com/anthropics/claude-plugins-public/tree/main/external_plugins/linear"
|
|
439
|
+
},
|
|
440
|
+
{
|
|
441
|
+
"name": "Notion",
|
|
442
|
+
"description": "Notion workspace integration. Search pages, create and update documents, manage databases, and access your team's knowledge base directly from Claude Code for seamless documentation workflows.",
|
|
443
|
+
"category": "productivity",
|
|
444
|
+
"source": {
|
|
445
|
+
"source": "url",
|
|
446
|
+
"url": "https://github.com/makenotion/claude-code-notion-plugin.git"
|
|
447
|
+
},
|
|
448
|
+
"homepage": "https://github.com/makenotion/claude-code-notion-plugin"
|
|
449
|
+
},
|
|
450
|
+
{
|
|
451
|
+
"name": "gitlab",
|
|
452
|
+
"description": "GitLab DevOps platform integration. Manage repositories, merge requests, CI/CD pipelines, issues, and wikis. Full access to GitLab's comprehensive DevOps lifecycle tools.",
|
|
453
|
+
"category": "productivity",
|
|
454
|
+
"source": "./external_plugins/gitlab",
|
|
455
|
+
"homepage": "https://github.com/anthropics/claude-plugins-public/tree/main/external_plugins/gitlab"
|
|
456
|
+
},
|
|
457
|
+
{
|
|
458
|
+
"name": "sentry",
|
|
459
|
+
"description": "Sentry error monitoring integration. Access error reports, analyze stack traces, search issues by fingerprint, and debug production errors directly from your development environment.",
|
|
460
|
+
"category": "monitoring",
|
|
461
|
+
"source": {
|
|
462
|
+
"source": "url",
|
|
463
|
+
"url": "https://github.com/getsentry/sentry-for-claude.git"
|
|
464
|
+
},
|
|
465
|
+
"homepage": "https://github.com/getsentry/sentry-for-claude/tree/main"
|
|
466
|
+
},
|
|
467
|
+
{
|
|
468
|
+
"name": "slack",
|
|
469
|
+
"description": "Slack workspace integration. Search messages, access channels, read threads, and stay connected with your team's communications while coding. Find relevant discussions and context quickly.",
|
|
470
|
+
"category": "productivity",
|
|
471
|
+
"source": "./external_plugins/slack",
|
|
472
|
+
"homepage": "https://github.com/anthropics/claude-plugins-public/tree/main/external_plugins/slack"
|
|
473
|
+
},
|
|
474
|
+
{
|
|
475
|
+
"name": "vercel",
|
|
476
|
+
"description": "Vercel deployment platform integration. Manage deployments, check build status, access logs, configure domains, and control your frontend infrastructure directly from Claude Code.",
|
|
477
|
+
"category": "deployment",
|
|
478
|
+
"source": {
|
|
479
|
+
"source": "url",
|
|
480
|
+
"url": "https://github.com/vercel/vercel-deploy-claude-code-plugin.git"
|
|
481
|
+
},
|
|
482
|
+
"homepage": "https://github.com/vercel/vercel-deploy-claude-code-plugin"
|
|
483
|
+
},
|
|
484
|
+
{
|
|
485
|
+
"name": "stripe",
|
|
486
|
+
"description": "Stripe development plugin for Claude",
|
|
487
|
+
"category": "development",
|
|
488
|
+
"source": "./external_plugins/stripe",
|
|
489
|
+
"homepage": "https://github.com/stripe/ai/tree/main/providers/claude/plugin"
|
|
490
|
+
},
|
|
491
|
+
{
|
|
492
|
+
"name": "firebase",
|
|
493
|
+
"description": "Google Firebase MCP integration. Manage Firestore databases, authentication, cloud functions, hosting, and storage. Build and manage your Firebase backend directly from your development workflow.",
|
|
494
|
+
"category": "database",
|
|
495
|
+
"source": "./external_plugins/firebase",
|
|
496
|
+
"homepage": "https://github.com/anthropics/claude-plugins-public/tree/main/external_plugins/firebase"
|
|
497
|
+
},
|
|
498
|
+
{
|
|
499
|
+
"name": "context7",
|
|
500
|
+
"description": "Upstash Context7 MCP server for up-to-date documentation lookup. Pull version-specific documentation and code examples directly from source repositories into your LLM context.",
|
|
501
|
+
"category": "development",
|
|
502
|
+
"source": "./external_plugins/context7",
|
|
503
|
+
"homepage": "https://github.com/anthropics/claude-plugins-public/tree/main/external_plugins/context7",
|
|
504
|
+
"tags": ["community-managed"]
|
|
505
|
+
},
|
|
506
|
+
{
|
|
507
|
+
"name": "pinecone",
|
|
508
|
+
"description": "Pinecone vector database integration. Streamline your Pinecone development with powerful tools for managing vector indexes, querying data, and rapid prototyping. Use slash commands like /quickstart to generate AGENTS.md files and initialize Python projects and /query to quickly explore indexes. Access the Pinecone MCP server for creating, describing, upserting and querying indexes with Claude. Perfect for developers building semantic search, RAG applications, recommendation systems, and other vector-based applications with Pinecone.",
|
|
509
|
+
"category": "database",
|
|
510
|
+
"source": {
|
|
511
|
+
"source": "url",
|
|
512
|
+
"url": "https://github.com/pinecone-io/pinecone-claude-code-plugin.git"
|
|
513
|
+
},
|
|
514
|
+
"homepage": "https://github.com/pinecone-io/pinecone-claude-code-plugin"
|
|
515
|
+
}
|
|
516
|
+
]
|
|
517
|
+
}
|
package/postinstall.js
ADDED
|
@@ -0,0 +1,100 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
/**
|
|
3
|
+
* ClaudeAll - Post-install script
|
|
4
|
+
* Automatically installs all Claude configurations after npm install
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
const fs = require('fs');
|
|
8
|
+
const path = require('path');
|
|
9
|
+
const { execSync } = require('child_process');
|
|
10
|
+
|
|
11
|
+
const HOME = process.env.HOME || process.env.USERPROFILE;
|
|
12
|
+
const CLAUDE_DIR = path.join(HOME, '.claude');
|
|
13
|
+
const PKG_DIR = __dirname;
|
|
14
|
+
|
|
15
|
+
console.log('š¤ ClaudeAll - Installing Claude configurations...\n');
|
|
16
|
+
|
|
17
|
+
// Create directories
|
|
18
|
+
const dirs = ['agents', 'skills', 'commands', 'hooks', 'plugins'];
|
|
19
|
+
dirs.forEach(dir => {
|
|
20
|
+
const targetDir = path.join(CLAUDE_DIR, dir);
|
|
21
|
+
if (!fs.existsSync(targetDir)) {
|
|
22
|
+
fs.mkdirSync(targetDir, { recursive: true });
|
|
23
|
+
console.log(`š Created ${dir}/`);
|
|
24
|
+
}
|
|
25
|
+
});
|
|
26
|
+
|
|
27
|
+
// Copy function
|
|
28
|
+
function copyDir(src, dest) {
|
|
29
|
+
if (!fs.existsSync(src)) return 0;
|
|
30
|
+
|
|
31
|
+
const files = fs.readdirSync(src);
|
|
32
|
+
let count = 0;
|
|
33
|
+
|
|
34
|
+
files.forEach(file => {
|
|
35
|
+
const srcPath = path.join(src, file);
|
|
36
|
+
const destPath = path.join(dest, file);
|
|
37
|
+
|
|
38
|
+
if (fs.statSync(srcPath).isDirectory()) {
|
|
39
|
+
if (!fs.existsSync(destPath)) {
|
|
40
|
+
fs.mkdirSync(destPath, { recursive: true });
|
|
41
|
+
}
|
|
42
|
+
count += copyDir(srcPath, destPath);
|
|
43
|
+
} else {
|
|
44
|
+
fs.copyFileSync(srcPath, destPath);
|
|
45
|
+
count++;
|
|
46
|
+
}
|
|
47
|
+
});
|
|
48
|
+
|
|
49
|
+
return count;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
// Copy agents
|
|
53
|
+
const agentCount = copyDir(path.join(PKG_DIR, 'agents'), path.join(CLAUDE_DIR, 'agents'));
|
|
54
|
+
console.log(`š¤ Installed ${agentCount} agents`);
|
|
55
|
+
|
|
56
|
+
// Copy skills
|
|
57
|
+
const skillCount = copyDir(path.join(PKG_DIR, 'skills'), path.join(CLAUDE_DIR, 'skills'));
|
|
58
|
+
console.log(`ā” Installed ${skillCount} skill files`);
|
|
59
|
+
|
|
60
|
+
// Copy commands
|
|
61
|
+
const cmdCount = copyDir(path.join(PKG_DIR, 'commands'), path.join(CLAUDE_DIR, 'commands'));
|
|
62
|
+
console.log(`š Installed ${cmdCount} commands`);
|
|
63
|
+
|
|
64
|
+
// Copy hooks
|
|
65
|
+
const hookCount = copyDir(path.join(PKG_DIR, 'hooks'), path.join(CLAUDE_DIR, 'hooks'));
|
|
66
|
+
console.log(`š Installed ${hookCount} hooks`);
|
|
67
|
+
|
|
68
|
+
// Copy plugins
|
|
69
|
+
if (fs.existsSync(path.join(PKG_DIR, 'plugins'))) {
|
|
70
|
+
copyDir(path.join(PKG_DIR, 'plugins'), path.join(CLAUDE_DIR, 'plugins'));
|
|
71
|
+
console.log(`š Installed plugins config`);
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
// Copy MCP config
|
|
75
|
+
const mcpSrc = path.join(PKG_DIR, 'mcp.json');
|
|
76
|
+
const mcpDest = path.join(HOME, '.mcp.json');
|
|
77
|
+
if (fs.existsSync(mcpSrc)) {
|
|
78
|
+
fs.copyFileSync(mcpSrc, mcpDest);
|
|
79
|
+
fs.chmodSync(mcpDest, 0o600);
|
|
80
|
+
console.log(`š§ Installed MCP config (6 servers)`);
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
// Create settings.local.json
|
|
84
|
+
const settingsPath = path.join(CLAUDE_DIR, 'settings.local.json');
|
|
85
|
+
const settings = {
|
|
86
|
+
permissions: {
|
|
87
|
+
allow: [
|
|
88
|
+
"Bash(*)", "Read(*)", "Write(*)", "Edit(*)", "Glob(*)", "Grep(*)",
|
|
89
|
+
"WebFetch(*)", "WebSearch(*)", "TodoWrite(*)", "NotebookEdit(*)", "mcp__*"
|
|
90
|
+
],
|
|
91
|
+
deny: []
|
|
92
|
+
},
|
|
93
|
+
agent: "proactive-mode"
|
|
94
|
+
};
|
|
95
|
+
fs.writeFileSync(settingsPath, JSON.stringify(settings, null, 2));
|
|
96
|
+
console.log(`āļø Configured settings (bypass permissions + proactive-mode agent)`);
|
|
97
|
+
|
|
98
|
+
console.log('\nā
Installation complete!');
|
|
99
|
+
console.log('\nš Restart Claude to apply: exit && claude');
|
|
100
|
+
console.log('š Check MCP status: /mcp\n');
|