@regression-io/claude-config 0.33.2 → 0.34.2
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 +33 -38
- package/package.json +1 -1
- package/shared/mcp-registry.json +7 -0
- package/ui/dist/assets/{index-d_0Asd-K.js → index-CoHPGvdP.js} +157 -236
- package/ui/dist/assets/index-T-nRBccZ.css +32 -0
- package/ui/dist/index.html +2 -2
- package/ui/server.cjs +0 -26
- package/templates/composites/fastapi-react-js/rules/backend-python.md +0 -54
- package/templates/composites/fastapi-react-js/rules/frontend-react.md +0 -69
- package/templates/composites/fastapi-react-js/rules/monorepo.md +0 -77
- package/templates/composites/fastapi-react-js/template.json +0 -7
- package/templates/composites/fastapi-react-ts/rules/backend-python.md +0 -54
- package/templates/composites/fastapi-react-ts/rules/frontend-react.md +0 -64
- package/templates/composites/fastapi-react-ts/rules/monorepo.md +0 -82
- package/templates/composites/fastapi-react-ts/template.json +0 -7
- package/templates/frameworks/fastapi/rules/dependencies.md +0 -89
- package/templates/frameworks/fastapi/rules/endpoints.md +0 -86
- package/templates/frameworks/fastapi/rules/errors.md +0 -101
- package/templates/frameworks/fastapi/rules/structure.md +0 -97
- package/templates/frameworks/fastapi/template.json +0 -6
- package/templates/frameworks/mcp-python/rules/resources.md +0 -93
- package/templates/frameworks/mcp-python/rules/structure.md +0 -74
- package/templates/frameworks/mcp-python/rules/tools.md +0 -80
- package/templates/frameworks/mcp-python/template.json +0 -6
- package/templates/frameworks/python-cli/rules/commands.md +0 -103
- package/templates/frameworks/python-cli/rules/output.md +0 -107
- package/templates/frameworks/python-cli/rules/structure.md +0 -91
- package/templates/frameworks/python-cli/template.json +0 -6
- package/templates/frameworks/react-js/rules/components.md +0 -84
- package/templates/frameworks/react-js/rules/hooks.md +0 -98
- package/templates/frameworks/react-js/template.json +0 -6
- package/templates/frameworks/react-ts/rules/components.md +0 -72
- package/templates/frameworks/react-ts/rules/hooks.md +0 -87
- package/templates/frameworks/react-ts/rules/state.md +0 -93
- package/templates/frameworks/react-ts/template.json +0 -6
- package/templates/languages/javascript/rules/patterns.md +0 -126
- package/templates/languages/javascript/rules/style.md +0 -92
- package/templates/languages/javascript/template.json +0 -6
- package/templates/languages/python/rules/dependencies.md +0 -77
- package/templates/languages/python/rules/patterns.md +0 -95
- package/templates/languages/python/rules/style.md +0 -63
- package/templates/languages/python/template.json +0 -6
- package/templates/languages/typescript/rules/config.md +0 -95
- package/templates/languages/typescript/rules/patterns.md +0 -119
- package/templates/languages/typescript/rules/style.md +0 -82
- package/templates/languages/typescript/template.json +0 -6
- package/templates/universal/commands/commit.md +0 -53
- package/templates/universal/commands/debug.md +0 -53
- package/templates/universal/commands/document.md +0 -54
- package/templates/universal/commands/review.md +0 -45
- package/templates/universal/commands/security-review.md +0 -52
- package/templates/universal/commands/test.md +0 -46
- package/templates/universal/rules/api-design.md +0 -38
- package/templates/universal/rules/code-quality.md +0 -40
- package/templates/universal/rules/documentation.md +0 -38
- package/templates/universal/rules/error-handling.md +0 -37
- package/templates/universal/rules/git-workflow.md +0 -39
- package/templates/universal/rules/security.md +0 -39
- package/templates/universal/rules/testing.md +0 -38
- package/templates/universal/template.json +0 -6
- package/ui/dist/assets/index-DrPhoAvm.css +0 -32
package/README.md
CHANGED
|
@@ -24,8 +24,8 @@ The Web UI automatically detects when updates are available and shows a notifica
|
|
|
24
24
|
## Quick Start
|
|
25
25
|
|
|
26
26
|
```bash
|
|
27
|
-
# Initialize a project
|
|
28
|
-
claude-config init
|
|
27
|
+
# Initialize a project
|
|
28
|
+
claude-config init
|
|
29
29
|
|
|
30
30
|
# Add MCPs to your project
|
|
31
31
|
claude-config add postgres github
|
|
@@ -33,6 +33,10 @@ claude-config add postgres github
|
|
|
33
33
|
# Generate .mcp.json for Claude Code
|
|
34
34
|
claude-config apply
|
|
35
35
|
|
|
36
|
+
# Install plugins for framework guidance
|
|
37
|
+
claude plugin marketplace add regression-io/claude-config-plugins
|
|
38
|
+
claude plugin install fastapi-support@claude-config-plugins
|
|
39
|
+
|
|
36
40
|
# Or open the Web UI
|
|
37
41
|
claude-config ui
|
|
38
42
|
```
|
|
@@ -42,12 +46,10 @@ claude-config ui
|
|
|
42
46
|
### Project Commands
|
|
43
47
|
|
|
44
48
|
```bash
|
|
45
|
-
claude-config init
|
|
49
|
+
claude-config init # Initialize project
|
|
46
50
|
claude-config apply # Generate .mcp.json from config
|
|
47
|
-
claude-config apply-template <name> # Add template to existing project
|
|
48
51
|
claude-config show # Show current project config
|
|
49
52
|
claude-config list # List available MCPs (✓ = active)
|
|
50
|
-
claude-config templates # List available templates
|
|
51
53
|
claude-config add <mcp> [mcp...] # Add MCP(s) to project
|
|
52
54
|
claude-config remove <mcp> [mcp...] # Remove MCP(s) from project
|
|
53
55
|
```
|
|
@@ -117,34 +119,6 @@ claude-config ui stop # Stop the daemon
|
|
|
117
119
|
The UI runs from your home directory and persists across terminal sessions.
|
|
118
120
|
Switch between registered projects using the dropdown in the header.
|
|
119
121
|
|
|
120
|
-
## Templates
|
|
121
|
-
|
|
122
|
-
Initialize projects with pre-configured rules and settings:
|
|
123
|
-
|
|
124
|
-
```bash
|
|
125
|
-
# List available templates
|
|
126
|
-
claude-config templates
|
|
127
|
-
|
|
128
|
-
# Frameworks
|
|
129
|
-
claude-config init --template fastapi
|
|
130
|
-
claude-config init --template react-ts
|
|
131
|
-
claude-config init --template python-cli
|
|
132
|
-
claude-config init --template mcp-python
|
|
133
|
-
|
|
134
|
-
# Languages
|
|
135
|
-
claude-config init --template python
|
|
136
|
-
claude-config init --template typescript
|
|
137
|
-
|
|
138
|
-
# Monorepos
|
|
139
|
-
claude-config init --template fastapi-react-ts
|
|
140
|
-
claude-config init --template fastapi-react-js
|
|
141
|
-
```
|
|
142
|
-
|
|
143
|
-
Add templates to existing projects:
|
|
144
|
-
```bash
|
|
145
|
-
claude-config apply-template python
|
|
146
|
-
```
|
|
147
|
-
|
|
148
122
|
## Shell Integration
|
|
149
123
|
|
|
150
124
|
For auto-apply on directory change, add to `~/.zshrc`:
|
|
@@ -347,7 +321,6 @@ When you run `claude-config ui`:
|
|
|
347
321
|
- MCP server management for Gemini
|
|
348
322
|
- Gemini-specific options
|
|
349
323
|
- **Memory System** - Manage preferences, corrections, patterns, decisions
|
|
350
|
-
- **Templates** - Apply rule templates to projects
|
|
351
324
|
- **Preferences** - Configure claude-config tool settings
|
|
352
325
|
- Enabled AI tools (Claude Code, Gemini CLI, Antigravity)
|
|
353
326
|
- **One-Click Updates** - Update badge appears when new version available
|
|
@@ -355,11 +328,32 @@ When you run `claude-config ui`:
|
|
|
355
328
|
|
|
356
329
|
## Plugins
|
|
357
330
|
|
|
358
|
-
Claude Code plugins extend functionality with LSP servers, MCP servers, and
|
|
331
|
+
Claude Code plugins extend functionality with LSP servers, MCP servers, commands, and always-on guidance. **Plugins replace templates** - instead of static files that can become stale, plugins are always active and update automatically.
|
|
332
|
+
|
|
333
|
+
### Why Plugins Over Templates?
|
|
334
|
+
|
|
335
|
+
| Aspect | Plugins |
|
|
336
|
+
|--------|---------|
|
|
337
|
+
| Delivery | Enable plugin once |
|
|
338
|
+
| Updates | Auto-refresh from marketplace |
|
|
339
|
+
| Freshness | Always current |
|
|
340
|
+
| Scope | Global, project, or local |
|
|
341
|
+
| Discovery | Browse marketplaces |
|
|
359
342
|
|
|
360
343
|
### Installing Plugins
|
|
361
344
|
|
|
362
|
-
From
|
|
345
|
+
**From CLI:**
|
|
346
|
+
```bash
|
|
347
|
+
# Add the claude-config plugins marketplace
|
|
348
|
+
claude plugin marketplace add regression-io/claude-config-plugins
|
|
349
|
+
|
|
350
|
+
# Install framework-specific plugins
|
|
351
|
+
claude plugin install fastapi-support@claude-config-plugins
|
|
352
|
+
claude plugin install react-typescript@claude-config-plugins
|
|
353
|
+
claude plugin install python-support@claude-config-plugins
|
|
354
|
+
```
|
|
355
|
+
|
|
356
|
+
**From Web UI:**
|
|
363
357
|
1. Open Project Explorer
|
|
364
358
|
2. Click the **+** menu on any project folder
|
|
365
359
|
3. Select **Install Plugins**
|
|
@@ -368,7 +362,7 @@ From the Web UI:
|
|
|
368
362
|
### Plugin Directory
|
|
369
363
|
|
|
370
364
|
The **Plugins** page shows all available plugins:
|
|
371
|
-
- Filter by category, source type (Anthropic/Community), installed status
|
|
365
|
+
- Filter by marketplace, category, source type (Anthropic/Community), installed status
|
|
372
366
|
- Search by name or description
|
|
373
367
|
- View plugin details (LSP/MCP/Commands included)
|
|
374
368
|
|
|
@@ -376,7 +370,8 @@ The **Plugins** page shows all available plugins:
|
|
|
376
370
|
|
|
377
371
|
Plugins come from marketplaces (Git repositories):
|
|
378
372
|
- **claude-plugins-official** - Anthropic's official plugins
|
|
379
|
-
-
|
|
373
|
+
- **regression-io/claude-config-plugins** - Framework and language plugins
|
|
374
|
+
- Add community marketplaces via "Manage Marketplaces" in the filter dropdown
|
|
380
375
|
|
|
381
376
|
Supported marketplace formats:
|
|
382
377
|
- `owner/repo` — GitHub shorthand
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@regression-io/claude-config",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.34.2",
|
|
4
4
|
"description": "Configuration management UI for Claude Code and Antigravity - manage MCPs, rules, commands, memory, and project folders",
|
|
5
5
|
"author": "regression.io",
|
|
6
6
|
"main": "config-loader.js",
|
package/shared/mcp-registry.json
CHANGED
|
@@ -64,6 +64,13 @@
|
|
|
64
64
|
"AWS_SECRET_ACCESS_KEY": "${AWS_SECRET_ACCESS_KEY}",
|
|
65
65
|
"AWS_REGION": "${AWS_REGION}"
|
|
66
66
|
}
|
|
67
|
+
},
|
|
68
|
+
"DesktopCommanderMCP": {
|
|
69
|
+
"command": "node",
|
|
70
|
+
"args": [
|
|
71
|
+
"/Users/ruze/reg/tools/DesktopCommanderMCP/index.js"
|
|
72
|
+
],
|
|
73
|
+
"description": "MCP server for terminal operations and file editing"
|
|
67
74
|
}
|
|
68
75
|
}
|
|
69
76
|
}
|