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 +1 -1
- package/lib/workstreams.js +2 -2
- package/package.json +1 -1
package/lib/constants.js
CHANGED
package/lib/workstreams.js
CHANGED
|
@@ -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 "
|
|
1140
|
-
name=$(echo "$result" | grep -o '"name":"[^"]*"' | sed -n "
|
|
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.
|
|
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",
|