compound-agent 1.0.0 → 1.1.0
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 +28 -1
- package/dist/cli.js +505 -203
- package/dist/cli.js.map +1 -1
- package/dist/index.d.ts +6 -6
- package/dist/index.js +4 -0
- package/dist/index.js.map +1 -1
- package/dist/mcp.js +105 -1
- package/dist/mcp.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -9,6 +9,31 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
9
9
|
|
|
10
10
|
## [Unreleased]
|
|
11
11
|
|
|
12
|
+
## [1.1.0] - 2026-02-15
|
|
13
|
+
|
|
14
|
+
### Added
|
|
15
|
+
|
|
16
|
+
- **External reviewer integration**: Optional Gemini CLI and Codex CLI as headless cross-model reviewers. Enable with `ca reviewer enable gemini`. Advisory only, non-blocking.
|
|
17
|
+
- **`ca reviewer` command**: `ca reviewer enable|disable|list` to manage external reviewers
|
|
18
|
+
- **`ca doctor` command**: Verifies external dependencies (bd, embedding model, hooks, MCP server) with actionable fix hints
|
|
19
|
+
- **Dynamic reviewer selection**: Review workflow scales agent count with diff size — 4 core reviewers for small diffs, 7 for medium, full 11 for large
|
|
20
|
+
- **Auto-sync on session start**: `ca prime` now syncs the SQLite index before loading lessons, ensuring MCP searches have fresh data after `git pull`
|
|
21
|
+
- **Config system**: `.claude/compound-agent.json` for user-editable settings (not overwritten by `setup --update`)
|
|
22
|
+
|
|
23
|
+
### Changed
|
|
24
|
+
|
|
25
|
+
- **Workflow commands**: Moved slash commands into `compound/` subfolder with legacy cleanup migration
|
|
26
|
+
- **Review template**: Tiered reviewer selection replaces fixed 11-reviewer spawn
|
|
27
|
+
|
|
28
|
+
### Fixed
|
|
29
|
+
|
|
30
|
+
- **Safe legacy migration**: `setup --update` and `--uninstall` now check for `GENERATED_MARKER` before deleting root-level commands — user-authored files preserved
|
|
31
|
+
- **Config robustness**: Malformed `.claude/compound-agent.json` no longer crashes reviewer commands
|
|
32
|
+
- **Consistent error handling**: `reviewer disable` and `list` now wrapped in try/catch matching `enable`
|
|
33
|
+
- **Template numbering**: Fixed duplicate step numbers in work.md workflow
|
|
34
|
+
|
|
35
|
+
## [1.0.0] - 2026-02-15
|
|
36
|
+
|
|
12
37
|
### Added
|
|
13
38
|
|
|
14
39
|
- **Unified memory types**: lesson, solution, pattern, preference -- all share one store, schema, and search mechanism
|
|
@@ -398,7 +423,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
398
423
|
- Vitest test suite
|
|
399
424
|
- tsup build configuration
|
|
400
425
|
|
|
401
|
-
[Unreleased]: https://github.com/Nathandela/learning_agent/compare/
|
|
426
|
+
[Unreleased]: https://github.com/Nathandela/learning_agent/compare/v1.1.0...HEAD
|
|
427
|
+
[1.1.0]: https://github.com/Nathandela/learning_agent/compare/v1.0.0...v1.1.0
|
|
428
|
+
[1.0.0]: https://github.com/Nathandela/learning_agent/compare/v0.2.9...v1.0.0
|
|
402
429
|
[0.2.9]: https://github.com/Nathandela/learning_agent/compare/v0.2.8...v0.2.9
|
|
403
430
|
[0.2.8]: https://github.com/Nathandela/learning_agent/compare/v0.2.7...v0.2.8
|
|
404
431
|
[0.2.7]: https://github.com/Nathandela/learning_agent/compare/v0.2.6...v0.2.7
|