coder-config 0.42.27 → 0.42.28
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 +6 -9
- package/lib/cli.js +1 -4
- package/lib/constants.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -397,20 +397,17 @@ Context is automatically restored within 24 hours of being saved.
|
|
|
397
397
|
### Setup
|
|
398
398
|
|
|
399
399
|
```bash
|
|
400
|
-
|
|
401
|
-
coder-config session install-hooks
|
|
402
|
-
|
|
403
|
-
# Copy the /flush command to your Claude Code commands
|
|
404
|
-
cp /path/to/coder-config/templates/commands/flush.md ~/.claude/commands/
|
|
400
|
+
coder-config session install
|
|
405
401
|
```
|
|
406
402
|
|
|
403
|
+
This installs the Claude Code hooks and the `/flush` command.
|
|
404
|
+
|
|
407
405
|
### CLI Commands
|
|
408
406
|
|
|
409
407
|
```bash
|
|
410
|
-
coder-config session
|
|
411
|
-
coder-config session
|
|
412
|
-
coder-config session clear
|
|
413
|
-
coder-config session install-hooks # Install Claude Code hooks
|
|
408
|
+
coder-config session # Show session status
|
|
409
|
+
coder-config session install # Install hooks and /flush command
|
|
410
|
+
coder-config session clear # Clear saved context
|
|
414
411
|
```
|
|
415
412
|
|
|
416
413
|
### Storage Location
|
package/lib/cli.js
CHANGED
|
@@ -411,10 +411,7 @@ Workstream Commands:
|
|
|
411
411
|
${loopHelp}
|
|
412
412
|
Session Persistence:
|
|
413
413
|
session Show session status (saved context)
|
|
414
|
-
session install Install hooks
|
|
415
|
-
session install-hooks Install Claude Code hooks only
|
|
416
|
-
session install-command Install /flush command only
|
|
417
|
-
session flush Show instructions for saving context
|
|
414
|
+
session install Install hooks and /flush command
|
|
418
415
|
session clear Clear saved session context
|
|
419
416
|
|
|
420
417
|
Registry Commands:
|
package/lib/constants.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "coder-config",
|
|
3
|
-
"version": "0.42.
|
|
3
|
+
"version": "0.42.28",
|
|
4
4
|
"description": "Configuration manager for AI coding tools - Claude Code, Gemini CLI, Codex CLI, Antigravity. Manage MCPs, rules, permissions, memory, and workstreams.",
|
|
5
5
|
"author": "regression.io",
|
|
6
6
|
"main": "config-loader.js",
|