cc-cream 0.1.6 → 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 +5 -0
  2. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -4,6 +4,11 @@ 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
+
7
12
  ## [0.1.6] — 2026-05-29
8
13
 
9
14
  ### Fixed
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cc-cream",
3
- "version": "0.1.6",
3
+ "version": "0.1.7",
4
4
  "description": "Claude Code cache/context/cost status-line tool",
5
5
  "directories": {
6
6
  "doc": "docs"