@rubytech/create-realagent 1.0.860 → 1.0.862

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rubytech/create-realagent",
3
- "version": "1.0.860",
3
+ "version": "1.0.862",
4
4
  "description": "Install Real Agent — Built for agents. By agents.",
5
5
  "bin": {
6
6
  "create-realagent": "./dist/index.js"
@@ -51,7 +51,7 @@ The agent loads these references on demand via `plugin-read` as the conversation
51
51
 
52
52
  ### UI contract
53
53
 
54
- `cloudflare-setup-form` (rendered via `render-component`) invokes `useDeviceUrlActions().onShowVnc()` immediately after a successful POST to `/api/admin/cloudflare/setup`. This auto-surfaces the brand-VNC overlay before `ActionLogPanel` shows the OAuth URL inside it, so the operator never has to open the menu manually. The `[browser-viewer] event=mount surface="overlay"` line must appear within 5 s of `[cloudflare-setup] phase=action-launched`; absence is a regression.
54
+ VNC surfacing is post-navigation, never on form submit. Two sites call `useDeviceUrlActions().onShowVnc()` and both fire only after a successful CDP nav: `DeviceUrlBlock` (tool-output URL clicks) and `ActionLogPanel.handleOauthRespawn` (the "Re-open on Pi browser" button rendered when an OAuth URL appears in the action log). The form (`cloudflare-setup-form`) must NOT call `onShowVnc()` on POST resolve — pre-warming the fullscreen overlay before the OAuth URL is on the brand chromium hides the form, the ActionLogPanel, and the very button operators must click. The `[browser-viewer] event=mount surface="overlay"` line must appear within 5 s of `[device-url:click] navigateResult=ok`, never before.
55
55
 
56
56
  ## Identity model
57
57
 
@@ -2,18 +2,20 @@
2
2
  # Existing-pi install-log redaction (Task 744).
3
3
  #
4
4
  # Idempotent one-shot remediation for Pis that completed installation BEFORE
5
- # the install-log redaction landed at index.ts:152 / setup.sh:94. Scans every
6
- # `install-*.log` in the configured logs directory and replaces every literal
7
- # `set-initial-password ...<secret>` payload with `set-initial-password
8
- # [REDACTED]`. Re-running the script is safe — already-redacted lines do not
9
- # match the source pattern, so no further edits occur.
5
+ # the install-log redaction landed at packages/create-maxy/src/index.ts:152.
6
+ # Scans every `install-*.log` in the configured logs directory and replaces
7
+ # every literal `set-initial-password ...<secret>` payload with
8
+ # `set-initial-password [REDACTED]`. Re-running the script is safe —
9
+ # already-redacted lines do not match the source pattern, so no further
10
+ # edits occur.
10
11
  #
11
12
  # Source patterns covered:
12
13
  # 1. TS installer (packages/create-maxy/src/index.ts:152) — "[ISO] > sudo
13
14
  # neo4j-admin dbms set-initial-password -- <secret>" or any args after
14
15
  # "set-initial-password" (positional or "--" delimited).
15
- # 2. Shell installer (platform/scripts/setup.sh, pre-fix variant) — "+ sudo
16
- # neo4j-admin dbms set-initial-password <secret>" if bash -x had been on.
16
+ # 2. Legacy bash installer (removed) — "+ sudo neo4j-admin dbms
17
+ # set-initial-password <secret>" if bash -x had been on. Pattern kept
18
+ # for historical install logs from before the bash installer's removal.
17
19
  #
18
20
  # A trailing marker line `[redact-install-logs] redacted=<n> file=<path>` is
19
21
  # appended to each modified log so subsequent reads can identify which logs