@timurproko/a1 0.1.8-dev.3b54f21 → 0.1.8-dev.49ff83a

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-24T07:13:11.159Z",
8
+ "builtAt": "2026-08-25T05:57:49.394Z",
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-24T07:13:11.090Z",
8
+ "builtAt": "2026-08-25T05:57:57.689Z",
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-24T07:13:46.176Z",
8
+ "builtAt": "2026-08-25T05:58:33.226Z",
9
9
  "artifact": {
10
10
  "filename": "process-guardian.exe",
11
- "sha256": "e9d61d614aa418c84bff93abb65342f0c05c1a670b77e22a88d01d2d61eba9b7",
11
+ "sha256": "da30d4a9c98fc919fb4079e9e83e345f8d197418ae763fd90f8b284abe3da972",
12
12
  "size": 172544
13
13
  },
14
14
  "provenance": {
@@ -314,7 +314,9 @@ export async function runSelfUpdate(options) {
314
314
  if (resolved.version === null)
315
315
  return resolved.exitCode;
316
316
  const targetVersion = resolved.version;
317
- output.stdout(`${PRODUCT_TEXT.commandName} update (${UPDATE_CHANNEL_LABELS[channel]}): ${runningVersion} ${targetVersion}.\n`);
317
+ // No full stop after a version: it already ends in a dot-separated identifier,
318
+ // and a trailing one reads as part of the version rather than as punctuation.
319
+ output.stdout(`${PRODUCT_TEXT.commandName} update (${UPDATE_CHANNEL_LABELS[channel]}): ${runningVersion} → ${targetVersion}\n`);
318
320
  const progress = createUpdateProgress(output, options.progress ?? (options.output === undefined && process.stdout.isTTY === true));
319
321
  const rootLookup = await measure("global-root", async () => await runNpm(runner, ["root", "--global"], true, output, "resolve npm's global package root"));
320
322
  if (rootLookup.result === null)
@@ -403,7 +405,7 @@ export async function runSelfUpdate(options) {
403
405
  await transactionStore.clearCompleted();
404
406
  options.onPhaseTiming?.({ phase: "transaction-complete", durationMs: Math.max(0, now() - transactionStartedAt) });
405
407
  progress.finish();
406
- output.stdout(`${PRODUCT_TEXT.commandName} updated successfully: ${targetVersion}.\n`);
408
+ output.stdout(`${PRODUCT_TEXT.commandName} updated successfully: ${targetVersion}\n`);
407
409
  return 0;
408
410
  }
409
411
  catch (error) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@timurproko/a1",
3
- "version": "0.1.8-dev.3b54f21",
3
+ "version": "0.1.8-dev.49ff83a",
4
4
  "description": "Standalone terminal workspace for supervised native and managed agents",
5
5
  "type": "module",
6
6
  "packageManager": "npm@11.13.0",