@claude-collective/cli 0.13.0 → 0.13.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 +11 -0
- package/config/skills-matrix.yaml +858 -0
- package/config/stacks.yaml +254 -0
- package/dist/config/skills-matrix.yaml +858 -0
- package/dist/config/stacks.yaml +254 -0
- package/package.json +2 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,16 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [0.13.1] - 2026-02-06
|
|
9
|
+
|
|
10
|
+
### Fixed
|
|
11
|
+
|
|
12
|
+
- **npx eject fails with ENOENT** - `config/` directory (skills-matrix.yaml, stacks.yaml) was missing from the published npm package, causing `npx @claude-collective/cli eject all` to fail
|
|
13
|
+
- **Build copies config to dist** - `config/` is now copied to `dist/config/` during build for correct runtime path resolution
|
|
14
|
+
- **Test suite portability** - Integration tests that depend on the external claude-subagents repo are now gated behind `CC_TEST_SKILLS_SOURCE` env var
|
|
15
|
+
- **macOS temp path mismatch** - Fixed `/private/var` vs `/var` symlink issue in installation test
|
|
16
|
+
- **Pre-commit hook** - Changed `bun test` to `bun run test` to use vitest instead of bun's built-in test runner
|
|
17
|
+
|
|
8
18
|
## [0.13.0] - 2026-02-06
|
|
9
19
|
|
|
10
20
|
### Added
|
|
@@ -26,6 +36,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
26
36
|
|
|
27
37
|
- Old `search.ts` command - Replaced with dual-mode `search.tsx` (static + interactive)
|
|
28
38
|
|
|
39
|
+
[0.13.1]: https://github.com/claude-collective/cli/releases/tag/v0.13.1
|
|
29
40
|
[0.13.0]: https://github.com/claude-collective/cli/releases/tag/v0.13.0
|
|
30
41
|
|
|
31
42
|
## [0.12.0] - 2026-02-04
|