compound-agent 2.12.0 → 2.12.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.12.1] - 2026-06-15
13
+
14
+ Patch release addressing two issues found by an external codex review of 2.12.0.
15
+
16
+ ### Fixed
17
+ - The agy loop reviewer no longer passes the implementer's `REVIEW_MODEL` to
18
+ `agy --model`. Under a non-agy implementer that value is a claude/codex model
19
+ name agy cannot serve, so the agy reviewer now runs on agy's own configured
20
+ default, symmetric with the codex reviewer.
21
+ - `ca setup --harness agy` now migrates repos that still carry the old antigravity
22
+ groundwork section in AGENTS.md: it replaces the managed marker block when the
23
+ template changed instead of skipping on the header match and leaving stale
24
+ "groundwork only" text.
25
+
12
26
  ## [2.12.0] - 2026-06-14
13
27
 
14
28
  Replaces the standalone Google gemini CLI with the Antigravity CLI (`agy`) as the
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "compound-agent",
3
- "version": "2.12.0",
3
+ "version": "2.12.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.12.0",
55
- "@syottos/darwin-x64": "2.12.0",
56
- "@syottos/linux-arm64": "2.12.0",
57
- "@syottos/linux-x64": "2.12.0",
58
- "@syottos/win32-x64": "2.12.0",
59
- "@syottos/win32-arm64": "2.12.0"
54
+ "@syottos/darwin-arm64": "2.12.1",
55
+ "@syottos/darwin-x64": "2.12.1",
56
+ "@syottos/linux-arm64": "2.12.1",
57
+ "@syottos/linux-x64": "2.12.1",
58
+ "@syottos/win32-x64": "2.12.1",
59
+ "@syottos/win32-arm64": "2.12.1"
60
60
  },
61
61
  "author": "Nathan Delacrétaz",
62
62
  "license": "MIT",