@regression-io/claude-config 0.37.3 → 0.37.5
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 +12 -3
- package/lib/constants.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -89,14 +89,23 @@ claude-config project remove <name|path> # Remove from registry
|
|
|
89
89
|
claude-config workstream # List all workstreams
|
|
90
90
|
claude-config workstream create "Name" # Create new workstream
|
|
91
91
|
claude-config workstream delete <name> # Delete workstream
|
|
92
|
-
claude-config workstream use <name> # Set active workstream
|
|
92
|
+
claude-config workstream use <name> # Set active workstream (global)
|
|
93
93
|
claude-config workstream active # Show current active workstream
|
|
94
|
-
claude-config workstream
|
|
94
|
+
claude-config workstream deactivate # Show how to deactivate
|
|
95
|
+
claude-config workstream add <ws> <path> # Add project to workstream
|
|
95
96
|
claude-config workstream remove <ws> <path> # Remove project from workstream
|
|
96
|
-
claude-config workstream inject [--silent] # Output
|
|
97
|
+
claude-config workstream inject [--silent] # Output restriction + context (for hooks)
|
|
97
98
|
claude-config workstream detect [path] # Detect workstream for directory
|
|
99
|
+
claude-config workstream install-hook # Install pre-prompt hook for injection
|
|
98
100
|
```
|
|
99
101
|
|
|
102
|
+
**Per-session activation** (for parallel work in different terminals):
|
|
103
|
+
```bash
|
|
104
|
+
export CLAUDE_WORKSTREAM=<name-or-id>
|
|
105
|
+
```
|
|
106
|
+
|
|
107
|
+
When active, Claude receives a restriction telling it to only work within the workstream's directories.
|
|
108
|
+
|
|
100
109
|
### Registry Commands
|
|
101
110
|
|
|
102
111
|
```bash
|
package/lib/constants.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@regression-io/claude-config",
|
|
3
|
-
"version": "0.37.
|
|
3
|
+
"version": "0.37.5",
|
|
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",
|