coder-config 0.44.48 → 0.44.49

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.
@@ -12,8 +12,15 @@ if [[ -z "$LOOP_ID" ]]; then
12
12
  exit 0
13
13
  fi
14
14
 
15
- STATE_FILE="$HOME/.coder-config/loops/$LOOP_ID/state.json"
16
- if [[ ! -f "$STATE_FILE" ]]; then
15
+ # Check both new and legacy paths (manager uses legacy if it has projects.json)
16
+ NEW_STATE_FILE="$HOME/.coder-config/loops/$LOOP_ID/state.json"
17
+ LEGACY_STATE_FILE="$HOME/.claude-config/loops/$LOOP_ID/state.json"
18
+
19
+ if [[ -f "$NEW_STATE_FILE" ]]; then
20
+ STATE_FILE="$NEW_STATE_FILE"
21
+ elif [[ -f "$LEGACY_STATE_FILE" ]]; then
22
+ STATE_FILE="$LEGACY_STATE_FILE"
23
+ else
17
24
  exit 0
18
25
  fi
19
26
 
package/lib/constants.js CHANGED
@@ -2,7 +2,7 @@
2
2
  * Constants and tool path configurations
3
3
  */
4
4
 
5
- const VERSION = '0.44.48';
5
+ const VERSION = '0.44.49';
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.44.48",
3
+ "version": "0.44.49",
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",