@rubytech/create-realagent 1.0.657 → 1.0.658
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 +1 -1
- package/payload/platform/package-lock.json +49 -1837
- package/payload/platform/plugins/docs/references/platform.md +1 -1
- package/payload/platform/plugins/docs/references/troubleshooting.md +3 -3
- package/payload/server/public/assets/{admin-C6FCOBJJ.js → admin-Czc-XCGo.js} +2 -2
- package/payload/server/public/assets/{data-OhPCCGxF.js → data-CrSbmVOi.js} +1 -1
- package/payload/server/public/assets/{file-vGZzzcEL.js → file-DJN8iDYd.js} +1 -1
- package/payload/server/public/assets/{graph-arM1qUve.js → graph-BtnUfXRD.js} +1 -1
- package/payload/server/public/assets/{house-CStAEh5N.js → house-0e8rAfIV.js} +1 -1
- package/payload/server/public/assets/jsx-runtime-c8K7DPME.css +1 -0
- package/payload/server/public/assets/{public-CA8hdxVS.js → public-CWJExYI2.js} +1 -1
- package/payload/server/public/assets/{share-2-BgiUCVf3.js → share-2-DZ7p8QqC.js} +1 -1
- package/payload/server/public/assets/{useVoiceRecorder-B343k-mr.js → useVoiceRecorder-BgiIIuSz.js} +1 -1
- package/payload/server/public/assets/{x-CNdlr5ao.js → x-CknuyFAk.js} +1 -1
- package/payload/server/public/data.html +6 -6
- package/payload/server/public/graph.html +6 -6
- package/payload/server/public/index.html +7 -7
- package/payload/server/public/public.html +4 -4
- package/payload/server/public/assets/jsx-runtime-CE3bWIbP.css +0 -1
- /package/payload/server/public/assets/{jsx-runtime-ZaEwDls0.js → jsx-runtime-DHkQ2la3.js} +0 -0
|
@@ -68,7 +68,7 @@ The admin UI includes a live terminal surface that opens a real shell on your Pi
|
|
|
68
68
|
|
|
69
69
|
The tmux session outlives admin-server restarts — running an upgrade inside this terminal means you see the live shell output continuously, even through the admin server's own restart mid-upgrade. Closing the browser tab does not kill the running work; re-opening the Software Update window reattaches to the same session during an active upgrade and scrollback shows everything that happened in the meantime. Password-protected `sudo` prompts appear natively inside the terminal, and the password you type never leaves the Pi — the admin-server proxy is a raw byte pipe that never inspects frame payloads.
|
|
70
70
|
|
|
71
|
-
The Software Update window mounts the terminal lazily: neither the terminal, its WebSocket, nor its black-backgrounded container render until you click Upgrade. Pre-click, the window shows a small "Ready to upgrade — click Upgrade to begin." line
|
|
71
|
+
The Software Update window mounts the terminal lazily: neither the terminal, its WebSocket, nor its black-backgrounded container render until you click Upgrade. Pre-click, the window shows a small "Ready to upgrade — click Upgrade to begin." line and no network traffic flows. On click, the window mounts the terminal and sends the npx command via `RemoteTerminal.onReady`; the terminal output is the only upgrade observability surface. A background version poll flips to the success row when `installed === latest` and reloads the page. The upgrade command is dispatched the moment the WebSocket opens — you won't see "terminal not ready" warnings on a healthy device. If the admin server cannot reach `ttyd`, the window renders an inline "Admin terminal not available" message with the exact re-install command and a Try again button. Closing the window does not kill the upgrade — the tmux session keeps running upstream — but the window itself starts fresh on every reopen: if you reopen during an in-flight upgrade, click Upgrade again and the scrollback shows the in-progress output.
|
|
72
72
|
|
|
73
73
|
## AI Content Provenance
|
|
74
74
|
|
|
@@ -125,9 +125,9 @@ npx -y @rubytech/create-maxy@latest
|
|
|
125
125
|
|
|
126
126
|
Then return to the upgrade window and click **Try again**. The window re-probes `/api/health` and, once ttyd is listening, the terminal area mounts as normal. If the problem persists, check the boot log for `[ttyd] upstream NOT reachable on 127.0.0.1:7681` and follow the `maxy-ttyd` restart steps above.
|
|
127
127
|
|
|
128
|
-
## Upgrade
|
|
128
|
+
## Upgrade terminal stays blank after clicking Upgrade
|
|
129
129
|
|
|
130
|
-
**Symptom:** You clicked **Upgrade**, the
|
|
130
|
+
**Symptom:** You clicked **Upgrade**, the terminal area mounted, but the terminal stays empty for more than about 60 seconds with no output.
|
|
131
131
|
|
|
132
132
|
**What it means:** The upgrade command was dispatched successfully (`onReady` fired), but `ttyd` is not relaying any bytes back from the installer — the `npx` process may have crashed before it printed anything, or `ttyd` itself has lost its PTY.
|
|
133
133
|
|
|
@@ -137,7 +137,7 @@ Then return to the upgrade window and click **Try again**. The window re-probes
|
|
|
137
137
|
sudo systemctl --user status maxy-ttyd
|
|
138
138
|
```
|
|
139
139
|
|
|
140
|
-
If it's not running, restart it with `sudo systemctl --user restart maxy-ttyd`. Then close and reopen the Software Update window. If `ttyd` is healthy and the
|
|
140
|
+
If it's not running, restart it with `sudo systemctl --user restart maxy-ttyd`. Then close and reopen the Software Update window. If `ttyd` is healthy and the terminal stays empty, the installer process itself has died — re-run `npx -y @rubytech/create-maxy@latest` from an SSH shell directly.
|
|
141
141
|
|
|
142
142
|
## Orphan Account Directory Archived to `.trash/`
|
|
143
143
|
|