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 CHANGED
@@ -397,20 +397,17 @@ Context is automatically restored within 24 hours of being saved.
397
397
  ### Setup
398
398
 
399
399
  ```bash
400
- # Install the Claude Code hooks
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 # Show session status
411
- coder-config session flush # Instructions for saving context
412
- coder-config session clear # Clear saved context
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 + /flush command (recommended)
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
@@ -2,7 +2,7 @@
2
2
  * Constants and tool path configurations
3
3
  */
4
4
 
5
- const VERSION = '0.42.27';
5
+ const VERSION = '0.42.28';
6
6
 
7
7
  // Tool-specific path configurations
8
8
  const TOOL_PATHS = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "coder-config",
3
- "version": "0.42.27",
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",