compound-agent 2.6.0 → 2.6.1

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +14 -0
  2. package/package.json +7 -7
package/CHANGELOG.md CHANGED
@@ -9,6 +9,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
9
9
 
10
10
  ## [Unreleased]
11
11
 
12
+ ## [2.6.1] - 2026-04-03
13
+
14
+ ### Added
15
+
16
+ - **Architect phase state support**: Phase system now recognizes `architect` as phase index 6. `ca phase-check init <id> --phase architect` initializes architect-specific state, enabling phase guard and read tracker during architect sessions.
17
+ - **Loop script stale state cleanup**: Generated infinity loop scripts now run `ca phase-check clean` before each epic, preventing leftover architect or previous-epic state from blocking cook-it initialization.
18
+
19
+ ### Fixed
20
+
21
+ - **Architect Phase 5 skipping loop-launcher skill**: Replaced inline "Quick summary" in architect SKILL.md Phase 5 with mandatory delegation to `/compound:launch-loop` command, which enforces reading loop-launcher/SKILL.md before generating scripts.
22
+ - **Stale TypeScript binary detection**: Loop-launcher pre-flight now verifies `ca loop --help` shows Cobra output and `ca polish --help` succeeds, catching stale TypeScript CLI binaries before they cause model validation or missing command errors.
23
+ - **Phase status display**: `ca phase-check status` no longer hardcodes `/5` denominator, correctly displaying architect phase index.
24
+ - **Phase guard message**: Warning no longer hardcodes `phase N/5` format, now shows phase name and index.
25
+
12
26
  ## [2.6.0] - 2026-04-01
13
27
 
14
28
  ### Added
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "compound-agent",
3
- "version": "2.6.0",
3
+ "version": "2.6.1",
4
4
  "type": "module",
5
5
  "description": "Learning system for Claude Code — avoids repeating mistakes across sessions",
6
6
  "bin": {
@@ -51,12 +51,12 @@
51
51
  "knowledge-management"
52
52
  ],
53
53
  "optionalDependencies": {
54
- "@syottos/darwin-arm64": "2.6.0",
55
- "@syottos/darwin-x64": "2.6.0",
56
- "@syottos/linux-arm64": "2.6.0",
57
- "@syottos/linux-x64": "2.6.0",
58
- "@syottos/win32-x64": "2.6.0",
59
- "@syottos/win32-arm64": "2.6.0"
54
+ "@syottos/darwin-arm64": "2.6.1",
55
+ "@syottos/darwin-x64": "2.6.1",
56
+ "@syottos/linux-arm64": "2.6.1",
57
+ "@syottos/linux-x64": "2.6.1",
58
+ "@syottos/win32-x64": "2.6.1",
59
+ "@syottos/win32-arm64": "2.6.1"
60
60
  },
61
61
  "author": "Nathan Delacrétaz",
62
62
  "license": "MIT",