compound-agent 1.3.0 → 1.3.2

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,42 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
9
9
 
10
10
  ## [Unreleased]
11
11
 
12
+ ## [1.3.2] - 2026-02-21
13
+
14
+ ### Added
15
+
16
+ - **Banner audio**: Pure TypeScript WAV synthesis plays a rising pentatonic melody during the tendril animation. Cross-platform: `afplay` (macOS), `aplay` (Linux), PowerShell (Windows). Silently skips if player unavailable. Zero dependencies.
17
+ - **Test coverage**: 19 new tests for `ca about` command, changelog extraction/escaping, and `--update` doc migration path
18
+
19
+ ### Fixed
20
+
21
+ - **`setup --update` doc migration**: `--update` now installs the 5 split docs before removing legacy `HOW_TO_COMPOUND.md`, preventing empty `docs/compound/`
22
+ - **Fresh checkout type-check**: `src/changelog-data.ts` tracked in git so `tsc --noEmit` passes without a prior build
23
+ - **Trailing status text**: Banner animation no longer leaves "al tendrils..." remnant from previous phase
24
+
25
+ ### Changed
26
+
27
+ - **`ca about` command**: Renamed from `ca version-show` for brevity
28
+ - **Changelog extraction**: Core parsing/escaping logic extracted to `scripts/changelog-utils.ts` (shared between prebuild script and tests)
29
+ - **Narrowed `.gitignore`**: Setup-generated patterns scoped to `compound/` subdirectories to avoid hiding tracked TDD agent definitions
30
+
31
+ ## [1.3.1] - 2026-02-21
32
+
33
+ ### Added
34
+
35
+ - **`ca about` command**: Displays version with terminal animation (tendril growth) and recent changelog entries. Non-TTY environments get plain text output. Changelog is embedded at build time from CHANGELOG.md.
36
+ - **3 new doctor checks**: Beads initialized (`.beads/` dir), beads healthy (`bd doctor`), codebase scope (user-scope detection)
37
+ - **Beads + scope status in init/setup output**: Full beads health display (CLI available, initialized, healthy) and scope status shown after `ca init`, `ca setup`, and `ca setup --update`
38
+ - **Banner on `--update`**: Terminal art animation now plays during `ca setup --update` and `ca init --update` (same TTY/quiet guards as fresh install)
39
+
40
+ ### Changed
41
+
42
+ - **Split documentation**: `HOW_TO_COMPOUND.md` replaced by 5 focused documents in `docs/compound/`: `README.md`, `WORKFLOW.md`, `CLI_REFERENCE.md`, `SKILLS.md`, `INTEGRATION.md`
43
+ - **Test-cleaner Phase 3 strengthened**: Adversarial review phase now mandates iteration loop until both reviewers give unconditional approval. Heading, emphasis, and quality criteria updated.
44
+ - **Update hint on upgrade**: When `ca init` or `ca setup` detects an existing install, displays tip to run with `--update` to regenerate managed files
45
+ - **HOW_TO_COMPOUND.md migration**: `ca setup --update` automatically removes old monolithic `HOW_TO_COMPOUND.md` if it has version frontmatter (generated by compound-agent)
46
+ - **Doctor doc check**: Now checks for `docs/compound/README.md` instead of `HOW_TO_COMPOUND.md`
47
+
12
48
  ## [1.3.0] - 2026-02-21
13
49
 
14
50
  ### Added
package/README.md CHANGED
@@ -210,6 +210,8 @@ Generated scripts detect three markers: `EPIC_COMPLETE` (success), `EPIC_FAILED`
210
210
  | `ca setup claude --status` | Check Claude Code integration health |
211
211
  | `ca setup claude --uninstall` | Remove Claude hooks only |
212
212
  | `ca download-model` | Download the embedding model |
213
+ | `ca about` | Show version, animation, and recent changelog |
214
+ | `ca doctor` | Verify external dependencies and project health |
213
215
 
214
216
  ## Workflow Commands
215
217