@claude-collective/cli 0.1.2 → 0.2.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 +34 -0
- package/dist/cli/index.js +397 -284
- package/dist/cli/index.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,40 @@ 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.2.0] - 2026-01-30
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
|
|
12
|
+
- **Marketplace support** - install stack plugins directly from configured marketplaces
|
|
13
|
+
- Marketplace field in project and global config for plugin installation
|
|
14
|
+
- CLI utilities for marketplace management (`marketplace list`, `exists`, `add`)
|
|
15
|
+
- Multi-source agent loading - agents can now be loaded from both CLI and custom sources
|
|
16
|
+
- `sourceRoot` tracking for correct template resolution with multi-source agents
|
|
17
|
+
|
|
18
|
+
### Changed
|
|
19
|
+
|
|
20
|
+
- Removed skills eject functionality (use marketplace plugins instead)
|
|
21
|
+
|
|
22
|
+
### Fixed
|
|
23
|
+
|
|
24
|
+
- Wizard now preserves approach selection state when toggling Expert Mode or Install Mode
|
|
25
|
+
|
|
26
|
+
[0.2.0]: https://github.com/claude-collective/cli/releases/tag/v0.2.0
|
|
27
|
+
|
|
28
|
+
## [0.1.3] - 2026-01-30
|
|
29
|
+
|
|
30
|
+
### Added
|
|
31
|
+
|
|
32
|
+
- `--output` option for eject command to specify custom output directory
|
|
33
|
+
- Remote schema fetching for skill validation from GitHub
|
|
34
|
+
|
|
35
|
+
### Fixed
|
|
36
|
+
|
|
37
|
+
- Plugin manifest no longer includes agents field (Claude Code discovers automatically)
|
|
38
|
+
- Source loader now supports source-provided skills matrix
|
|
39
|
+
|
|
40
|
+
[0.1.3]: https://github.com/claude-collective/cli/releases/tag/v0.1.3
|
|
41
|
+
|
|
8
42
|
## [0.1.2] - 2026-01-30
|
|
9
43
|
|
|
10
44
|
### Changed
|