skydive-cli 0.5.0-beta.48 → 0.5.0-beta.52
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/CHANGELOG.md +2 -0
- package/README.md +25 -8
- package/dist/js/bin.mjs +20 -20
- package/dist/js/{boot-BoqVFa4M.mjs → boot-D_VFIRJj.mjs} +301 -252
- package/dist/js/client-CkPQG8M1.mjs +5 -0
- package/dist/js/{client-C2lPer4b.mjs → client-aFwHzCPG.mjs} +99 -8
- package/dist/js/{daemon-B57zYVAN.mjs → daemon-CORAITjj.mjs} +2 -2
- package/dist/js/{daemon-client-Btr9rmKl.mjs → daemon-client-Cfi66Xy9.mjs} +1 -1
- package/dist/js/daemon-client-DJPW9cRp.mjs +8 -0
- package/dist/js/{daemon-B7Wv4P6W.mjs → daemon-uzpOdRPL.mjs} +2 -2
- package/dist/js/{install-BOtarTEl.mjs → install-BBplm-Zp.mjs} +2 -2
- package/dist/js/{print-ejS3eAZz.mjs → print-Cuao6LN6.mjs} +2 -2
- package/dist/js/{print-SD_y9CTF.mjs → print-DR6Gas-M.mjs} +5 -5
- package/dist/js/{print-share-D20YvVbb.mjs → print-share-BypBUrNh.mjs} +2 -2
- package/dist/js/{rest-Cz-aN-ME.mjs → rest-CJkBP2Jz.mjs} +1 -1
- package/dist/js/{rest-B-dizrBw.mjs → rest-DkuT5_oX.mjs} +1 -1
- package/package.json +5 -5
- package/dist/js/client-CSKr4Swa.mjs +0 -5
- package/dist/js/daemon-client-DL3eNr6N.mjs +0 -8
package/CHANGELOG.md
CHANGED
|
@@ -9,6 +9,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
9
9
|
|
|
10
10
|
### Changed
|
|
11
11
|
|
|
12
|
+
- The chat TUI status bar now always shows where the portal stands, instead of only lighting up once everything already worked. It reads `portal off`, `portal connecting`, `portal on` (open on this machine, but this agent has no grant), `portal shared` (green — this agent can run commands here), `portal error`, or `portal unavailable` when you signed in with an API key and no portal is possible. Previously the badge rendered nothing in every one of those states, so "why can't the agent reach my machine?" had no answer on screen.
|
|
13
|
+
- One word for that feature across the whole CLI: **portal**. The footer hint is now `ctrl+t portal` / `ctrl+t close portal` (was `local access` / `revoke access`), `/status` reports a `portal` row (was `local access`), and `/share` and `/portal` describe themselves as opening the portal and granting an agent access to your machine. `/portal` used to say "access your computer", which collided with `/computer` — that command still means the **agent's** sandbox, and "computer" stays reserved for it. `--share-machine` and the `shareMachineDefault` config key are unchanged.
|
|
12
14
|
- `npm i -g skydive-cli` (and yarn/pnpm/bun) now installs a tiny launcher plus one prebuilt, os/cpu-matched binary that carries its own runtime — so on the common platforms `skydive chat` and `skydive import` start instantly and **do not download a Bun runtime on first use**. On any platform without a prebuilt binary (or if the optional dependency is skipped), the CLI automatically falls back to the existing behavior: it runs under your Node and provisions Bun on first `chat`, exactly as before. Nothing about the commands, flags, config, or `SKYDIVE_*` environment variables changes, and `skydive update` still upgrades npm installs via your package manager and standalone-binary installs in place.
|
|
13
15
|
|
|
14
16
|
### Added
|
package/README.md
CHANGED
|
@@ -86,7 +86,7 @@ The flow doesn't require a TTY: in a non-interactive shell (an agent harness,
|
|
|
86
86
|
SSH without a display) `auth login` still prints the verification URL + code
|
|
87
87
|
and waits — open the link in any browser to approve. For unattended CI, skip
|
|
88
88
|
the wait entirely and pass an existing key (mint one at
|
|
89
|
-
`skydive.com/settings/
|
|
89
|
+
`skydive.com/settings/workspace`):
|
|
90
90
|
|
|
91
91
|
```sh
|
|
92
92
|
skydive auth login --api-key sky_live_… # or set SKYDIVE_API_KEY
|
|
@@ -381,19 +381,36 @@ Messages typed while a response is streaming are **queued** and sent in
|
|
|
381
381
|
order as each run finishes; `ctrl+c` cancels the current run and clears the
|
|
382
382
|
queue.
|
|
383
383
|
|
|
384
|
-
###
|
|
384
|
+
### The portal: running commands on your machine (`--share-machine` / `ctrl+t`)
|
|
385
385
|
|
|
386
|
-
The
|
|
387
|
-
|
|
388
|
-
|
|
386
|
+
The **portal** is how an agent runs commands **on your own machine** — so it can
|
|
387
|
+
read the repo you launched from, run local tooling, and so on. (Not to be
|
|
388
|
+
confused with the agent's own computer, its sandbox, which `/computer` and
|
|
389
|
+
`skydive sandbox` reach.) The portal is off by default (default-deny) and you
|
|
390
|
+
opt in explicitly:
|
|
389
391
|
|
|
390
392
|
- `skydive chat --share-machine` enables it at launch, or
|
|
391
|
-
- `ctrl+t`
|
|
392
|
-
when on, `revoke access` when off), or
|
|
393
|
+
- `ctrl+t` opens and closes it from the chat screen, or
|
|
393
394
|
- set `"shareMachineDefault": true` in the CLI config file to share on every
|
|
394
395
|
launch (see [Configuration](#configuration); `--no-share-machine` overrides
|
|
395
396
|
once).
|
|
396
397
|
|
|
398
|
+
The status bar always says where the portal stands, so you never have to guess
|
|
399
|
+
why an agent can't reach you:
|
|
400
|
+
|
|
401
|
+
| badge | meaning |
|
|
402
|
+
| -------------------- | ------------------------------------------------------------------------------------ |
|
|
403
|
+
| `portal off` | not open on this machine — `ctrl+t` opens it |
|
|
404
|
+
| `portal connecting` | dialing |
|
|
405
|
+
| `portal on` | open, but the agent you're chatting with has no grant |
|
|
406
|
+
| `portal shared` | open **and** this agent can run commands here |
|
|
407
|
+
| `portal error` | the connection is broken; `/portal` shows why |
|
|
408
|
+
| `portal unavailable` | this session can't open one (API-key auth — sign in with `skydive auth login --web`) |
|
|
409
|
+
|
|
410
|
+
The two facts are separate on purpose: the connection belongs to the machine,
|
|
411
|
+
the grant belongs to one agent. `portal on` means the plumbing is up and this
|
|
412
|
+
particular agent still isn't in.
|
|
413
|
+
|
|
397
414
|
What to know before enabling it:
|
|
398
415
|
|
|
399
416
|
- **Per-agent.** The grant is scoped to the agent you're chatting with; other
|
|
@@ -422,7 +439,7 @@ What to know before enabling it:
|
|
|
422
439
|
agents can run, but an ungranted agent still needs `skydive portal grant`
|
|
423
440
|
(or an approved request).
|
|
424
441
|
|
|
425
|
-
### Headless
|
|
442
|
+
### Headless portal access (`skydive portal`)
|
|
426
443
|
|
|
427
444
|
`skydive portal` manages machine sharing without the TUI, for scripts, CI-ish
|
|
428
445
|
environments, and driving agents from other tools:
|
package/dist/js/bin.mjs
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
import { o as name, s as version, t as createRestClient } from "./rest-
|
|
3
|
-
import { B as resolveSession$1, C as deleteConfig, D as getPreference, E as getLastSeenVersion, G as setLastSeenVersion, H as saveConfig, I as resolveAppUrl, L as resolveChatAuth, M as getStoredApiKeyId, N as getStoredApiKeyWorkspaceName, O as getPromptHistoryPath, P as getUpdateCheckDisabled, R as resolveConfig, S as PREFERENCES, T as getDefaultAgent, U as saveSession, _ as API_KEYS_URL, b as DEFAULT_API_URL, i as resolveAgent$1, j as getShareMachineDefault, v as API_KEY_FAMILY_PREFIX, w as getConfigPath, y as API_KEY_PREFIX, z as resolveManagementAuth } from "./print-
|
|
4
|
-
import { A as installAgentAlias, B as resolveWorkspaceId, D as machineOsFromPlatform, E as buildImportSeedPrompt, F as detectShell, I as ensureActiveOrganization, L as getActiveWorkspaceId, M as takenAliasNames, N as SUPPORTED_SHELLS, O as aliasActivationHint, P as defaultInstallEnv, R as getSessionIdentity, V as setActiveWorkspace, c as getAutomaticLogsDir, j as slugifyAliasName, k as dedupeAliasName, l as maybeStartProfiling, o as brandHelpArt, t as installCrashHandler, u as profileDir, w as themes, z as listWorkspaces } from "./install-
|
|
2
|
+
import { o as name, s as version, t as createRestClient } from "./rest-DkuT5_oX.mjs";
|
|
3
|
+
import { B as resolveSession$1, C as deleteConfig, D as getPreference, E as getLastSeenVersion, G as setLastSeenVersion, H as saveConfig, I as resolveAppUrl, L as resolveChatAuth, M as getStoredApiKeyId, N as getStoredApiKeyWorkspaceName, O as getPromptHistoryPath, P as getUpdateCheckDisabled, R as resolveConfig, S as PREFERENCES, T as getDefaultAgent, U as saveSession, _ as API_KEYS_URL, b as DEFAULT_API_URL, i as resolveAgent$1, j as getShareMachineDefault, v as API_KEY_FAMILY_PREFIX, w as getConfigPath, y as API_KEY_PREFIX, z as resolveManagementAuth } from "./print-DR6Gas-M.mjs";
|
|
4
|
+
import { A as installAgentAlias, B as resolveWorkspaceId, D as machineOsFromPlatform, E as buildImportSeedPrompt, F as detectShell, I as ensureActiveOrganization, L as getActiveWorkspaceId, M as takenAliasNames, N as SUPPORTED_SHELLS, O as aliasActivationHint, P as defaultInstallEnv, R as getSessionIdentity, V as setActiveWorkspace, c as getAutomaticLogsDir, j as slugifyAliasName, k as dedupeAliasName, l as maybeStartProfiling, o as brandHelpArt, t as installCrashHandler, u as profileDir, w as themes, z as listWorkspaces } from "./install-BBplm-Zp.mjs";
|
|
5
5
|
import { n as printError, r as printTable, t as output } from "./output-C9mb3sUB.mjs";
|
|
6
6
|
import { t as HttpError } from "./http-error-BF2NZZE3.mjs";
|
|
7
7
|
import "./billing-blocked-D3l5kJlX.mjs";
|
|
8
|
-
import { r as resolveMachineIdentity } from "./client-
|
|
9
|
-
import { d as daemonPaths, i as queryDaemonStatus, n as ensureDaemonRunning, s as stopDaemon, u as PORTAL_DAEMON_FLAG } from "./daemon-
|
|
8
|
+
import { r as resolveMachineIdentity } from "./client-aFwHzCPG.mjs";
|
|
9
|
+
import { d as daemonPaths, i as queryDaemonStatus, n as ensureDaemonRunning, s as stopDaemon, u as PORTAL_DAEMON_FLAG } from "./daemon-uzpOdRPL.mjs";
|
|
10
10
|
import "./tls-cert-CV-pwxVN.mjs";
|
|
11
11
|
import { i as grantPortalAccess, n as fetchPortalDevices, o as registerPortalDevice, r as findThisDevice, s as revokePortalAccess } from "./api-TwLD7ibI.mjs";
|
|
12
12
|
import { a as encodeFsRequest, i as decodeFsResponse, n as SANDBOX_STREAM_PATH, r as streamSpecToQuery, t as SandboxStream } from "./client-Btq6bMzX.mjs";
|
|
@@ -1588,7 +1588,7 @@ const importCommand = {
|
|
|
1588
1588
|
process.exit(1);
|
|
1589
1589
|
}
|
|
1590
1590
|
}
|
|
1591
|
-
const { runChat } = await import("./boot-
|
|
1591
|
+
const { runChat } = await import("./boot-D_VFIRJj.mjs");
|
|
1592
1592
|
await runChat({
|
|
1593
1593
|
appUrl,
|
|
1594
1594
|
sessionToken: session.value.sessionToken,
|
|
@@ -1618,7 +1618,7 @@ async function runImportPrintMode({ argv, appUrl }) {
|
|
|
1618
1618
|
printError(`${session.error.message} For non-interactive use, run \`skydive auth login --web\` first, or set SKYDIVE_SESSION_TOKEN.`);
|
|
1619
1619
|
process.exit(1);
|
|
1620
1620
|
}
|
|
1621
|
-
const { connectMachineShare } = await import("./print-share-
|
|
1621
|
+
const { connectMachineShare } = await import("./print-share-BypBUrNh.mjs");
|
|
1622
1622
|
const machineShare = await connectMachineShare({
|
|
1623
1623
|
appUrl,
|
|
1624
1624
|
sessionToken: session.value.sessionToken,
|
|
@@ -1626,7 +1626,7 @@ async function runImportPrintMode({ argv, appUrl }) {
|
|
|
1626
1626
|
});
|
|
1627
1627
|
const extra = (argv.print ?? "").trim();
|
|
1628
1628
|
const prompt = buildImportSeedPrompt(process.cwd(), machineOsFromPlatform(process.platform)) + (extra ? `\n\nAdditional instructions: ${extra}` : "");
|
|
1629
|
-
const { runPrint } = await import("./print-
|
|
1629
|
+
const { runPrint } = await import("./print-Cuao6LN6.mjs");
|
|
1630
1630
|
try {
|
|
1631
1631
|
const result = await runPrint({
|
|
1632
1632
|
appUrl,
|
|
@@ -2033,7 +2033,7 @@ const chatCommand = {
|
|
|
2033
2033
|
sessionToken: auth.value.token,
|
|
2034
2034
|
agentSelector: argv.agent ?? null
|
|
2035
2035
|
});
|
|
2036
|
-
const { runChat } = await import("./boot-
|
|
2036
|
+
const { runChat } = await import("./boot-D_VFIRJj.mjs");
|
|
2037
2037
|
await runChat({
|
|
2038
2038
|
appUrl: auth.value.appUrl,
|
|
2039
2039
|
sessionToken: auth.value.token,
|
|
@@ -2117,7 +2117,7 @@ async function runPrintMode({ argv, appUrl }) {
|
|
|
2117
2117
|
printError(`${auth.error.message} For non-interactive use, run \`skydive auth login\` first, or set SKYDIVE_API_KEY / SKYDIVE_SESSION_TOKEN.`);
|
|
2118
2118
|
process.exit(1);
|
|
2119
2119
|
}
|
|
2120
|
-
const { runPrint, readStdin } = await import("./print-
|
|
2120
|
+
const { runPrint, readStdin } = await import("./print-Cuao6LN6.mjs");
|
|
2121
2121
|
const workspaceId = await resolveWorkspaceFlag({
|
|
2122
2122
|
appUrl,
|
|
2123
2123
|
sessionToken: auth.value.token,
|
|
@@ -2147,7 +2147,7 @@ async function runPrintMode({ argv, appUrl }) {
|
|
|
2147
2147
|
process.exit(1);
|
|
2148
2148
|
}
|
|
2149
2149
|
} else {
|
|
2150
|
-
const { connectMachineShare } = await import("./print-share-
|
|
2150
|
+
const { connectMachineShare } = await import("./print-share-BypBUrNh.mjs");
|
|
2151
2151
|
machineShare = await connectMachineShare({
|
|
2152
2152
|
appUrl: auth.value.appUrl,
|
|
2153
2153
|
sessionToken: auth.value.token,
|
|
@@ -2212,7 +2212,7 @@ const getCommand$1 = {
|
|
|
2212
2212
|
printError(`${auth.error.message} Run \`skydive auth login\` first, or set SKYDIVE_API_KEY / SKYDIVE_SESSION_TOKEN.`);
|
|
2213
2213
|
process.exit(1);
|
|
2214
2214
|
}
|
|
2215
|
-
const { messageGet } = await import("./print-
|
|
2215
|
+
const { messageGet } = await import("./print-Cuao6LN6.mjs");
|
|
2216
2216
|
try {
|
|
2217
2217
|
const result = await messageGet({
|
|
2218
2218
|
appUrl: auth.value.appUrl,
|
|
@@ -2415,7 +2415,7 @@ const switchCommand = {
|
|
|
2415
2415
|
printError("The workspace picker needs the Bun runtime and it could not be set up automatically. Pass a workspace slug instead, or install Bun and retry.");
|
|
2416
2416
|
process.exit(1);
|
|
2417
2417
|
}
|
|
2418
|
-
const { runWorkspacePicker } = await import("./boot-
|
|
2418
|
+
const { runWorkspacePicker } = await import("./boot-D_VFIRJj.mjs");
|
|
2419
2419
|
await runWorkspacePicker(session);
|
|
2420
2420
|
return;
|
|
2421
2421
|
}
|
|
@@ -2494,7 +2494,7 @@ const openCommand = {
|
|
|
2494
2494
|
const agent = argv.agent ? resolveAgent$1((await fetchPortalDevices(session)).agents, argv.agent) : null;
|
|
2495
2495
|
const cwd = argv.cwd ? path.resolve(argv.cwd) : process.cwd();
|
|
2496
2496
|
const { machineName } = await resolveMachineIdentity(null);
|
|
2497
|
-
const { PortalDaemonClient } = await import("./daemon-client-
|
|
2497
|
+
const { PortalDaemonClient } = await import("./daemon-client-DJPW9cRp.mjs");
|
|
2498
2498
|
let lastLine = "";
|
|
2499
2499
|
let signalConnected;
|
|
2500
2500
|
const connected = new Promise((resolve) => {
|
|
@@ -2808,8 +2808,8 @@ const sandboxCommand = {
|
|
|
2808
2808
|
}).example("skydive sandbox --agent grace", "Live terminal (Ctrl-] detaches)").example("skydive sandbox --agent grace -- tail -n 50 /tmp/harness.log", "One-shot command (use `--` so its flags reach the sandbox)").example("skydive sandbox --agent grace -- sh -c 'ls /tmp | wc -l'", "Shell features go through an explicit `sh -c`"),
|
|
2809
2809
|
handler: async (argv) => {
|
|
2810
2810
|
const session = requireSession(argv);
|
|
2811
|
-
const { createRestClient } = await import("./rest-
|
|
2812
|
-
const { resolveAgent } = await import("./print-
|
|
2811
|
+
const { createRestClient } = await import("./rest-CJkBP2Jz.mjs");
|
|
2812
|
+
const { resolveAgent } = await import("./print-Cuao6LN6.mjs");
|
|
2813
2813
|
const client = createRestClient({
|
|
2814
2814
|
appUrl: session.appUrl,
|
|
2815
2815
|
sessionToken: session.sessionToken
|
|
@@ -3077,8 +3077,8 @@ const fsEditCommand = {
|
|
|
3077
3077
|
handler: async (argv) => {
|
|
3078
3078
|
const session = requireSession(argv);
|
|
3079
3079
|
const remotePath = argv.path;
|
|
3080
|
-
const { createRestClient } = await import("./rest-
|
|
3081
|
-
const { resolveAgent } = await import("./print-
|
|
3080
|
+
const { createRestClient } = await import("./rest-CJkBP2Jz.mjs");
|
|
3081
|
+
const { resolveAgent } = await import("./print-Cuao6LN6.mjs");
|
|
3082
3082
|
const client = createRestClient({
|
|
3083
3083
|
appUrl: session.appUrl,
|
|
3084
3084
|
sessionToken: session.sessionToken
|
|
@@ -4405,7 +4405,7 @@ function setupUpdateCheck(argv) {
|
|
|
4405
4405
|
|
|
4406
4406
|
//#endregion
|
|
4407
4407
|
//#region src/changelog.generated.ts
|
|
4408
|
-
const CHANGELOG_MD = "# Changelog\n\nAll notable changes to the Skydive CLI are documented here.\n\nThe format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),\nand this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).\n\n## [Unreleased]\n\n### Changed\n\n- `npm i -g skydive-cli` (and yarn/pnpm/bun) now installs a tiny launcher plus one prebuilt, os/cpu-matched binary that carries its own runtime — so on the common platforms `skydive chat` and `skydive import` start instantly and **do not download a Bun runtime on first use**. On any platform without a prebuilt binary (or if the optional dependency is skipped), the CLI automatically falls back to the existing behavior: it runs under your Node and provisions Bun on first `chat`, exactly as before. Nothing about the commands, flags, config, or `SKYDIVE_*` environment variables changes, and `skydive update` still upgrades npm installs via your package manager and standalone-binary installs in place.\n\n### Added\n\n- `platform ask` forms now render in the chat TUI. The card lists each question with lettered options (A/B/C/D plus Other); `ctrl+r` opens a full overlay picker (one question at a time, arrows + enter, Other as a typed row — the Claude Code interaction). The answer sends as a normal message. Headless `chat -p` prints the question as an `[action needed]` block instead of dropping it.\n- Every API request now reports this install's version (`x-skydive-cli-version`) so the server can refuse features the installed CLI cannot render — `platform ask` needs the #21411 canary (`0.5.0-beta.43` or newer), not 0.4.0 and not earlier 0.5.0 betas.\n- `/search` (alias `/find`) in the chat TUI — opens the conversation picker with its search field focused, so \"find a conversation\" has a discoverable command instead of being a feature you had to know the bare picker already had. Pass a query inline (`/search billing deep dive`) and the picker opens already narrowed to the matches; bare `/search` opens it ready for you to type. The search runs server-side across conversation titles, message bodies, and participant names, the same search the picker exposes.\n- First run in a workspace with no agents now sets you up automatically: instead of dropping you on an empty agent picker, `skydive` creates your first agent for you (with a suggested name and avatar, mirroring the web onboarding flow) and then offers to have it learn how you already work — reading the other coding agents set up on your machine (Claude Code, Cursor, Codex, and more), the same import that `skydive import` runs, with a plan shown first and credentials never copied. Decline and you go straight into the new agent's chat. You can replay this flow anytime with `skydive --onboarding` (or `SKYDIVE_FORCE_ONBOARDING=1`), even in a workspace that already has agents.\n- `/computer` in the chat TUI — a snapshot of the agent's sandbox drawn as colored bar graphs: CPU, memory, and disk usage. Bars turn amber past 75%% and red past 90%% so a glance tells you whether the box is under pressure. The numbers come from the Skydive API (the same live resource sample the web computer view reads), not by connecting to the sandbox — so the card shows instantly, never waking or hanging on a box that isn't running: when the agent has no live sandbox it simply reads \"no sandbox running\". The card keeps itself current quietly (a slow background refresh, no flicker or \"updating\" chrome); only the most recent card refreshes, and it silently stops while you're scrolled up (no wasted polls on a card you're not looking at) and resumes at the bottom.\n- `/computer restart` in the chat TUI — reboot the agent's sandbox from chat. It asks a `y`/`n` confirm first (the restart stops whatever run is going and brings up a fresh box), then enqueues the same restart the web \"Restart\" control does. Available to anyone with edit access to the agent; view-only members are told they can't.\n- `skydive fs` — a namespace for working with the files on an agent's computer (its sandbox) from your own machine. Its first subcommand, `skydive fs edit <path>`, reads a remote file down over the same relay `skydive sandbox` uses, opens it in your local editor (`$VISUAL`/`$EDITOR`, override with `--editor`, defaults to `vi`), and writes your changes back atomically when you save and close — so you can edit a remote file as if it were local without opening the chat TUI. A path that doesn't exist yet is created on save; no changes means nothing is written. Access is gated on EDIT permission for the agent, exactly like `skydive sandbox`. (A first-class `fs` relay channel and `skydive fs mount` land in follow-ups.)\n\n## [0.4.0] - 2026-08-07\n\n### Added\n\n- `skydive chat` works with API key auth: an API key alone now opens the chat TUI (and headless `chat -p`) without a browser login, using the key's pinned workspace.\n- `skydive config` command to view and set the safe, hand-editable CLI preferences (`shareMachineDefault`, `updateCheck`) without opening `config.json`. `config`/`config list` shows each key, its effective value, and whether it comes from the file or the built-in default; `config get`/`set`/`unset` read and change one key; `config path` prints the config file location. It only ever touches those preference keys, never credentials or flow-managed state.\n- Billing-blocked sends and runs now surface the server-authored recovery\n guidance from the typed billing outcome. The chat TUI renders it as a\n warning-toned system-notice row — live when a send is refused or a run is\n stopped at the billing boundary, and again when reopening a conversation\n that holds a persisted billing notice — instead of a generic error.\n Headless `chat -p` and `messages get` print the guidance (state, recovery\n step, and manage-billing URL) on stderr, keep any partial output already\n streamed on stdout, and exit with code `5` (distinct from the generic `1`)\n so scripted callers can tell a billing pause from a failure.\n- Syntax highlighting for 14 more languages in the chat transcript and file/review panes (python, bash, go, rust, c, cpp, java, ruby, css, html, json, yaml, and more) — previously only JavaScript/TypeScript rendered colored.\n\n### Changed\n\n- `skydive agent list` lists the full agent roster by default instead of a truncated page.\n\n### Fixed\n\n- Long multi-line bash tool-call commands (e.g. heredocs) are clamped with a `+N more · click to expand` tail instead of dumping their whole body into the scrollback.\n- Tool error output is clipped the same way as ok output, so a failing command no longer floods the transcript.\n- The TUI toast overlay has an opaque background instead of letting the transcript bleed through.\n\n## [0.3.0] - 2026-08-04\n\n### Added\n\n**Chat TUI**\n\n- `/fork` slash command to fork a conversation at any point and continue in a new thread.\n- `/conversation` switches threads from inside a live session.\n- `/compact` triggers manual conversation compaction.\n- `/portal` and `/copy` slash commands.\n- Archive the current conversation from the chat TUI.\n- `--new` flag on `skydive chat` to start a fresh conversation.\n- Debounced server-side conversation search in the picker, with title matches ranked first.\n- File review pane orientation toggle, and review comments in the file pane.\n- Pinned plan card controls and a jump-to-latest hint.\n- Terminal title (OSC) follows the live conversation title on every screen; inside cmux the workspace is renamed too, and linked PRs are pushed to the cmux sidebar.\n- Every participating agent shows in the conversation list; connect cards each have their own identity, and ctrl+r asks which connect card to act on.\n- Colored Skydive splash art in `skydive --help` and the TUI pickers.\n- New-agent name prefilled from the server's suggestion.\n\n**CLI & platform**\n\n- `skydive update` self-updater, with an update notice when a new version is available.\n- Shell completions for bash, zsh, and fish via `completion install`.\n- Portal daemon: one connection per host with per-conversation working directories.\n- Agent-led coding-agent import (`skydive import`).\n- Per-workspace scoping on the REST client, and cross-org `--agent <uuid>` auto-switches workspace.\n- `skydive-beta` wrapper for the canary channel.\n\n### Fixed\n\n- `skydive update` no longer claims an update is available on every npm install.\n- Chat memory is bounded (payload clamps + windowed rows) with a memory watchdog and OOM diagnostic report; transcript rows are memoized so streaming stops re-rendering the whole chat.\n- Chat-send failures map to real error messages.\n- Notification and sidebar previews use the last text block of the reply and strip inline markdown.\n- Picker rows no longer overlap when a conversation title contains a newline, tab, or control character.\n- Sending to non-web channel conversations is blocked in the TUI.\n- GitHub bot connect opens on the web front door, not api.skydive.com.\n- TUI activity counter times from the run, not the screen.\n\n## [0.2.0] - 2026-07-29\n\n### Added\n\n**Sandbox & machine access**\n\n- Standalone `skydive sandbox` command for direct access to an agent's sandbox.\n- `/sandbox` in the chat TUI — live PTY session and one-shot command execution.\n- Headless machine sharing via `skydive portal`, with self-registering portal grants.\n- `shareMachineDefault` config key for always-on portal sharing.\n\n**Chat TUI**\n\n- File pane (`ctrl+g`) with Changes and Files tabs: a shared file tree plus source viewer and a workspace browser, mouse-resizable and responsive to terminal size.\n- Agent todo list rendered in the chat TUI, above the composer, mirroring the web chat's todo card.\n- Fuzzy finder in the conversation and agent pickers.\n- Slash-command autocomplete menu.\n- Paste or drag-and-drop any file into the composer; paste clipboard images with Cmd+V.\n- Run local shell commands with `!` in the composer.\n- Conversation recaps, streamed live title updates, and per-agent attribution on assistant turns.\n- Working timer rolls up into minutes and hours.\n- Conversation picker paginates past 50 conversations and shows only your own conversations.\n- Esc leaves a live run; typing `exit` quits the chat.\n- Cursor Dark theme.\n- Picker rows no longer overlap when a conversation title contains a newline, tab, or control character.\n\n**Headless & scripting**\n\n- Resume a conversation by id.\n- `conversations list` and `conversations show` for transcript reads.\n- `messages get`, with run recovery keyed on message id.\n- Connect cards surface in headless `-p` mode so a driving agent never gets stuck.\n\n**Authentication**\n\n- `skydive auth login` via the browser now auto-mints an API key, so one login yields both a chat session and a usable management credential. Management commands announce the key's pinned workspace when it drives them, so a workspace mismatch is visible at use time.\n- Workspace picker on the device authorization page.\n- Account and workspace identity shown in `auth status`.\n\n**Platform**\n\n- Standalone binary builds compiling the CLI into a per-target executable.\n- Interactive workspace switcher; management commands follow the active workspace.\n- Terminal host integrations and agent notifications.\n\n### Fixed\n\n- Transcript errors collapse to one line, click to expand (REST and portal errors keep their full body).\n- Dragged/pasted image file paths attach the file instead of inserting path text, including macOS paths with literal parentheses.\n- Bare URLs in chat markdown are hyperlinked so they survive text wrap.\n- Composer draft is preserved across TUI overlays.\n- Relative connect links resolve before opening the browser.\n- Numbered markdown headings render colored in the TUI.\n- Chat transcript pages by 75% of a screen; picker rows stay on one line.\n- Run starts push to the TUI over the conversation stream.\n- Security: remediated high-severity dependency findings and cleared tar/shell-quote CVEs.\n\n## [0.1.0] - 2026-07-21\n\nInitial public release: `skydive chat` TUI, agent and conversation management,\ndevice authorization, and headless `-p` mode.\n";
|
|
4408
|
+
const CHANGELOG_MD = "# Changelog\n\nAll notable changes to the Skydive CLI are documented here.\n\nThe format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),\nand this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).\n\n## [Unreleased]\n\n### Changed\n\n- The chat TUI status bar now always shows where the portal stands, instead of only lighting up once everything already worked. It reads `portal off`, `portal connecting`, `portal on` (open on this machine, but this agent has no grant), `portal shared` (green — this agent can run commands here), `portal error`, or `portal unavailable` when you signed in with an API key and no portal is possible. Previously the badge rendered nothing in every one of those states, so \"why can't the agent reach my machine?\" had no answer on screen.\n- One word for that feature across the whole CLI: **portal**. The footer hint is now `ctrl+t portal` / `ctrl+t close portal` (was `local access` / `revoke access`), `/status` reports a `portal` row (was `local access`), and `/share` and `/portal` describe themselves as opening the portal and granting an agent access to your machine. `/portal` used to say \"access your computer\", which collided with `/computer` — that command still means the **agent's** sandbox, and \"computer\" stays reserved for it. `--share-machine` and the `shareMachineDefault` config key are unchanged.\n- `npm i -g skydive-cli` (and yarn/pnpm/bun) now installs a tiny launcher plus one prebuilt, os/cpu-matched binary that carries its own runtime — so on the common platforms `skydive chat` and `skydive import` start instantly and **do not download a Bun runtime on first use**. On any platform without a prebuilt binary (or if the optional dependency is skipped), the CLI automatically falls back to the existing behavior: it runs under your Node and provisions Bun on first `chat`, exactly as before. Nothing about the commands, flags, config, or `SKYDIVE_*` environment variables changes, and `skydive update` still upgrades npm installs via your package manager and standalone-binary installs in place.\n\n### Added\n\n- `platform ask` forms now render in the chat TUI. The card lists each question with lettered options (A/B/C/D plus Other); `ctrl+r` opens a full overlay picker (one question at a time, arrows + enter, Other as a typed row — the Claude Code interaction). The answer sends as a normal message. Headless `chat -p` prints the question as an `[action needed]` block instead of dropping it.\n- Every API request now reports this install's version (`x-skydive-cli-version`) so the server can refuse features the installed CLI cannot render — `platform ask` needs the #21411 canary (`0.5.0-beta.43` or newer), not 0.4.0 and not earlier 0.5.0 betas.\n- `/search` (alias `/find`) in the chat TUI — opens the conversation picker with its search field focused, so \"find a conversation\" has a discoverable command instead of being a feature you had to know the bare picker already had. Pass a query inline (`/search billing deep dive`) and the picker opens already narrowed to the matches; bare `/search` opens it ready for you to type. The search runs server-side across conversation titles, message bodies, and participant names, the same search the picker exposes.\n- First run in a workspace with no agents now sets you up automatically: instead of dropping you on an empty agent picker, `skydive` creates your first agent for you (with a suggested name and avatar, mirroring the web onboarding flow) and then offers to have it learn how you already work — reading the other coding agents set up on your machine (Claude Code, Cursor, Codex, and more), the same import that `skydive import` runs, with a plan shown first and credentials never copied. Decline and you go straight into the new agent's chat. You can replay this flow anytime with `skydive --onboarding` (or `SKYDIVE_FORCE_ONBOARDING=1`), even in a workspace that already has agents.\n- `/computer` in the chat TUI — a snapshot of the agent's sandbox drawn as colored bar graphs: CPU, memory, and disk usage. Bars turn amber past 75%% and red past 90%% so a glance tells you whether the box is under pressure. The numbers come from the Skydive API (the same live resource sample the web computer view reads), not by connecting to the sandbox — so the card shows instantly, never waking or hanging on a box that isn't running: when the agent has no live sandbox it simply reads \"no sandbox running\". The card keeps itself current quietly (a slow background refresh, no flicker or \"updating\" chrome); only the most recent card refreshes, and it silently stops while you're scrolled up (no wasted polls on a card you're not looking at) and resumes at the bottom.\n- `/computer restart` in the chat TUI — reboot the agent's sandbox from chat. It asks a `y`/`n` confirm first (the restart stops whatever run is going and brings up a fresh box), then enqueues the same restart the web \"Restart\" control does. Available to anyone with edit access to the agent; view-only members are told they can't.\n- `skydive fs` — a namespace for working with the files on an agent's computer (its sandbox) from your own machine. Its first subcommand, `skydive fs edit <path>`, reads a remote file down over the same relay `skydive sandbox` uses, opens it in your local editor (`$VISUAL`/`$EDITOR`, override with `--editor`, defaults to `vi`), and writes your changes back atomically when you save and close — so you can edit a remote file as if it were local without opening the chat TUI. A path that doesn't exist yet is created on save; no changes means nothing is written. Access is gated on EDIT permission for the agent, exactly like `skydive sandbox`. (A first-class `fs` relay channel and `skydive fs mount` land in follow-ups.)\n\n## [0.4.0] - 2026-08-07\n\n### Added\n\n- `skydive chat` works with API key auth: an API key alone now opens the chat TUI (and headless `chat -p`) without a browser login, using the key's pinned workspace.\n- `skydive config` command to view and set the safe, hand-editable CLI preferences (`shareMachineDefault`, `updateCheck`) without opening `config.json`. `config`/`config list` shows each key, its effective value, and whether it comes from the file or the built-in default; `config get`/`set`/`unset` read and change one key; `config path` prints the config file location. It only ever touches those preference keys, never credentials or flow-managed state.\n- Billing-blocked sends and runs now surface the server-authored recovery\n guidance from the typed billing outcome. The chat TUI renders it as a\n warning-toned system-notice row — live when a send is refused or a run is\n stopped at the billing boundary, and again when reopening a conversation\n that holds a persisted billing notice — instead of a generic error.\n Headless `chat -p` and `messages get` print the guidance (state, recovery\n step, and manage-billing URL) on stderr, keep any partial output already\n streamed on stdout, and exit with code `5` (distinct from the generic `1`)\n so scripted callers can tell a billing pause from a failure.\n- Syntax highlighting for 14 more languages in the chat transcript and file/review panes (python, bash, go, rust, c, cpp, java, ruby, css, html, json, yaml, and more) — previously only JavaScript/TypeScript rendered colored.\n\n### Changed\n\n- `skydive agent list` lists the full agent roster by default instead of a truncated page.\n\n### Fixed\n\n- Long multi-line bash tool-call commands (e.g. heredocs) are clamped with a `+N more · click to expand` tail instead of dumping their whole body into the scrollback.\n- Tool error output is clipped the same way as ok output, so a failing command no longer floods the transcript.\n- The TUI toast overlay has an opaque background instead of letting the transcript bleed through.\n\n## [0.3.0] - 2026-08-04\n\n### Added\n\n**Chat TUI**\n\n- `/fork` slash command to fork a conversation at any point and continue in a new thread.\n- `/conversation` switches threads from inside a live session.\n- `/compact` triggers manual conversation compaction.\n- `/portal` and `/copy` slash commands.\n- Archive the current conversation from the chat TUI.\n- `--new` flag on `skydive chat` to start a fresh conversation.\n- Debounced server-side conversation search in the picker, with title matches ranked first.\n- File review pane orientation toggle, and review comments in the file pane.\n- Pinned plan card controls and a jump-to-latest hint.\n- Terminal title (OSC) follows the live conversation title on every screen; inside cmux the workspace is renamed too, and linked PRs are pushed to the cmux sidebar.\n- Every participating agent shows in the conversation list; connect cards each have their own identity, and ctrl+r asks which connect card to act on.\n- Colored Skydive splash art in `skydive --help` and the TUI pickers.\n- New-agent name prefilled from the server's suggestion.\n\n**CLI & platform**\n\n- `skydive update` self-updater, with an update notice when a new version is available.\n- Shell completions for bash, zsh, and fish via `completion install`.\n- Portal daemon: one connection per host with per-conversation working directories.\n- Agent-led coding-agent import (`skydive import`).\n- Per-workspace scoping on the REST client, and cross-org `--agent <uuid>` auto-switches workspace.\n- `skydive-beta` wrapper for the canary channel.\n\n### Fixed\n\n- `skydive update` no longer claims an update is available on every npm install.\n- Chat memory is bounded (payload clamps + windowed rows) with a memory watchdog and OOM diagnostic report; transcript rows are memoized so streaming stops re-rendering the whole chat.\n- Chat-send failures map to real error messages.\n- Notification and sidebar previews use the last text block of the reply and strip inline markdown.\n- Picker rows no longer overlap when a conversation title contains a newline, tab, or control character.\n- Sending to non-web channel conversations is blocked in the TUI.\n- GitHub bot connect opens on the web front door, not api.skydive.com.\n- TUI activity counter times from the run, not the screen.\n\n## [0.2.0] - 2026-07-29\n\n### Added\n\n**Sandbox & machine access**\n\n- Standalone `skydive sandbox` command for direct access to an agent's sandbox.\n- `/sandbox` in the chat TUI — live PTY session and one-shot command execution.\n- Headless machine sharing via `skydive portal`, with self-registering portal grants.\n- `shareMachineDefault` config key for always-on portal sharing.\n\n**Chat TUI**\n\n- File pane (`ctrl+g`) with Changes and Files tabs: a shared file tree plus source viewer and a workspace browser, mouse-resizable and responsive to terminal size.\n- Agent todo list rendered in the chat TUI, above the composer, mirroring the web chat's todo card.\n- Fuzzy finder in the conversation and agent pickers.\n- Slash-command autocomplete menu.\n- Paste or drag-and-drop any file into the composer; paste clipboard images with Cmd+V.\n- Run local shell commands with `!` in the composer.\n- Conversation recaps, streamed live title updates, and per-agent attribution on assistant turns.\n- Working timer rolls up into minutes and hours.\n- Conversation picker paginates past 50 conversations and shows only your own conversations.\n- Esc leaves a live run; typing `exit` quits the chat.\n- Cursor Dark theme.\n- Picker rows no longer overlap when a conversation title contains a newline, tab, or control character.\n\n**Headless & scripting**\n\n- Resume a conversation by id.\n- `conversations list` and `conversations show` for transcript reads.\n- `messages get`, with run recovery keyed on message id.\n- Connect cards surface in headless `-p` mode so a driving agent never gets stuck.\n\n**Authentication**\n\n- `skydive auth login` via the browser now auto-mints an API key, so one login yields both a chat session and a usable management credential. Management commands announce the key's pinned workspace when it drives them, so a workspace mismatch is visible at use time.\n- Workspace picker on the device authorization page.\n- Account and workspace identity shown in `auth status`.\n\n**Platform**\n\n- Standalone binary builds compiling the CLI into a per-target executable.\n- Interactive workspace switcher; management commands follow the active workspace.\n- Terminal host integrations and agent notifications.\n\n### Fixed\n\n- Transcript errors collapse to one line, click to expand (REST and portal errors keep their full body).\n- Dragged/pasted image file paths attach the file instead of inserting path text, including macOS paths with literal parentheses.\n- Bare URLs in chat markdown are hyperlinked so they survive text wrap.\n- Composer draft is preserved across TUI overlays.\n- Relative connect links resolve before opening the browser.\n- Numbered markdown headings render colored in the TUI.\n- Chat transcript pages by 75% of a screen; picker rows stay on one line.\n- Run starts push to the TUI over the conversation stream.\n- Security: remediated high-severity dependency findings and cleared tar/shell-quote CVEs.\n\n## [0.1.0] - 2026-07-21\n\nInitial public release: `skydive chat` TUI, agent and conversation management,\ndevice authorization, and headless `-p` mode.\n";
|
|
4409
4409
|
|
|
4410
4410
|
//#endregion
|
|
4411
4411
|
//#region src/whats-new.ts
|
|
@@ -4548,7 +4548,7 @@ if (process.argv.includes(UPDATE_WORKER_FLAG)) {
|
|
|
4548
4548
|
process.exit(0);
|
|
4549
4549
|
}
|
|
4550
4550
|
if (process.argv.includes(PORTAL_DAEMON_FLAG)) {
|
|
4551
|
-
const { runPortalDaemon } = await import("./daemon-
|
|
4551
|
+
const { runPortalDaemon } = await import("./daemon-CORAITjj.mjs");
|
|
4552
4552
|
runPortalDaemon(process.argv);
|
|
4553
4553
|
} else runCli();
|
|
4554
4554
|
function runCli() {
|