cc-cream 0.1.9 → 0.1.10

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 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.10] — 2026-05-29
8
+
9
+ ### Added
10
+ - **Setup reminder after plugin install** (CREAM-cpcwjkxi). Installing the plugin makes the commands available but can't wire the status bar (Claude Code has no install hook to write `settings.json`), so users saw no bar and didn't know to run `/cc-cream:setup`. A `SessionStart` hook (`hooks/hooks.json`, auto-discovered) now emits a one-line `systemMessage` nudging the user to run `/cc-cream:setup` — but **only while cc-cream's statusLine is absent**, so it self-silences once setup runs. `systemMessage` is shown to the user and adds **nothing** to the model context (zero tokens). Degrades safely: missing `settings.json` → nudge; malformed → silent; always exits 0. Biome now also lints `hooks/`.
11
+
7
12
  ## [0.1.9] — 2026-05-29
8
13
 
9
14
  ### Fixed
package/README.md CHANGED
@@ -72,9 +72,10 @@ Then wire it into your settings in one step:
72
72
  ```
73
73
 
74
74
  The `/cc-cream:setup` command runs the consent installer, which writes the
75
- `statusLine` block to `~/.claude/settings.json`. Updates are automatic: when
76
- `/plugin update` drops a new version into the cache, the next render picks it
77
- up without any further action.
75
+ `statusLine` block to `~/.claude/settings.json`. Until you run it, cc-cream
76
+ prints a one-line reminder at the start of each session (it stops once the bar
77
+ is wired). Updates are automatic: when `/plugin update` drops a new version into
78
+ the cache, the next render picks it up without any further action.
78
79
 
79
80
  ### Option 2 — npm
80
81
 
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "cc-cream",
3
- "version": "0.1.9",
3
+ "version": "0.1.10",
4
4
  "description": "Claude Code cache/context/cost status-line tool",
5
5
  "directories": {
6
6
  "doc": "docs"
7
7
  },
8
8
  "scripts": {
9
- "lint": "biome lint src/",
9
+ "lint": "biome lint src/ hooks/",
10
10
  "knip": "knip",
11
11
  "validate": "command -v claude >/dev/null 2>&1 && claude plugin validate . || echo 'cc-cream: claude CLI not found — skipping plugin validation'",
12
12
  "pretest": "npm run lint && npm run knip && npm run validate",