@mariozechner/pi-coding-agent 0.66.0 → 0.66.1
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/dist/modes/interactive/interactive-mode.d.ts +1 -1
- package/dist/modes/interactive/interactive-mode.d.ts.map +1 -1
- package/dist/modes/interactive/interactive-mode.js +10 -10
- package/dist/modes/interactive/interactive-mode.js.map +1 -1
- package/examples/extensions/custom-provider-anthropic/package-lock.json +2 -2
- package/examples/extensions/custom-provider-anthropic/package.json +1 -1
- package/examples/extensions/custom-provider-gitlab-duo/package.json +1 -1
- package/examples/extensions/custom-provider-qwen-cli/package.json +1 -1
- package/examples/extensions/with-deps/package-lock.json +2 -2
- package/examples/extensions/with-deps/package.json +1 -1
- package/package.json +4 -4
|
@@ -288,21 +288,11 @@ export class InteractiveMode {
|
|
|
288
288
|
this.editor.setAutocompleteProvider?.(this.autocompleteProvider);
|
|
289
289
|
}
|
|
290
290
|
}
|
|
291
|
-
shouldShowEarendilAnnouncement() {
|
|
292
|
-
const now = new Date();
|
|
293
|
-
return now.getFullYear() === 2026 && now.getMonth() === 3 && (now.getDate() === 8 || now.getDate() === 9);
|
|
294
|
-
}
|
|
295
291
|
showStartupNoticesIfNeeded() {
|
|
296
292
|
if (this.startupNoticesShown) {
|
|
297
293
|
return;
|
|
298
294
|
}
|
|
299
295
|
this.startupNoticesShown = true;
|
|
300
|
-
if (this.shouldShowEarendilAnnouncement()) {
|
|
301
|
-
if (this.chatContainer.children.length > 0) {
|
|
302
|
-
this.chatContainer.addChild(new Spacer(1));
|
|
303
|
-
}
|
|
304
|
-
this.chatContainer.addChild(new EarendilAnnouncementComponent());
|
|
305
|
-
}
|
|
306
296
|
if (!this.changelogMarkdown) {
|
|
307
297
|
return;
|
|
308
298
|
}
|
|
@@ -1830,6 +1820,11 @@ export class InteractiveMode {
|
|
|
1830
1820
|
this.editor.setText("");
|
|
1831
1821
|
return;
|
|
1832
1822
|
}
|
|
1823
|
+
if (text === "/dementedelves") {
|
|
1824
|
+
this.handleDementedDelves();
|
|
1825
|
+
this.editor.setText("");
|
|
1826
|
+
return;
|
|
1827
|
+
}
|
|
1833
1828
|
if (text === "/resume") {
|
|
1834
1829
|
this.showSessionSelector();
|
|
1835
1830
|
this.editor.setText("");
|
|
@@ -3903,6 +3898,11 @@ export class InteractiveMode {
|
|
|
3903
3898
|
this.chatContainer.addChild(new ArminComponent(this.ui));
|
|
3904
3899
|
this.ui.requestRender();
|
|
3905
3900
|
}
|
|
3901
|
+
handleDementedDelves() {
|
|
3902
|
+
this.chatContainer.addChild(new Spacer(1));
|
|
3903
|
+
this.chatContainer.addChild(new EarendilAnnouncementComponent());
|
|
3904
|
+
this.ui.requestRender();
|
|
3905
|
+
}
|
|
3906
3906
|
handleDaxnuts() {
|
|
3907
3907
|
this.chatContainer.addChild(new Spacer(1));
|
|
3908
3908
|
this.chatContainer.addChild(new DaxnutsComponent(this.ui));
|