@timurproko/a1 0.1.8-dev.467 → 0.1.8-dev.468

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.
@@ -12,7 +12,7 @@ import { createPiQueuedInputStatus, createPiShellFooter, createPiShellHeader, cr
12
12
  import { createPiShellArmin, createPiShellAuthProviderSelector, createPiShellDaxnuts, createPiShellDialog, createPiShellEarendilAnnouncement, createPiShellExtensionSelector, createPiShellLoginDialog, createPiShellModelSelector, createPiShellOperationLoader, createPiShellReloadBox, createPiShellScopedModelsSelector, createPiShellSelector, createPiShellSessionSelector, createPiShellSettingsSelector, createPiShellTreeSelector, createPiShellTrustSelector, createPiShellUserMessageSelector, } from "../components/shell-selectors-dialogs.js";
13
13
  import { createPiShellChangelog, createPiShellCollapsedChangelog, createPiShellHotkeys, createPiShellSessionInfo, renderPiShellCommandMessage, renderPiShellStatusText, } from "../components/shell-presenters-info.js";
14
14
  import { createPiShellTranscriptComponent, isPiPromptStyleCompaction, paintPiSubmittedPromptTimestamp, renderPiShellPackageUpdateNotice, renderPiShellStartupDiagnostic, renderPiShellTranscriptBlock, } from "../components/shell-presenters-transcript.js";
15
- import { onPiThemeChange, piTheme } from "../components/upstream/theme/theme.js";
15
+ import { onPiThemeChange, PINNED_PI_LAYOUT, piTheme } from "../components/upstream/theme/theme.js";
16
16
  import { piShellTruncateToWidth, piShellVisibleWidth, } from "../components/shell-shared-facade.js";
17
17
  import { classifyPiTuiInput, } from "../tui-runtime/input-presentation-coordinator.js";
18
18
  import { PromptChipStore } from "./prompt-chips.js";
@@ -343,8 +343,10 @@ export class OwnedUiSessionShellRoot {
343
343
  this.#documentLayouts.clear();
344
344
  }
345
345
  #mountTranscript(block) {
346
- // Invariant: new content dismisses the notice; a revision of a mounted block keeps it.
347
- this.#dismissDockNotice();
346
+ // Invariant: the notice answers the reader's last command, so only their next prompt or
347
+ // shell command retires it; assistant, tool, and compaction blocks streaming in keep it.
348
+ if (block.kind === "user" || block.kind === "bash")
349
+ this.#dismissDockNotice();
348
350
  const created = createPiShellTranscriptComponent(block, this.#cwd, this.#extensionRenderers, this.#submittedPromptComposer, this.#outputPad, !this.#thinkingVisible, this.#mermaidRenderingMode, this.#showImages, this.#imageWidthCells, this.#imageAssets, { ...this.#componentRuntime, changed: () => {
349
351
  if (this.#transcript.get(block.id) !== created)
350
352
  return;
@@ -543,7 +545,8 @@ export class OwnedUiSessionShellRoot {
543
545
  #renderDockNotice(width) {
544
546
  if (this.#dockNotice === undefined)
545
547
  return [];
546
- return ["", ...renderPiShellStatusText(this.#dockNotice, width, this.#outputPad)];
548
+ // Compatibility: Pi pads its status text by one cell regardless of the output pad setting.
549
+ return ["", ...renderPiShellStatusText(this.#dockNotice, width, PINNED_PI_LAYOUT.outputPad)];
547
550
  }
548
551
  #dismissDockNotice() {
549
552
  if (this.#dockNotice === undefined)
@@ -5,7 +5,7 @@
5
5
  "platform": "darwin",
6
6
  "architecture": "arm64",
7
7
  "capability": "supported",
8
- "builtAt": "2026-09-17T18:17:47.242Z",
8
+ "builtAt": "2026-09-17T18:35:35.556Z",
9
9
  "artifact": {
10
10
  "filename": "process-guardian",
11
11
  "sha256": "9db1726bbe3fc2e8292f2ead1e7e9d0fd4d7d0dc9217b372582bf354b0f565dc",
@@ -5,7 +5,7 @@
5
5
  "platform": "linux",
6
6
  "architecture": "x64",
7
7
  "capability": "supported",
8
- "builtAt": "2026-09-17T18:17:37.589Z",
8
+ "builtAt": "2026-09-17T18:35:34.322Z",
9
9
  "artifact": {
10
10
  "filename": "process-guardian",
11
11
  "sha256": "d8cda6b0c7cb36c0cc41e90802aceebf6c02eaebbc08a83d7d963d2e918dbd7a",
@@ -5,10 +5,10 @@
5
5
  "platform": "win32",
6
6
  "architecture": "x64",
7
7
  "capability": "supported",
8
- "builtAt": "2026-09-17T18:18:40.058Z",
8
+ "builtAt": "2026-09-17T18:36:08.573Z",
9
9
  "artifact": {
10
10
  "filename": "process-guardian.exe",
11
- "sha256": "bb9636bcbdcbd48220ad6beb4934afc7b07c369e0abe1906d9dacc45a67ec675",
11
+ "sha256": "2e6e2de410d516ae2f78b20e7253e0feb789fc460de8b5de9ec3a22219395309",
12
12
  "size": 177664
13
13
  },
14
14
  "provenance": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@timurproko/a1",
3
- "version": "0.1.8-dev.467",
3
+ "version": "0.1.8-dev.468",
4
4
  "description": "Standalone terminal workspace for supervised native and managed agents",
5
5
  "type": "module",
6
6
  "privateLaunchContract": "neutral-launch-v1",