coder-config 0.42.15 → 0.42.16

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.42.15';
5
+ const VERSION = '0.42.16';
6
6
 
7
7
  // Tool-specific path configurations
8
8
  const TOOL_PATHS = {
@@ -1136,8 +1136,8 @@ coder_workstream_cd() {
1136
1136
  ${isZsh ? 'read "choice?Choose [0-$count]: "' : 'read -p "Choose [0-$count]: " choice'}
1137
1137
  if [ "$choice" -gt 0 ] 2>/dev/null; then
1138
1138
  local id name
1139
- id=$(echo "$result" | grep -o '"id":"[^"]*"' | sed -n "${choice}p" | cut -d'"' -f4)
1140
- name=$(echo "$result" | grep -o '"name":"[^"]*"' | sed -n "${choice}p" | cut -d'"' -f4)
1139
+ id=$(echo "$result" | grep -o '"id":"[^"]*"' | sed -n "\${choice}p" | cut -d'"' -f4)
1140
+ name=$(echo "$result" | grep -o '"name":"[^"]*"' | sed -n "\${choice}p" | cut -d'"' -f4)
1141
1141
  if [ -n "$id" ]; then
1142
1142
  export CODER_WORKSTREAM="$id"
1143
1143
  echo "📂 Workstream: $name"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "coder-config",
3
- "version": "0.42.15",
3
+ "version": "0.42.16",
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",