compound-agent 2.7.0 → 2.7.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 +18 -0
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,24 @@ All notable changes to this project will be documented in this file.
|
|
|
7
7
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
8
8
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
9
9
|
|
|
10
|
+
## [2.7.1] - 2026-04-10
|
|
11
|
+
|
|
12
|
+
### Added
|
|
13
|
+
|
|
14
|
+
- **Surface alignment reviewer**: New agent-role-skill that verifies cross-layer connectivity (frontend↔backend↔database↔API). Checks regenerate-and-diff compliance, architecture test presence, database testing fidelity, schema evolution safety, and auth surface coverage. Spawned for medium and large diffs during review phase.
|
|
15
|
+
- **P16 "Surfaces stay connected"**: New principle in the agentic audit/setup manifesto (Pillar II). Scores projects on cross-layer integration testing maturity (0-2). Updated overall scoring from 30→32.
|
|
16
|
+
- **5 deep research documents** shipped with the library: architecture tests (ArchUnit survey), regenerate-and-diff patterns, database testing patterns, test infrastructure as code, and protobuf schema evolution. Mapped to specific reviewer agents for calibrated reviews.
|
|
17
|
+
- **Research-calibrated review fleet**: Review skill now includes surface-alignment-reviewer in medium+ tier (9 reviewers), with calibration query for surface alignment lessons. Lesson-calibration references updated with all 5 research doc mappings.
|
|
18
|
+
|
|
19
|
+
### Changed
|
|
20
|
+
|
|
21
|
+
- **build-great-things**: Added "System coherence is craft" as third design philosophy foundation. New structural coherence section in mandatory quality checklist (6 items). Added laziness pattern #13 "Disconnected layers".
|
|
22
|
+
- **Existing reviewers enhanced**: drift-detector, test-coverage-reviewer, and architecture-reviewer now reference relevant research documents. test-coverage-reviewer distinguishes integration from unit tests and flags SQLite substitution.
|
|
23
|
+
|
|
24
|
+
### Fixed
|
|
25
|
+
|
|
26
|
+
- **Dependencies**: `modernc.org/sqlite` 1.48.0→1.48.1 (fixes memory leaks and double-free in multi-statement queries), `libc` 0.2.183→0.2.184 (patch bump of transitive Rust dependency).
|
|
27
|
+
|
|
10
28
|
## [2.7.0] - 2026-04-09
|
|
11
29
|
|
|
12
30
|
### Changed
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "compound-agent",
|
|
3
|
-
"version": "2.7.
|
|
3
|
+
"version": "2.7.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.7.
|
|
55
|
-
"@syottos/darwin-x64": "2.7.
|
|
56
|
-
"@syottos/linux-arm64": "2.7.
|
|
57
|
-
"@syottos/linux-x64": "2.7.
|
|
58
|
-
"@syottos/win32-x64": "2.7.
|
|
59
|
-
"@syottos/win32-arm64": "2.7.
|
|
54
|
+
"@syottos/darwin-arm64": "2.7.1",
|
|
55
|
+
"@syottos/darwin-x64": "2.7.1",
|
|
56
|
+
"@syottos/linux-arm64": "2.7.1",
|
|
57
|
+
"@syottos/linux-x64": "2.7.1",
|
|
58
|
+
"@syottos/win32-x64": "2.7.1",
|
|
59
|
+
"@syottos/win32-arm64": "2.7.1"
|
|
60
60
|
},
|
|
61
61
|
"author": "Nathan Delacrétaz",
|
|
62
62
|
"license": "MIT",
|