coder-config 0.43.18 → 0.43.20

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/lib/constants.js CHANGED
@@ -2,7 +2,7 @@
2
2
  * Constants and tool path configurations
3
3
  */
4
4
 
5
- const VERSION = '0.43.18';
5
+ const VERSION = '0.43.20';
6
6
 
7
7
  // Tool-specific path configurations
8
8
  const TOOL_PATHS = {
@@ -1176,7 +1176,8 @@ _coder_workstream_cd() {
1176
1176
  fi
1177
1177
  fi
1178
1178
  }
1179
- alias cd='_coder_workstream_cd'
1179
+ # Only alias cd in interactive shells (avoid breaking scripts/Claude Code)
1180
+ [[ $- == *i* ]] && alias cd='_coder_workstream_cd'
1180
1181
  ${endMarker}
1181
1182
  `;
1182
1183
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "coder-config",
3
- "version": "0.43.18",
3
+ "version": "0.43.20",
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",