@regression-io/claude-config 0.35.29 → 0.35.33

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
@@ -1,34 +1,32 @@
1
1
  # Claude Config
2
2
 
3
- Configuration management for **Claude Code** with CLI and optional Web UI.
3
+ Configuration helper for **Claude Code** manage MCPs, rules, permissions, and memory through a visual UI or CLI.
4
4
 
5
- ## Installation
5
+ ## Why?
6
6
 
7
- ```bash
8
- npm install -g @regression-io/claude-config
9
- ```
7
+ Claude Code works great out of the box. This tool helps when you need more control:
10
8
 
11
- Or from GitHub:
12
- ```bash
13
- npm install -g github:regression-io/claude-config
14
- ```
9
+ | | |
10
+ |---|---|
11
+ | **MCP Servers** | Configure without editing JSON files |
12
+ | **Permissions** | Visual editor for allow/deny rules |
13
+ | **Rules & Commands** | Manage project-specific guidelines |
14
+ | **Memory** | Persistent context across sessions |
15
+ | **Multi-Project** | Share configurations via hierarchy |
15
16
 
16
- ## Updating
17
+ ## Installation
17
18
 
18
19
  ```bash
19
- npm update -g @regression-io/claude-config
20
+ npm install -g @regression-io/claude-config
20
21
  ```
21
22
 
22
- The Web UI automatically detects when updates are available and shows a notification in the Preferences page.
23
-
24
23
  ## Quick Start
25
24
 
26
25
  ```bash
27
- # Launch the Web UI (recommended)
28
26
  claude-config ui
29
27
  ```
30
28
 
31
- The Web UI provides a visual interface for managing all your Claude Code configuration.
29
+ Then use Claude Code normally run `claude` in any project directory.
32
30
 
33
31
  ### CLI Alternative
34
32
 
@@ -187,19 +185,25 @@ Environment variables use `${VAR}` syntax and load from `.claude/.env`.
187
185
 
188
186
  ## Memory System
189
187
 
190
- Persistent memory for Claude Code sessions:
188
+ Persistent memory for Claude Code sessions.
189
+
190
+ **Global** (`~/.claude/memory/`)
191
+
192
+ | File | Purpose |
193
+ |------|---------|
194
+ | `preferences.md` | User preferences and style |
195
+ | `corrections.md` | Mistakes to avoid |
196
+ | `facts.md` | Environment facts |
191
197
 
192
- **Global Memory** (`~/.claude/memory/`):
193
- - `preferences.md` - User preferences (tools, style)
194
- - `corrections.md` - Mistakes to avoid
195
- - `facts.md` - Environment facts
198
+ **Project** (`<project>/.claude/memory/`)
196
199
 
197
- **Project Memory** (`<project>/.claude/memory/`):
198
- - `context.md` - Project overview
199
- - `patterns.md` - Code patterns
200
- - `decisions.md` - Architecture decisions
201
- - `issues.md` - Known issues
202
- - `history.md` - Session history
200
+ | File | Purpose |
201
+ |------|---------|
202
+ | `context.md` | Project overview |
203
+ | `patterns.md` | Code patterns |
204
+ | `decisions.md` | Architecture decisions |
205
+ | `issues.md` | Known issues |
206
+ | `history.md` | Session history |
203
207
 
204
208
  Manage via Web UI or edit files directly.
205
209
 
@@ -299,35 +303,17 @@ In Workstreams view, adjust Smart Sync settings:
299
303
 
300
304
  ## Web UI Features
301
305
 
302
- When you run `claude-config ui`:
303
-
304
- - **Project Switcher** - Switch between registered projects from header dropdown
305
- - **Workstream Switcher** - Quick-switch between workstreams from header
306
- - **Project Explorer** - Browse/edit all .claude folders in hierarchy
307
- - **Workstreams** - Create and manage context sets for multi-project workflows
308
- - Activity tracking with co-activity pattern detection
309
- - AI-powered workstream suggestions
310
- - Smart Sync for intelligent workstream switching
311
- - Manual project add/remove in create/edit dialogs
312
- - **Sub-Projects** - Auto-detects git repos, plus manually add/hide external folders
313
- - **Plugins** - Browse and install Claude Code plugins with scope control
314
- - Plugin directory with search and filtering
315
- - Marketplace management
316
- - Scope selection (project/global/local)
317
- - **MCP Registry** - Search GitHub/npm, add/edit/delete MCPs
318
- - **Claude Code Settings** - Visual editor for `~/.claude/settings.json`
319
- - Permissions (allow/ask/deny rules)
320
- - Model selection
321
- - Behavior settings
322
- - Hooks and advanced options
323
- - **Gemini CLI Settings** - Visual editor for `~/.gemini/settings.json`
324
- - MCP server management for Gemini
325
- - Gemini-specific options
326
- - **Memory System** - Manage preferences, corrections, patterns, decisions
327
- - **Preferences** - Configure claude-config tool settings
328
- - Enabled AI tools (Claude Code, Gemini CLI, Antigravity)
329
- - **One-Click Updates** - Update badge appears when new version available
330
- - **Dark Mode** - Theme toggle (light/dark/system)
306
+ | Feature | Description |
307
+ |---------|-------------|
308
+ | **Project Explorer** | Browse and edit `.claude/` folders across your project hierarchy |
309
+ | **Claude Code Settings** | Visual editor for permissions, model, hooks, and behavior |
310
+ | **MCP Registry** | Search GitHub/npm, add and configure MCP servers |
311
+ | **Plugins** | Browse marketplaces, install plugins with scope control |
312
+ | **Memory** | Manage preferences, corrections, patterns, and decisions |
313
+ | **Workstreams** | Group related projects with shared context rules |
314
+ | **Gemini CLI** | Configure Gemini alongside Claude Code |
315
+
316
+ Additional features: project/workstream switchers in header, sub-project detection, dark mode, auto-updates.
331
317
 
332
318
  ## Plugins
333
319
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@regression-io/claude-config",
3
- "version": "0.35.29",
3
+ "version": "0.35.33",
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",