@qazuor/claude-code-config 0.1.0 → 0.2.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 +70 -16
- package/dist/bin.cjs +1434 -635
- package/dist/bin.cjs.map +1 -1
- package/dist/bin.js +1413 -614
- package/dist/bin.js.map +1 -1
- package/dist/index.cjs +195 -425
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +6 -2
- package/dist/index.d.ts +6 -2
- package/dist/index.js +195 -425
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/templates/CLAUDE.md.template +108 -0
package/README.md
CHANGED
|
@@ -64,7 +64,7 @@ A comprehensive CLI tool to install and manage Claude Code configurations in you
|
|
|
64
64
|
| **Skills** | 25 | Reusable capabilities and knowledge |
|
|
65
65
|
| **Commands** | 23 | Slash commands for workflows |
|
|
66
66
|
| **Docs** | 18 | Reference documentation and guides |
|
|
67
|
-
| **MCP Servers** |
|
|
67
|
+
| **MCP Servers** | 27 | External tool integrations |
|
|
68
68
|
| **Bundles** | 23 | Pre-grouped module sets |
|
|
69
69
|
|
|
70
70
|
### Smart Defaults
|
|
@@ -290,7 +290,7 @@ qazuor-claude-config list [options] [type]
|
|
|
290
290
|
| `commands` | List all 23 available commands |
|
|
291
291
|
| `docs` | List all 18 documentation modules |
|
|
292
292
|
| `bundles` | List all 23 module bundles |
|
|
293
|
-
| `mcp` | List all
|
|
293
|
+
| `mcp` | List all 27 MCP servers |
|
|
294
294
|
| *(none)* | List summary of all modules |
|
|
295
295
|
|
|
296
296
|
#### Options
|
|
@@ -684,19 +684,73 @@ Defaults are stored in `~/.claude/defaults.json`.
|
|
|
684
684
|
|
|
685
685
|
## MCP Servers
|
|
686
686
|
|
|
687
|
-
Model Context Protocol servers extend Claude's capabilities.
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
|
|
|
693
|
-
|
|
694
|
-
| `
|
|
695
|
-
| `
|
|
696
|
-
| `
|
|
697
|
-
|
|
698
|
-
|
|
699
|
-
|
|
|
687
|
+
Model Context Protocol servers extend Claude's capabilities. All 27 servers are verified npm packages.
|
|
688
|
+
|
|
689
|
+
### By Category
|
|
690
|
+
|
|
691
|
+
#### Documentation & Search
|
|
692
|
+
| ID | Name | Requires Config |
|
|
693
|
+
|----|------|-----------------|
|
|
694
|
+
| `context7` | Context7 | No |
|
|
695
|
+
| `brave-search` | Brave Search | Yes (`BRAVE_API_KEY`) |
|
|
696
|
+
| `perplexity` | Perplexity | Yes (`PERPLEXITY_API_KEY`) |
|
|
697
|
+
|
|
698
|
+
#### Database & Cache
|
|
699
|
+
| ID | Name | Requires Config |
|
|
700
|
+
|----|------|-----------------|
|
|
701
|
+
| `postgres` | PostgreSQL | Yes (`DATABASE_URL`) |
|
|
702
|
+
| `neon` | Neon | Yes (`NEON_API_KEY`) |
|
|
703
|
+
| `mysql` | MySQL | Yes (`MYSQL_URL`) |
|
|
704
|
+
| `redis` | Redis | Yes (`REDIS_URL`) |
|
|
705
|
+
|
|
706
|
+
#### Version Control
|
|
707
|
+
| ID | Name | Requires Config |
|
|
708
|
+
|----|------|-----------------|
|
|
709
|
+
| `github` | GitHub | Yes (`GITHUB_TOKEN`) |
|
|
710
|
+
| `gitlab` | GitLab | Yes (`GITLAB_TOKEN`) |
|
|
711
|
+
| `git` | Git | No |
|
|
712
|
+
|
|
713
|
+
#### Deployment & Infrastructure
|
|
714
|
+
| ID | Name | Requires Config |
|
|
715
|
+
|----|------|-----------------|
|
|
716
|
+
| `vercel` | Vercel | Yes (`VERCEL_TOKEN`) |
|
|
717
|
+
| `cloudflare` | Cloudflare | Yes (`CLOUDFLARE_TOKEN`) |
|
|
718
|
+
| `docker` | Docker | No |
|
|
719
|
+
| `aws-kb-retrieval` | AWS KB | Yes (`AWS_ACCESS_KEY_ID`) |
|
|
720
|
+
|
|
721
|
+
#### Testing & Debugging
|
|
722
|
+
| ID | Name | Requires Config |
|
|
723
|
+
|----|------|-----------------|
|
|
724
|
+
| `playwright` | Playwright | No |
|
|
725
|
+
| `chrome-devtools` | Chrome DevTools | No |
|
|
726
|
+
|
|
727
|
+
#### Communication & Project Management
|
|
728
|
+
| ID | Name | Requires Config |
|
|
729
|
+
|----|------|-----------------|
|
|
730
|
+
| `slack` | Slack | Yes (`SLACK_TOKEN`) |
|
|
731
|
+
| `linear` | Linear | Yes (`LINEAR_API_KEY`) |
|
|
732
|
+
| `notion` | Notion | Yes (`NOTION_TOKEN`) |
|
|
733
|
+
|
|
734
|
+
#### Payments
|
|
735
|
+
| ID | Name | Requires Config |
|
|
736
|
+
|----|------|-----------------|
|
|
737
|
+
| `stripe` | Stripe | Yes (`STRIPE_API_KEY`) |
|
|
738
|
+
| `mercadopago` | Mercado Pago | Yes (`MP_ACCESS_TOKEN`) |
|
|
739
|
+
|
|
740
|
+
#### Design & UI
|
|
741
|
+
| ID | Name | Requires Config |
|
|
742
|
+
|----|------|-----------------|
|
|
743
|
+
| `figma` | Figma | Yes (`FIGMA_TOKEN`) |
|
|
744
|
+
| `shadcn` | Shadcn UI | No |
|
|
745
|
+
| `magic-ui` | Magic UI | No |
|
|
746
|
+
|
|
747
|
+
#### Other
|
|
748
|
+
| ID | Name | Requires Config |
|
|
749
|
+
|----|------|-----------------|
|
|
750
|
+
| `sentry` | Sentry | Yes (`SENTRY_AUTH_TOKEN`) |
|
|
751
|
+
| `obsidian` | Obsidian | No |
|
|
752
|
+
| `n8n` | n8n | Yes (`N8N_API_KEY`) |
|
|
753
|
+
| `sequential-thinking` | Sequential Thinking | No |
|
|
700
754
|
|
|
701
755
|
### Configuration Levels
|
|
702
756
|
|
|
@@ -708,7 +762,7 @@ Model Context Protocol servers extend Claude's capabilities.
|
|
|
708
762
|
"mcpServers": {
|
|
709
763
|
"context7": {
|
|
710
764
|
"command": "npx",
|
|
711
|
-
"args": ["-y", "@anthropic/
|
|
765
|
+
"args": ["-y", "@anthropic/claude-code-mcp-context7"]
|
|
712
766
|
},
|
|
713
767
|
"github": {
|
|
714
768
|
"command": "npx",
|