@linimin/pi-letscook 0.1.40 → 0.1.41
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 +6 -0
- package/extensions/completion/index.ts +2 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
## Unreleased
|
|
4
4
|
|
|
5
|
+
## 0.1.41
|
|
6
|
+
|
|
7
|
+
### Changed
|
|
8
|
+
|
|
9
|
+
- fixed the `/cook proposal analyst` startup overlay so `Ctrl+C` cancels the in-flight analysis the same way as `Esc`, and updated the helper text to advertise both cancellation paths
|
|
10
|
+
|
|
5
11
|
## 0.1.40
|
|
6
12
|
|
|
7
13
|
### Changed
|
|
@@ -205,11 +205,11 @@ class StartupAnalystOverlay extends Container {
|
|
|
205
205
|
private updateDisplay(): void {
|
|
206
206
|
this.title.setText(this.theme.fg("accent", this.theme.bold("/cook proposal analyst")));
|
|
207
207
|
this.body.setText(formatInlineRunningText(this.theme, this.lines, { primaryAssistant: true }));
|
|
208
|
-
this.footer.setText(this.theme.fg("muted", "Esc cancel • This analysis runs before /cook writes canonical workflow state"));
|
|
208
|
+
this.footer.setText(this.theme.fg("muted", "Esc/Ctrl+C cancel • This analysis runs before /cook writes canonical workflow state"));
|
|
209
209
|
}
|
|
210
210
|
|
|
211
211
|
override handleInput(data: string): void {
|
|
212
|
-
if (data === "\u001b") {
|
|
212
|
+
if (data === "\u001b" || data === "\u0003") {
|
|
213
213
|
this.onAbort?.();
|
|
214
214
|
return;
|
|
215
215
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@linimin/pi-letscook",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.41",
|
|
4
4
|
"description": "Pi package for long-running completion workflows with canonical .agent state, role-based subagents, continuity, and verification helpers.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"private": false,
|