@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.
Files changed (61) hide show
  1. package/README.md +33 -38
  2. package/package.json +1 -1
  3. package/shared/mcp-registry.json +7 -0
  4. package/ui/dist/assets/{index-d_0Asd-K.js → index-CoHPGvdP.js} +157 -236
  5. package/ui/dist/assets/index-T-nRBccZ.css +32 -0
  6. package/ui/dist/index.html +2 -2
  7. package/ui/server.cjs +0 -26
  8. package/templates/composites/fastapi-react-js/rules/backend-python.md +0 -54
  9. package/templates/composites/fastapi-react-js/rules/frontend-react.md +0 -69
  10. package/templates/composites/fastapi-react-js/rules/monorepo.md +0 -77
  11. package/templates/composites/fastapi-react-js/template.json +0 -7
  12. package/templates/composites/fastapi-react-ts/rules/backend-python.md +0 -54
  13. package/templates/composites/fastapi-react-ts/rules/frontend-react.md +0 -64
  14. package/templates/composites/fastapi-react-ts/rules/monorepo.md +0 -82
  15. package/templates/composites/fastapi-react-ts/template.json +0 -7
  16. package/templates/frameworks/fastapi/rules/dependencies.md +0 -89
  17. package/templates/frameworks/fastapi/rules/endpoints.md +0 -86
  18. package/templates/frameworks/fastapi/rules/errors.md +0 -101
  19. package/templates/frameworks/fastapi/rules/structure.md +0 -97
  20. package/templates/frameworks/fastapi/template.json +0 -6
  21. package/templates/frameworks/mcp-python/rules/resources.md +0 -93
  22. package/templates/frameworks/mcp-python/rules/structure.md +0 -74
  23. package/templates/frameworks/mcp-python/rules/tools.md +0 -80
  24. package/templates/frameworks/mcp-python/template.json +0 -6
  25. package/templates/frameworks/python-cli/rules/commands.md +0 -103
  26. package/templates/frameworks/python-cli/rules/output.md +0 -107
  27. package/templates/frameworks/python-cli/rules/structure.md +0 -91
  28. package/templates/frameworks/python-cli/template.json +0 -6
  29. package/templates/frameworks/react-js/rules/components.md +0 -84
  30. package/templates/frameworks/react-js/rules/hooks.md +0 -98
  31. package/templates/frameworks/react-js/template.json +0 -6
  32. package/templates/frameworks/react-ts/rules/components.md +0 -72
  33. package/templates/frameworks/react-ts/rules/hooks.md +0 -87
  34. package/templates/frameworks/react-ts/rules/state.md +0 -93
  35. package/templates/frameworks/react-ts/template.json +0 -6
  36. package/templates/languages/javascript/rules/patterns.md +0 -126
  37. package/templates/languages/javascript/rules/style.md +0 -92
  38. package/templates/languages/javascript/template.json +0 -6
  39. package/templates/languages/python/rules/dependencies.md +0 -77
  40. package/templates/languages/python/rules/patterns.md +0 -95
  41. package/templates/languages/python/rules/style.md +0 -63
  42. package/templates/languages/python/template.json +0 -6
  43. package/templates/languages/typescript/rules/config.md +0 -95
  44. package/templates/languages/typescript/rules/patterns.md +0 -119
  45. package/templates/languages/typescript/rules/style.md +0 -82
  46. package/templates/languages/typescript/template.json +0 -6
  47. package/templates/universal/commands/commit.md +0 -53
  48. package/templates/universal/commands/debug.md +0 -53
  49. package/templates/universal/commands/document.md +0 -54
  50. package/templates/universal/commands/review.md +0 -45
  51. package/templates/universal/commands/security-review.md +0 -52
  52. package/templates/universal/commands/test.md +0 -46
  53. package/templates/universal/rules/api-design.md +0 -38
  54. package/templates/universal/rules/code-quality.md +0 -40
  55. package/templates/universal/rules/documentation.md +0 -38
  56. package/templates/universal/rules/error-handling.md +0 -37
  57. package/templates/universal/rules/git-workflow.md +0 -39
  58. package/templates/universal/rules/security.md +0 -39
  59. package/templates/universal/rules/testing.md +0 -38
  60. package/templates/universal/template.json +0 -6
  61. 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 with a template
28
- claude-config init --template fastapi
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 [--template <name>] # Initialize project
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 commands.
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 the Web UI:
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
- - Add community marketplaces via "Add Marketplace"
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.33.2",
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",
@@ -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
  }