cc-cream 0.1.8 → 0.1.9
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 +5 -0
- package/README.md +14 -8
- package/package.json +1 -1
- package/src/install.js +26 -3
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.9] — 2026-05-29
|
|
8
|
+
|
|
9
|
+
### Fixed
|
|
10
|
+
- **`/cc-cream:setup` and `/cc-cream:uninstall` no longer hang on a y/N prompt** (CREAM-vxbbrypj). The slash commands run `install.js` via Claude Code's bang execution, which has no interactive TTY, so install.js's readline prompts blocked forever — the uninstaller's "delete runtime/state?" prompt was the dead end. install.js now detects a missing TTY and resolves prompts non-interactively: uninstall removes the `statusLine` and **keeps** the runtime/state artifacts (re-run in a terminal or pass `--purge` to delete them); setup overwrites an existing *cc-cream* `statusLine` but never clobbers a foreign one without a terminal or the new `--force`/`--yes` flag. Interactive terminals are unchanged. (Plugin removal still takes two steps — `/cc-cream:uninstall` then `/plugin uninstall cc-cream` — because Claude Code has no plugin-uninstall hook to clean `settings.json` automatically.)
|
|
11
|
+
|
|
7
12
|
## [0.1.8] — 2026-05-29
|
|
8
13
|
|
|
9
14
|
### Added
|
package/README.md
CHANGED
|
@@ -112,23 +112,29 @@ and you may need to **restart** it for the bar to appear.
|
|
|
112
112
|
|
|
113
113
|
### Uninstall
|
|
114
114
|
|
|
115
|
-
Plugin users
|
|
115
|
+
Plugin users — two steps (Claude Code can't clean `settings.json` when a plugin
|
|
116
|
+
is removed, so the wiring is cleared separately from the cache):
|
|
116
117
|
```
|
|
117
|
-
/cc-cream:uninstall
|
|
118
|
-
/plugin uninstall cc-cream
|
|
118
|
+
/cc-cream:uninstall # removes the statusLine wiring
|
|
119
|
+
/plugin uninstall cc-cream # drops the plugin from the cache
|
|
119
120
|
```
|
|
120
121
|
|
|
121
122
|
npm / manual users:
|
|
122
123
|
```bash
|
|
123
|
-
cc-cream-setup --uninstall # npm (add --purge to also remove config)
|
|
124
|
+
cc-cream-setup --uninstall # npm (add --purge to also remove runtime + config)
|
|
124
125
|
node cc-cream/src/install.js --uninstall # manual clone
|
|
125
126
|
```
|
|
126
127
|
|
|
127
128
|
Uninstall removes the `statusLine` block **only if it is cc-cream's** — a
|
|
128
|
-
statusLine you wired for something else is left untouched.
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
to
|
|
129
|
+
statusLine you wired for something else is left untouched. In a terminal it asks
|
|
130
|
+
before deleting the copied runtime and session-state files; run **non-interactively**
|
|
131
|
+
(as the `/cc-cream:uninstall` slash command does) it leaves those artifacts in
|
|
132
|
+
place — pass `--purge` to remove them and your `~/.claude/cc-cream.json` config.
|
|
133
|
+
Restart Claude Code to clear the bar.
|
|
134
|
+
|
|
135
|
+
Likewise, `cc-cream-setup` run non-interactively will overwrite an existing
|
|
136
|
+
*cc-cream* statusLine but never a foreign one — pass `--force` to replace
|
|
137
|
+
regardless.
|
|
132
138
|
|
|
133
139
|
## Configuration
|
|
134
140
|
|
package/package.json
CHANGED
package/src/install.js
CHANGED
|
@@ -223,12 +223,22 @@ async function uninstall({ purge }) {
|
|
|
223
223
|
|
|
224
224
|
const artifacts = [runtimeDir, stateFile].filter((p) => fs.existsSync(p));
|
|
225
225
|
if (artifacts.length) {
|
|
226
|
-
|
|
226
|
+
let remove = purge;
|
|
227
|
+
if (!remove && process.stdin.isTTY) {
|
|
228
|
+
remove = await ask(`Also delete the copied runtime and session state?\n ${artifacts.join('\n ')}`);
|
|
229
|
+
}
|
|
227
230
|
if (remove) {
|
|
228
231
|
for (const p of artifacts) fs.rmSync(p, { recursive: true, force: true });
|
|
229
232
|
console.log('Removed runtime and state files.');
|
|
230
|
-
} else {
|
|
233
|
+
} else if (process.stdin.isTTY) {
|
|
231
234
|
console.log('Left runtime and state files in place.');
|
|
235
|
+
} else {
|
|
236
|
+
// Non-interactive (e.g. run via the /cc-cream:uninstall slash command, which
|
|
237
|
+
// has no TTY): never block on a prompt. The statusLine — the thing that
|
|
238
|
+
// matters — is already removed; keep the artifacts (deletion is destructive)
|
|
239
|
+
// and say how to remove them.
|
|
240
|
+
console.log(`Left runtime and session state in place — no terminal to confirm deletion:\n ${artifacts.join('\n ')}`);
|
|
241
|
+
console.log('Re-run in a terminal, or pass --purge, to remove them.');
|
|
232
242
|
}
|
|
233
243
|
}
|
|
234
244
|
if (purge && fs.existsSync(configFile)) {
|
|
@@ -248,6 +258,7 @@ async function main() {
|
|
|
248
258
|
return;
|
|
249
259
|
}
|
|
250
260
|
const plugin = args.includes('--plugin');
|
|
261
|
+
const force = args.includes('--force') || args.includes('--yes');
|
|
251
262
|
// First non-flag arg is an optional local source path (manual mode only).
|
|
252
263
|
const positional = args.filter((a) => !a.startsWith('--'));
|
|
253
264
|
|
|
@@ -284,7 +295,19 @@ async function main() {
|
|
|
284
295
|
// If a replace needs consent, ask now and re-plan with the answer.
|
|
285
296
|
if (!result.changed && result.needsConsent) {
|
|
286
297
|
for (const m of result.messages) console.log(m);
|
|
287
|
-
|
|
298
|
+
let yes;
|
|
299
|
+
if (process.stdin.isTTY) {
|
|
300
|
+
yes = await ask('Replace it with cc-cream?');
|
|
301
|
+
} else {
|
|
302
|
+
// Non-interactive (e.g. run via the /cc-cream:setup slash command, which has
|
|
303
|
+
// no TTY): never block on a prompt. Safe to overwrite our OWN wiring (an
|
|
304
|
+
// older/other-strategy cc-cream statusLine); never clobber a FOREIGN
|
|
305
|
+
// statusLine without a terminal or an explicit --force.
|
|
306
|
+
yes = force || isCcCreamStatusLine(settings.statusLine);
|
|
307
|
+
console.log(yes
|
|
308
|
+
? 'Non-interactive: replacing the existing cc-cream statusLine.'
|
|
309
|
+
: 'Non-interactive: left your existing statusLine unchanged. Re-run in a terminal, or pass --force, to replace it.');
|
|
310
|
+
}
|
|
288
311
|
result = plan(settings, { ...planOpts, consent: yes });
|
|
289
312
|
}
|
|
290
313
|
|