compound-agent 2.4.0 → 2.4.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.
- package/CHANGELOG.md +6 -0
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -9,6 +9,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
9
9
|
|
|
10
10
|
## [Unreleased]
|
|
11
11
|
|
|
12
|
+
## [2.4.1] - 2026-03-26
|
|
13
|
+
|
|
14
|
+
### Fixed
|
|
15
|
+
|
|
16
|
+
- **Platform binary version mismatch**: `package.json` optionalDependencies pointed `@syottos/*` packages at `2.3.0` while the main package was `2.4.0`. Users installing `compound-agent@2.4.0` got v2.3.0 Go binaries, silently missing `build-great-things` and `qa-engineer` skills, updated `architect` references (advisory fleet, improve loop), and updated `review` skill (QA engineer integration). Added `TestPlatformVersionSync` CI test and documented the version sync requirement in CONTRIBUTING.md and CLAUDE.md to prevent recurrence.
|
|
17
|
+
|
|
12
18
|
## [2.4.0] - 2026-03-26
|
|
13
19
|
|
|
14
20
|
### Added
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "compound-agent",
|
|
3
|
-
"version": "2.4.
|
|
3
|
+
"version": "2.4.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Learning system for Claude Code — avoids repeating mistakes across sessions",
|
|
6
6
|
"bin": {
|
|
@@ -50,10 +50,10 @@
|
|
|
50
50
|
"knowledge-management"
|
|
51
51
|
],
|
|
52
52
|
"optionalDependencies": {
|
|
53
|
-
"@syottos/darwin-arm64": "2.
|
|
54
|
-
"@syottos/darwin-x64": "2.
|
|
55
|
-
"@syottos/linux-arm64": "2.
|
|
56
|
-
"@syottos/linux-x64": "2.
|
|
53
|
+
"@syottos/darwin-arm64": "2.4.1",
|
|
54
|
+
"@syottos/darwin-x64": "2.4.1",
|
|
55
|
+
"@syottos/linux-arm64": "2.4.1",
|
|
56
|
+
"@syottos/linux-x64": "2.4.1"
|
|
57
57
|
},
|
|
58
58
|
"author": "Nathan Delacrétaz",
|
|
59
59
|
"license": "MIT",
|