@earendil-works/pi-coding-agent 0.79.7 → 0.79.8

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.
@@ -3044,7 +3044,6 @@ export class InteractiveMode {
3044
3044
  showError(errorMessage) {
3045
3045
  this.chatContainer.addChild(new Spacer(1));
3046
3046
  this.chatContainer.addChild(new Text(theme.fg("error", `Error: ${errorMessage}`), 1, 0));
3047
- this.chatContainer.addChild(new Spacer(1));
3048
3047
  this.ui.requestRender();
3049
3048
  }
3050
3049
  showWarning(warningMessage) {
@@ -4756,12 +4755,6 @@ export class InteractiveMode {
4756
4755
  this.ui.requestRender();
4757
4756
  }
4758
4757
  async handleCompactCommand(customInstructions) {
4759
- const entries = this.sessionManager.getEntries();
4760
- const messageCount = entries.filter((e) => e.type === "message").length;
4761
- if (messageCount < 2) {
4762
- this.showWarning("Nothing to compact (no messages yet)");
4763
- return;
4764
- }
4765
4758
  if (this.loadingAnimation) {
4766
4759
  this.loadingAnimation.stop();
4767
4760
  this.loadingAnimation = undefined;