compound-agent 2.1.0 → 2.1.2

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 +5 -5
package/CHANGELOG.md CHANGED
@@ -7,6 +7,20 @@ 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.1.2] - 2026-03-23
11
+
12
+ ### Fixed
13
+
14
+ - **Compound-agent prime output was invisible in Claude hooks**: `ca prime` now writes normal command output to stdout instead of stderr, so `SessionStart` and `PreCompact` hook output is visible to Claude Code rather than being dropped by stderr redirection or ignored by hook rendering.
15
+ - **Duplicate Claude hook reconciliation**: `ca setup claude` now detects and repairs duplicated compound-agent hook entries in `.claude/settings.json` instead of treating them as healthy installs. Hook detection and removal now correctly recognize shell-escaped binary commands like `'/path/to/ca' prime`.
16
+
17
+ ## [2.1.1] - 2026-03-23
18
+
19
+ ### Fixed
20
+
21
+ - **Tip strings broken for npm-installed users**: Reverted `npx ca` → `ca` change in user-facing tip strings (correction reminder, planning reminder, failure tip, trust language). npm-installed users only have `npx ca` in PATH — the `ca` binary lives in `node_modules/.bin/`. Hook commands in `settings.json` correctly use absolute binary paths and are unaffected.
22
+ - **CI lint action**: Upgraded `golangci-lint-action` from v6 to v7 (v6 doesn't support golangci-lint v2).
23
+
10
24
  ## [2.1.0] - 2026-03-23
11
25
 
12
26
  ### Added
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "compound-agent",
3
- "version": "2.1.0",
3
+ "version": "2.1.2",
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.0.3",
54
- "@syottos/darwin-x64": "2.0.3",
55
- "@syottos/linux-arm64": "2.0.3",
56
- "@syottos/linux-x64": "2.0.3"
53
+ "@syottos/darwin-arm64": "2.1.2",
54
+ "@syottos/darwin-x64": "2.1.2",
55
+ "@syottos/linux-arm64": "2.1.2",
56
+ "@syottos/linux-x64": "2.1.2"
57
57
  },
58
58
  "author": "Nathan Delacrétaz",
59
59
  "license": "MIT",