compound-agent 1.6.2 → 1.6.5

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 CHANGED
@@ -9,6 +9,35 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
9
9
 
10
10
  ## [Unreleased]
11
11
 
12
+ ## [1.6.5] - 2026-03-07
13
+
14
+ ### Fixed
15
+
16
+ - **Loop script bash 3.2 syntax error**: macOS ships bash 3.2 which misparses `case` pattern `)` inside `$(...)` as closing the subshell. Added `(` prefix to case patterns for POSIX compliance. Added `/bin/bash -n` regression test.
17
+ - **Loop script `--verbose` flag**: `--output-format=stream-json` with `-p` requires `--verbose`, not `--include-partial-messages`.
18
+
19
+ ## [1.6.4] - 2026-03-07
20
+
21
+ ### Fixed
22
+
23
+ - **Embedding memory leak**: Every `npx ca search` spawned a process that loaded the ~150MB native embedding model. Without explicit cleanup, native threads kept processes alive as zombies. During heavy usage (Claude Code subagents), 32+ processes accumulated = 4.5GB leaked.
24
+ - `withEmbedding(fn)` scoped wrapper guarantees cleanup via try/finally. All 9 command-layer consumers migrated from manual try/finally to this single API.
25
+ - ESLint rule `require-embedding-cleanup` catches any file importing `embedText`/`getEmbedding` without a cleanup function. Scoped to `src/commands/` and `src/setup/`.
26
+ - `cli-app.ts` backstop: top-level finally in `runProgram()` catches anything the above two miss.
27
+ - **`embedText` probe inside `withEmbedding` scope**: `clean-lessons` command was calling `embedText` outside of `withEmbedding`, leaking the model on every invocation.
28
+ - **Agentic skill report format**: Markdown table was missing `|---|` separator row, rendering as plain text in some renderers.
29
+ - **Agentic skill missing setup remediation**: 5 of 15 principles (P8, P12-P15) had no setup actions. Added concrete remediation guidance for each.
30
+ - **Agentic skill missing completion gate**: Other skills have phase gates; the agentic skill was missing one. Added Setup Completion Gate with verification steps.
31
+ - **Agentic skill stack-biased scoring**: Rubric was TypeScript-heavy. Added language-neutral scoring guidance (mypy, clippy, ruff equivalents).
32
+ - **Agentic skill `$ARGUMENTS` dead code**: Mode is set by the calling command (`/compound:agentic-audit` or `/compound:agentic-setup`), not parsed from `$ARGUMENTS`.
33
+ - **Docs template missing agentic commands**: `SKILLS.md` template now lists `agentic-audit` and `agentic-setup` in the command inventory.
34
+
35
+ ## [1.6.3] - 2026-03-05
36
+
37
+ ### Changed
38
+
39
+ - **Cook-it session banner**: Replaced "Claude the Cooker" chef ASCII art with rscr's detailed front-view brain ASCII art ("Claw'd"). Brain features ANSI-colored augmentation zones: cyan neural interface (`##`), bright cyan signal crosslinks (`::`), green bio-circuits (`%`), magenta data highways (`######`), and yellow power nodes (`@@`).
40
+
12
41
  ## [1.6.2] - 2026-03-05
13
42
 
14
43
  ### Fixed
@@ -874,7 +903,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
874
903
  - Vitest test suite
875
904
  - tsup build configuration
876
905
 
877
- [Unreleased]: https://github.com/Nathandela/compound-agent/compare/v1.5.0...HEAD
906
+ [Unreleased]: https://github.com/Nathandela/compound-agent/compare/v1.6.5...HEAD
907
+ [1.6.5]: https://github.com/Nathandela/compound-agent/compare/v1.6.4...v1.6.5
908
+ [1.6.4]: https://github.com/Nathandela/compound-agent/compare/v1.6.3...v1.6.4
909
+ [1.6.3]: https://github.com/Nathandela/compound-agent/compare/v1.6.2...v1.6.3
910
+ [1.6.2]: https://github.com/Nathandela/compound-agent/compare/v1.6.1...v1.6.2
911
+ [1.6.1]: https://github.com/Nathandela/compound-agent/compare/v1.6.0...v1.6.1
912
+ [1.6.0]: https://github.com/Nathandela/compound-agent/compare/v1.5.0...v1.6.0
878
913
  [1.5.0]: https://github.com/Nathandela/compound-agent/compare/v1.4.4...v1.5.0
879
914
  [1.4.4]: https://github.com/Nathandela/compound-agent/compare/v1.4.3...v1.4.4
880
915
  [1.4.3]: https://github.com/Nathandela/compound-agent/compare/v1.4.2...v1.4.3
package/README.md CHANGED
@@ -122,6 +122,16 @@ Or run all phases sequentially:
122
122
  /compound:cook-it "Add auth to API"
123
123
  ```
124
124
 
125
+ Additional commands:
126
+
127
+ ```
128
+ /compound:learn-that --> Capture a lesson from conversation context
129
+ /compound:check-that --> Search lessons and apply to current work
130
+ /compound:get-a-phd --> Deep research to build agent knowledge
131
+ /compound:agentic-audit --> Score codebase against agentic manifesto
132
+ /compound:agentic-setup --> Audit then set up agentic infrastructure
133
+ ```
134
+
125
135
  Each phase searches memory for relevant past knowledge and injects it into agent context. The compound phase captures new knowledge, closing the loop.
126
136
 
127
137
  ## CLI Reference