prizmkit 1.0.9 → 1.0.10

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.
@@ -1,5 +1,5 @@
1
1
  {
2
- "frameworkVersion": "1.0.9",
3
- "bundledAt": "2026-03-11T17:48:07.887Z",
4
- "bundledFrom": "41d8286"
2
+ "frameworkVersion": "1.0.10",
3
+ "bundledAt": "2026-03-11T18:30:18.191Z",
4
+ "bundledFrom": "f3b0952"
5
5
  }
@@ -166,8 +166,18 @@ detect_stream_json_support() {
166
166
  local cli_cmd="$1"
167
167
  USE_STREAM_JSON="false"
168
168
 
169
- # Try to detect support via --help output
170
- if "$cli_cmd" --help 2>&1 | grep -q "stream-json" 2>/dev/null; then
169
+ # CodeBuddy (cbc) always supports stream-json
170
+ if [[ "$cli_cmd" == "cbc" ]]; then
171
+ USE_STREAM_JSON="true"
172
+ return 0
173
+ fi
174
+
175
+ # For other CLIs, try to detect support via --help output
176
+ # Use explicit file descriptor to avoid issues in background processes
177
+ local help_output
178
+ help_output=$("$cli_cmd" --help 2>&1) || true
179
+
180
+ if echo "$help_output" | grep -q "stream-json"; then
171
181
  USE_STREAM_JSON="true"
172
182
  fi
173
183
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "prizmkit",
3
- "version": "1.0.9",
3
+ "version": "1.0.10",
4
4
  "description": "Create a new PrizmKit-powered project with clean initialization — no framework dev files, just what you need.",
5
5
  "type": "module",
6
6
  "bin": {