compound-agent 2.5.0 → 2.5.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 +7 -0
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -9,6 +9,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
9
9
|
|
|
10
10
|
## [Unreleased]
|
|
11
11
|
|
|
12
|
+
## [2.5.1] - 2026-03-28
|
|
13
|
+
|
|
14
|
+
### Added
|
|
15
|
+
|
|
16
|
+
- **Visual verification in polish audit**: Reviewers now auto-detect UI projects and take Playwright screenshots at 4 viewports (375px, 768px, 1024px, 1440px) as part of their audit, critiquing layout, spacing, contrast, hierarchy, and responsiveness alongside static code analysis. Graceful degradation when Playwright is unavailable or no UI detected (P3/INFO + [NEEDS_QA] fallback).
|
|
17
|
+
- **Visual verification in cook-it review**: Step 10b in the review skill takes Playwright screenshots when the Verification Contract requires `browser_evidence`, `design_craft_check`, or `responsive_check`. References QA Engineer detection logic for framework auto-detection.
|
|
18
|
+
|
|
12
19
|
## [2.5.0] - 2026-03-27
|
|
13
20
|
|
|
14
21
|
### Added
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "compound-agent",
|
|
3
|
-
"version": "2.5.
|
|
3
|
+
"version": "2.5.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.5.
|
|
54
|
-
"@syottos/darwin-x64": "2.5.
|
|
55
|
-
"@syottos/linux-arm64": "2.5.
|
|
56
|
-
"@syottos/linux-x64": "2.5.
|
|
53
|
+
"@syottos/darwin-arm64": "2.5.1",
|
|
54
|
+
"@syottos/darwin-x64": "2.5.1",
|
|
55
|
+
"@syottos/linux-arm64": "2.5.1",
|
|
56
|
+
"@syottos/linux-x64": "2.5.1"
|
|
57
57
|
},
|
|
58
58
|
"author": "Nathan Delacrétaz",
|
|
59
59
|
"license": "MIT",
|