compound-agent 2.0.1 → 2.0.3

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.0.3] - 2026-03-22
11
+
12
+ ### Fixed
13
+
14
+ - **SessionStart/PreCompact hooks broken with npx**: Hooks using `npx ca prime` fail silently in Claude Code hook context (different PATH/environment). `ca setup` now writes the absolute binary path instead. Existing `npx ca` hooks are automatically upgraded to use the direct path on next `ca setup`.
15
+
16
+ ## [2.0.2] - 2026-03-22
17
+
18
+ ### Fixed
19
+
20
+ - **Silent empty-result messages**: `search`, `load-session`, and `check-plan` commands showed no output when no results found (missing trailing newline merged text with shell prompt).
21
+ - **Setup command output**: `setup` now shows the same detailed breakdown as `init` (directories created, template counts by type, AGENTS.md/CLAUDE.md status).
22
+ - **Beads status reporting**: `init` and `setup` now report whether beads CLI is installed and whether the repo is initialized. Shows install instructions if missing.
23
+
10
24
  ## [2.0.1] - 2026-03-22
11
25
 
12
26
  ### Changed
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "compound-agent",
3
- "version": "2.0.1",
3
+ "version": "2.0.3",
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.1",
54
- "@syottos/darwin-x64": "2.0.1",
55
- "@syottos/linux-arm64": "2.0.1",
56
- "@syottos/linux-x64": "2.0.1"
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"
57
57
  },
58
58
  "author": "Nathan Delacrétaz",
59
59
  "license": "MIT",