@timurproko/a1 0.1.1-dev.10 → 0.1.1-dev.11

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.
@@ -5,7 +5,7 @@
5
5
  "platform": "darwin",
6
6
  "architecture": "arm64",
7
7
  "capability": "unsupported",
8
- "builtAt": "2026-08-23T09:02:26.759Z",
8
+ "builtAt": "2026-08-23T09:25:46.770Z",
9
9
  "artifact": {
10
10
  "filename": "process-guardian",
11
11
  "sha256": "7524bf568992517f50ed53196c861c5edeba0d7275633bb4735ab45bd5963a28",
@@ -5,7 +5,7 @@
5
5
  "platform": "linux",
6
6
  "architecture": "x64",
7
7
  "capability": "supported",
8
- "builtAt": "2026-08-23T09:02:48.237Z",
8
+ "builtAt": "2026-08-23T09:25:43.327Z",
9
9
  "artifact": {
10
10
  "filename": "process-guardian",
11
11
  "sha256": "29e22fe29de2828982bc67ef418c4adcaab1490281477b7bea592ec6fe621bcd",
@@ -5,10 +5,10 @@
5
5
  "platform": "win32",
6
6
  "architecture": "x64",
7
7
  "capability": "supported",
8
- "builtAt": "2026-08-23T09:02:55.602Z",
8
+ "builtAt": "2026-08-23T09:26:36.967Z",
9
9
  "artifact": {
10
10
  "filename": "process-guardian.exe",
11
- "sha256": "0487a97a0676a7cdbe7b5328b38d555a568ea54eaa26fadb2e9e62e18cf3211b",
11
+ "sha256": "1fd994f340bfa8423eee47ab6b7c3a19a5b1a19dea88814af27d8a989cfa0da0",
12
12
  "size": 172544
13
13
  },
14
14
  "provenance": {
@@ -225,7 +225,6 @@ export async function runSelfUpdate(options) {
225
225
  }
226
226
  output.stdout(`${PRODUCT_TEXT.commandName} update (${channel}): ${runningVersion} → ${targetVersion}.\n`);
227
227
  const progress = createUpdateProgress(output, options.progress ?? (options.output === undefined && process.stdout.isTTY === true));
228
- progress.set(3, 15);
229
228
  const rootLookup = await measure("global-root", async () => await runNpm(runner, ["root", "--global"], true, output, "resolve npm's global package root"));
230
229
  if (rootLookup.result === null)
231
230
  return rootLookup.exitCode;
@@ -258,10 +257,11 @@ export async function runSelfUpdate(options) {
258
257
  await transactionStore.finish("completed");
259
258
  }
260
259
  await transactionStore.clearCompleted();
261
- progress.clear();
262
- output.stdout(`${PRODUCT_TEXT.commandName} is already current and active for this channel.\n`);
260
+ output.stdout(`${PRODUCT_TEXT.commandName} is up to date — no update needed.\n`);
263
261
  return 0;
264
262
  }
263
+ // The bar first appears here so a no-change run never flashes it.
264
+ progress.set(3, 15);
265
265
  const cohortState = await new CohortStateStore(paths.dataDir).read();
266
266
  transaction = await transactionStore.begin({
267
267
  channel,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@timurproko/a1",
3
- "version": "0.1.1-dev.10",
3
+ "version": "0.1.1-dev.11",
4
4
  "description": "Standalone terminal workspace for supervised native and managed agents",
5
5
  "type": "module",
6
6
  "packageManager": "npm@11.13.0",