cc-cream 0.1.5 → 0.1.7

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 +11 -0
  2. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -4,6 +4,16 @@ All notable changes to cc-cream are documented here. Format follows
4
4
  [Keep a Changelog](https://keepachangelog.com/en/1.1.0/); versions follow
5
5
  [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6
6
 
7
+ ## [0.1.7] — 2026-05-29
8
+
9
+ ### Fixed
10
+ - **Marketplace install failed with `commands: Invalid input`** (regression from 0.1.6). The install-time manifest schema rejects a `commands` array of file paths in `plugin.json`, even though `claude plugin validate` (which is more lenient) accepts it — so the 0.1.6 "fix" passed local validation but still broke real installs. Removed the `commands` key entirely and moved the command files back to a top-level `commands/` directory (plugin root), letting Claude Code auto-discover them. This matches the official `ralph-loop` plugin layout. Verified end-to-end with a real `claude plugin install` from a local marketplace.
11
+
12
+ ## [0.1.6] — 2026-05-29
13
+
14
+ ### Fixed
15
+ - **Plugin commands still not appearing after installation.** The validator resolves `commands` paths in `plugin.json` relative to `.claude-plugin/`, and also requires the file to exist at that path. Moved command files from `commands/` (repo root) to `.claude-plugin/commands/`, so `./commands/setup.md` now correctly resolves to `.claude-plugin/commands/setup.md`. `${CLAUDE_PLUGIN_ROOT}` in the command bodies is unaffected — it always points to the plugin root.
16
+
7
17
  ## [0.1.5] — 2026-05-29
8
18
 
9
19
  ### Fixed
@@ -75,6 +85,7 @@ line and prints a colored ≤3-row bar — zero tokens, the model never sees it.
75
85
  - Supports **macOS and Linux**; Windows is a planned fast-follow.
76
86
  - Requires Claude Code **2.1.132+** (`effort` / `thinking` need 2.1.145+).
77
87
 
88
+ [0.1.6]: https://github.com/bart-turczynski/cc-cream/compare/v0.1.5...v0.1.6
78
89
  [0.1.5]: https://github.com/bart-turczynski/cc-cream/compare/v0.1.4...v0.1.5
79
90
  [0.1.4]: https://github.com/bart-turczynski/cc-cream/compare/v0.1.3...v0.1.4
80
91
  [0.1.3]: https://github.com/bart-turczynski/cc-cream/compare/v0.1.2...v0.1.3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cc-cream",
3
- "version": "0.1.5",
3
+ "version": "0.1.7",
4
4
  "description": "Claude Code cache/context/cost status-line tool",
5
5
  "directories": {
6
6
  "doc": "docs"