From dd2f9e9ca420f0737d28a9545d9030c462096efb Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 7 Sep 2026 21:27:06 +0000 Subject: [PATCH] Version Packages --- .changeset/run-plan-init-script-relaunch.md | 5 ----- .changeset/run-plan-open-verifies-page.md | 5 ----- packages/next/CHANGELOG.md | 8 ++++++++ packages/next/package.json | 18 +++++++++++++++--- 4 files changed, 23 insertions(+), 13 deletions(-) delete mode 100644 .changeset/run-plan-init-script-relaunch.md delete mode 100644 .changeset/run-plan-open-verifies-page.md create mode 100644 packages/next/CHANGELOG.md diff --git a/.changeset/run-plan-init-script-relaunch.md b/.changeset/run-plan-init-script-relaunch.md deleted file mode 100644 index 7298666..0000000 --- a/.changeset/run-plan-init-script-relaunch.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@sightmap/next": patch ---- - -`sightmap-next run-plan --init-script` now works when an agent-browser daemon is already running. agent-browser only registers `--init-script` when it launches the browser and silently ignores the flag on a running daemon, so a plan run that followed any other `open` never saw the Sightkick runtime and timed out. The first `open` with an init script (or a switch to a different one) now closes the running daemon so the relaunch picks the script up; later opens in the same run reuse it. diff --git a/.changeset/run-plan-open-verifies-page.md b/.changeset/run-plan-open-verifies-page.md deleted file mode 100644 index 2138042..0000000 --- a/.changeset/run-plan-open-verifies-page.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@sightmap/next": patch ---- - -`sightmap-next run-plan` no longer trusts an `open` that agent-browser accepted while its browser was still tearing down from a previous close. That race leaves the next command on an auto-launched blank tab, and the plan then times out waiting for a runtime that was never going to load. `open` now confirms a real page is there (any page counts, so redirects are fine) and re-opens when it finds `about:blank`. When the wait for the runtime does time out, the error now reports the page's URL, ready state, whether the boot script and runtime tag are present, and the page's own errors, so a CI failure is diagnosable from its log. diff --git a/packages/next/CHANGELOG.md b/packages/next/CHANGELOG.md new file mode 100644 index 0000000..69dbda6 --- /dev/null +++ b/packages/next/CHANGELOG.md @@ -0,0 +1,8 @@ +# @sightmap/next + +## 0.0.2 + +### Patch Changes + +- 4e3738e: `sightmap-next run-plan --init-script` now works when an agent-browser daemon is already running. agent-browser only registers `--init-script` when it launches the browser and silently ignores the flag on a running daemon, so a plan run that followed any other `open` never saw the Sightkick runtime and timed out. The first `open` with an init script (or a switch to a different one) now closes the running daemon so the relaunch picks the script up; later opens in the same run reuse it. +- a1fceb9: `sightmap-next run-plan` no longer trusts an `open` that agent-browser accepted while its browser was still tearing down from a previous close. That race leaves the next command on an auto-launched blank tab, and the plan then times out waiting for a runtime that was never going to load. `open` now confirms a real page is there (any page counts, so redirects are fine) and re-opens when it finds `about:blank`. When the wait for the runtime does time out, the error now reports the page's URL, ready state, whether the boot script and runtime tag are present, and the page's own errors, so a CI failure is diagnosable from its log. diff --git a/packages/next/package.json b/packages/next/package.json index fd86ab7..1cd173b 100644 --- a/packages/next/package.json +++ b/packages/next/package.json @@ -1,6 +1,6 @@ { "name": "@sightmap/next", - "version": "0.0.1", + "version": "0.0.2", "description": "Next.js compatibility layer for Sightmap and Sightkick: seed a .sightmap/ corpus from the App Router, publish the corpus and the compiled WebMCP tool layer at /.well-known/, boot the tools on every page, and replay natural-language plans through agent-browser.", "license": "MIT", "type": "module", @@ -10,7 +10,15 @@ "url": "git+https://github.com/sightmap/sightmap-next.git", "directory": "packages/next" }, - "keywords": ["sightmap", "sightkick", "webmcp", "nextjs", "vercel", "agent-browser", "agent"], + "keywords": [ + "sightmap", + "sightkick", + "webmcp", + "nextjs", + "vercel", + "agent-browser", + "agent" + ], "bin": { "sightmap-next": "bin/sightmap-next.mjs" }, @@ -23,7 +31,11 @@ "./build": "./src/build.mjs", "./run-plan": "./src/run-plan.mjs" }, - "files": ["bin/", "src/", "README.md"], + "files": [ + "bin/", + "src/", + "README.md" + ], "publishConfig": { "access": "public" },