ai-remote 0.4.11 → 0.4.13
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/SKILL.md +4 -1
- package/dist/cli.mjs +616 -118
- package/package.json +1 -1
package/SKILL.md
CHANGED
|
@@ -201,6 +201,9 @@ fresh `shot` rather than trusting one from before you paused.
|
|
|
201
201
|
toolbar, and the gate is enforced in the session rather than in the page.
|
|
202
202
|
- `--headless` (or `--no-view`) on a server or in CI. The framebuffer is the
|
|
203
203
|
authority either way, so a session nobody watches is not a lesser session.
|
|
204
|
+
- `--fullscreen` fills the display and makes RDP use the current monitor's
|
|
205
|
+
logical resolution. Add `--side-panel` to `open` to start with a fixed-width
|
|
206
|
+
SSH terminal docked on the right; its 420 pixels are removed from RDP width.
|
|
204
207
|
- `ai-remote view` adds a window to a headless session later (`view --watch-only`
|
|
205
208
|
for an observer one); `view --close` takes it away without ending the session.
|
|
206
209
|
|
|
@@ -257,7 +260,7 @@ what `status` reports rather than what you asked for.
|
|
|
257
260
|
|
|
258
261
|
```bash
|
|
259
262
|
export AI_REMOTE_PASSWORD=...
|
|
260
|
-
npx ai-remote open HOST[:PORT] -u USER [-d DOMAIN] [--session NAME] [--
|
|
263
|
+
npx ai-remote open HOST[:PORT] -u USER [-d DOMAIN] [--session NAME] [--fullscreen] [--side-panel]
|
|
261
264
|
npx ai-remote open HOST --ssh -u USER [-i ~/.ssh/id_ed25519] # a terminal, no desktop
|
|
262
265
|
npx ai-remote open HOST --vnc -u USER # a screen over VNC
|
|
263
266
|
npx ai-remote vnc # ...or add one to this session
|