compound-agent 1.6.4 → 1.6.5

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/CHANGELOG.md CHANGED
@@ -9,6 +9,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
9
9
 
10
10
  ## [Unreleased]
11
11
 
12
+ ## [1.6.5] - 2026-03-07
13
+
14
+ ### Fixed
15
+
16
+ - **Loop script bash 3.2 syntax error**: macOS ships bash 3.2 which misparses `case` pattern `)` inside `$(...)` as closing the subshell. Added `(` prefix to case patterns for POSIX compliance. Added `/bin/bash -n` regression test.
17
+ - **Loop script `--verbose` flag**: `--output-format=stream-json` with `-p` requires `--verbose`, not `--include-partial-messages`.
18
+
12
19
  ## [1.6.4] - 2026-03-07
13
20
 
14
21
  ### Fixed
@@ -896,7 +903,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
896
903
  - Vitest test suite
897
904
  - tsup build configuration
898
905
 
899
- [Unreleased]: https://github.com/Nathandela/compound-agent/compare/v1.6.4...HEAD
906
+ [Unreleased]: https://github.com/Nathandela/compound-agent/compare/v1.6.5...HEAD
907
+ [1.6.5]: https://github.com/Nathandela/compound-agent/compare/v1.6.4...v1.6.5
900
908
  [1.6.4]: https://github.com/Nathandela/compound-agent/compare/v1.6.3...v1.6.4
901
909
  [1.6.3]: https://github.com/Nathandela/compound-agent/compare/v1.6.2...v1.6.3
902
910
  [1.6.2]: https://github.com/Nathandela/compound-agent/compare/v1.6.1...v1.6.2
package/dist/cli.js CHANGED
@@ -10467,7 +10467,14 @@ function registerVerifyGatesCommand(program) {
10467
10467
  }
10468
10468
 
10469
10469
  // src/changelog-data.ts
10470
- var CHANGELOG_RECENT = `## [1.6.4] - 2026-03-07
10470
+ var CHANGELOG_RECENT = `## [1.6.5] - 2026-03-07
10471
+
10472
+ ### Fixed
10473
+
10474
+ - **Loop script bash 3.2 syntax error**: macOS ships bash 3.2 which misparses \`case\` pattern \`)\` inside \`$(...)\` as closing the subshell. Added \`(\` prefix to case patterns for POSIX compliance. Added \`/bin/bash -n\` regression test.
10475
+ - **Loop script \`--verbose\` flag**: \`--output-format=stream-json\` with \`-p\` requires \`--verbose\`, not \`--include-partial-messages\`.
10476
+
10477
+ ## [1.6.4] - 2026-03-07
10471
10478
 
10472
10479
  ### Fixed
10473
10480
 
@@ -10487,13 +10494,7 @@ var CHANGELOG_RECENT = `## [1.6.4] - 2026-03-07
10487
10494
 
10488
10495
  ### Changed
10489
10496
 
10490
- - **Cook-it session banner**: Replaced "Claude the Cooker" chef ASCII art with rscr's detailed front-view brain ASCII art ("Claw'd"). Brain features ANSI-colored augmentation zones: cyan neural interface (\`##\`), bright cyan signal crosslinks (\`::\`), green bio-circuits (\`%\`), magenta data highways (\`######\`), and yellow power nodes (\`@@\`).
10491
-
10492
- ## [1.6.2] - 2026-03-05
10493
-
10494
- ### Fixed
10495
-
10496
- - **Cook-it session banner**: The cook-it skill now instructs Claude to print the "Claude the Cooker" ASCII chef banner at the very start of every cooking session.`;
10497
+ - **Cook-it session banner**: Replaced "Claude the Cooker" chef ASCII art with rscr's detailed front-view brain ASCII art ("Claw'd"). Brain features ANSI-colored augmentation zones: cyan neural interface (\`##\`), bright cyan signal crosslinks (\`::\`), green bio-circuits (\`%\`), magenta data highways (\`######\`), and yellow power nodes (\`@@\`).`;
10497
10498
 
10498
10499
  // src/commands/about.ts
10499
10500
  function registerAboutCommand(program) {
@@ -11360,7 +11361,7 @@ get_next_epic() {
11360
11361
  if [ -n "$EPIC_IDS" ]; then
11361
11362
  # From explicit list, find first still-open epic not yet processed
11362
11363
  for epic_id in $EPIC_IDS; do
11363
- case " $PROCESSED " in *" $epic_id "*) continue ;; esac
11364
+ case " $PROCESSED " in (*" $epic_id "*) continue ;; esac
11364
11365
  local status
11365
11366
  status=$(bd show "$epic_id" --json 2>/dev/null | parse_json '.status' 2>/dev/null || echo "")
11366
11367
  if [ "$status" = "open" ]; then
@@ -11374,7 +11375,7 @@ get_next_epic() {
11374
11375
  local epic_id
11375
11376
  if [ "$HAS_JQ" = true ]; then
11376
11377
  epic_id=$(bd list --type=epic --ready --json --limit=10 2>/dev/null | jq -r '.[].id' 2>/dev/null | while read -r id; do
11377
- case " $PROCESSED " in *" $id "*) continue ;; esac
11378
+ case " $PROCESSED " in (*" $id "*) continue ;; esac
11378
11379
  echo "$id"
11379
11380
  break
11380
11381
  done)
@@ -11531,7 +11532,7 @@ while true; do
11531
11532
  claude --dangerously-skip-permissions \\
11532
11533
  --model "$MODEL" \\
11533
11534
  --output-format stream-json \\
11534
- --include-partial-messages \\
11535
+ --verbose \\
11535
11536
  -p "$PROMPT" \\
11536
11537
  2>"$LOGFILE.stderr" | tee "$TRACEFILE" | extract_text > "$LOGFILE" || true
11537
11538