@regression-io/claude-config 0.23.18 → 0.24.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 CHANGED
@@ -218,18 +218,50 @@ When you run `claude-config ui`:
218
218
 
219
219
  - **Project Switcher** - Switch between registered projects from header dropdown
220
220
  - **File Explorer** - Browse/edit all .claude folders in hierarchy
221
- - **Sub-Projects** - Auto-detects git repos, plus manually add external folders
221
+ - **Sub-Projects** - Auto-detects git repos, plus manually add/hide external folders
222
+ - **Plugins** - Browse and install Claude Code plugins with scope control
222
223
  - **MCP Registry** - Search GitHub/npm, add/edit/delete MCPs
223
224
  - **Claude Code Settings** - Visual editor for `~/.claude/settings.json`
224
225
  - Permissions (allow/ask/deny rules)
225
226
  - Model selection
226
227
  - Behavior settings
227
228
  - Hooks and advanced options
229
+ - **Gemini CLI Settings** - Visual editor for `~/.gemini/settings.json`
228
230
  - **Memory System** - Manage preferences, corrections, patterns, decisions
229
231
  - **Templates** - Apply rule templates to projects
230
232
  - **Preferences** - Configure claude-config tool settings
231
233
  - **One-Click Updates** - Update badge appears when new version available
232
234
 
235
+ ## Plugins
236
+
237
+ Claude Code plugins extend functionality with LSP servers, MCP servers, and commands.
238
+
239
+ ### Installing Plugins
240
+
241
+ From the Web UI:
242
+ 1. Open Project Explorer
243
+ 2. Click the **+** menu on any project folder
244
+ 3. Select **Install Plugins**
245
+ 4. Toggle plugins on/off with scope selection (Project/Global/Local)
246
+
247
+ ### Plugin Directory
248
+
249
+ The **Plugins** page shows all available plugins:
250
+ - Filter by category, source type (Anthropic/Community), installed status
251
+ - Search by name or description
252
+ - View plugin details (LSP/MCP/Commands included)
253
+
254
+ ### Marketplaces
255
+
256
+ Plugins come from marketplaces (Git repositories):
257
+ - **claude-plugins-official** - Anthropic's official plugins
258
+ - Add community marketplaces via "Add Marketplace"
259
+
260
+ Supported marketplace formats:
261
+ - `owner/repo` — GitHub shorthand
262
+ - `https://github.com/owner/repo` — Full URL
263
+ - `/local/path` — Local directory
264
+
233
265
  ## Claude Code Settings
234
266
 
235
267
  The Web UI provides a visual editor for `~/.claude/settings.json`:
package/config-loader.js CHANGED
@@ -19,7 +19,7 @@ const fs = require('fs');
19
19
  const path = require('path');
20
20
  const { execSync } = require('child_process');
21
21
 
22
- const VERSION = '0.23.18';
22
+ const VERSION = '0.24.2';
23
23
 
24
24
  // Tool-specific path configurations
25
25
  const TOOL_PATHS = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@regression-io/claude-config",
3
- "version": "0.23.18",
3
+ "version": "0.24.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",