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

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-18T05:51:31.871Z",
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-18T05:51:15.837Z",
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-18T05:51:47.497Z",
9
9
  "artifact": {
10
10
  "filename": "process-guardian.exe",
11
- "sha256": "bb9636bcbdcbd48220ad6beb4934afc7b07c369e0abe1906d9dacc45a67ec675",
11
+ "sha256": "80d650d76e86b74f88dd08eda58f6be203642bc46fcaf1f67e11176fa8392da1",
12
12
  "size": 177664
13
13
  },
14
14
  "provenance": {
@@ -250,6 +250,7 @@ Rules that do not bend:
250
250
  path, and use the confirmed apply mode only for an accepted mutable policy change.
251
251
  - **Nightly documentation review fails:** inspect the reported paths and rules, identify the introducing merge from the nightly interval, and repair the invariant before unrelated work proceeds.
252
252
  - **Development publication fails:** fix the cause and rerun `npm run develop`; an npm version that already exists is never overwritten.
253
+ - **Registry verification times out:** a `has not propagated` failure after a successful `npm publish` means npm is still ingesting the upload; it warns that a provenance-signed package "may take a few minutes" and the publisher polls for ten minutes. Confirm the version and its shasum on `https://registry.npmjs.org/<name>/<version>`, then rerun the failed jobs: the final registry check finds the exact bytes, skips `npm publish`, and verification passes. A digest or tag mismatch is not a timeout and is never repaired by rerunning.
253
254
  - **Stable preparation stops before dispatch:** inspect the reported version PR/worktree. After preserving work, an exact matching pending PR can be observed again. If develop already declares the prepared stable version, use its exact target (for example `npm run release -- 0.1.8`) only after verifying that source's merged PR and confirming the registry/tag guards still permit it. Do not use `patch` from stable develop to retry the same version: that deliberately selects the next patch.
254
255
  - **Stable publication fails or is uncertain:** inspect the workflow, registry version/digest, tag, and release before choosing recovery. No reopening PR is prepared. Never republish immutable bytes or move a release tag.
255
256
  - **Stable publication succeeded but reopening stops:** the stable version is already published. Inspect and finish the reported next-development PR manually; do not repeat stable publication. If no reopening PR was created, prepare the next-development version through a separately validated manual PR after inspecting remote state.
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.469",
4
4
  "description": "Standalone terminal workspace for supervised native and managed agents",
5
5
  "type": "module",
6
6
  "privateLaunchContract": "neutral-launch-v1",