skydive-cli 0.5.0-beta.17 → 0.5.0-beta.18
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/dist/js/bin.mjs +13 -13
- package/dist/js/{boot-DwZBkVTH.mjs → boot-B5s4OFD1.mjs} +7 -5
- package/dist/js/{daemon-DnGOvf4Z.mjs → daemon-Bh5-Zcmm.mjs} +1 -1
- package/dist/js/{daemon-W2gA6EK7.mjs → daemon-ET09u2qs.mjs} +1 -1
- package/dist/js/{daemon-client-yjAgSDnI.mjs → daemon-client-D20UhJJa.mjs} +1 -1
- package/dist/js/daemon-client-DohoNVOP.mjs +7 -0
- package/dist/js/{print-riiY5Gly.mjs → print-CPRgbo2N.mjs} +1 -1
- package/dist/js/{print-DTx2HyDY.mjs → print-D8L3DAbD.mjs} +1 -1
- package/dist/js/{profiler-BTb4rpVg.mjs → profiler-Cdb37vOS.mjs} +2 -2
- package/package.json +1 -1
- package/dist/js/daemon-client-B-La8PEk.mjs +0 -7
package/dist/js/bin.mjs
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
import { A as version, D as listWorkspaces, E as getSessionIdentity, O as setActiveWorkspace, S as themes, T as getActiveWorkspaceId, a as installCrashHandler, k as name, t as maybeStartProfiling, u as brandHelpArt, w as ensureActiveOrganization } from "./profiler-
|
|
3
|
-
import { A as getStoredApiKeyId, B as saveConfig, C as getDefaultAgent, E as getPromptHistoryPath, F as resolveChatAuth, I as resolveConfig, L as resolveManagementAuth, M as getUpdateCheckDisabled, P as resolveAppUrl, R as resolveSession, S as getConfigPath, T as getPreference, U as setLastSeenVersion, V as saveSession, _ as API_KEY_PREFIX, b as PREFERENCES, g as API_KEY_FAMILY_PREFIX, h as API_KEYS_URL, i as resolveAgent, j as getStoredApiKeyWorkspaceName, k as getShareMachineDefault, v as DEFAULT_API_URL, w as getLastSeenVersion, x as deleteConfig } from "./print-
|
|
2
|
+
import { A as version, D as listWorkspaces, E as getSessionIdentity, O as setActiveWorkspace, S as themes, T as getActiveWorkspaceId, a as installCrashHandler, k as name, t as maybeStartProfiling, u as brandHelpArt, w as ensureActiveOrganization } from "./profiler-Cdb37vOS.mjs";
|
|
3
|
+
import { A as getStoredApiKeyId, B as saveConfig, C as getDefaultAgent, E as getPromptHistoryPath, F as resolveChatAuth, I as resolveConfig, L as resolveManagementAuth, M as getUpdateCheckDisabled, P as resolveAppUrl, R as resolveSession, S as getConfigPath, T as getPreference, U as setLastSeenVersion, V as saveSession, _ as API_KEY_PREFIX, b as PREFERENCES, g as API_KEY_FAMILY_PREFIX, h as API_KEYS_URL, i as resolveAgent, j as getStoredApiKeyWorkspaceName, k as getShareMachineDefault, v as DEFAULT_API_URL, w as getLastSeenVersion, x as deleteConfig } from "./print-CPRgbo2N.mjs";
|
|
4
4
|
import { n as printError, r as printTable, t as output } from "./output-DYzzdXYV.mjs";
|
|
5
5
|
import { t as HttpError } from "./http-error-DzyrsLAZ.mjs";
|
|
6
6
|
import { t as createRestClient } from "./rest-CLrHVkxh.mjs";
|
|
7
7
|
import "./billing-blocked-2wju4gC_.mjs";
|
|
8
8
|
import { r as resolveMachineIdentity } from "./client-DbqRBquD.mjs";
|
|
9
|
-
import { i as queryDaemonStatus, l as PORTAL_DAEMON_FLAG, n as ensureDaemonRunning, s as stopDaemon, u as daemonPaths } from "./daemon-
|
|
9
|
+
import { i as queryDaemonStatus, l as PORTAL_DAEMON_FLAG, n as ensureDaemonRunning, s as stopDaemon, u as daemonPaths } from "./daemon-Bh5-Zcmm.mjs";
|
|
10
10
|
import { i as grantPortalAccess, n as fetchPortalDevices, o as registerPortalDevice, r as findThisDevice, s as revokePortalAccess } from "./api-DG5W6iwx.mjs";
|
|
11
11
|
import { t as SandboxStream } from "./client-c4c5MmgN.mjs";
|
|
12
12
|
import { hideBin } from "yargs/helpers";
|
|
@@ -1517,7 +1517,7 @@ const importCommand = {
|
|
|
1517
1517
|
process.exit(1);
|
|
1518
1518
|
}
|
|
1519
1519
|
}
|
|
1520
|
-
const { runChat } = await import("./boot-
|
|
1520
|
+
const { runChat } = await import("./boot-B5s4OFD1.mjs");
|
|
1521
1521
|
await runChat({
|
|
1522
1522
|
appUrl,
|
|
1523
1523
|
sessionToken: session.value.sessionToken,
|
|
@@ -1553,7 +1553,7 @@ async function runImportPrintMode({ argv, appUrl }) {
|
|
|
1553
1553
|
});
|
|
1554
1554
|
const extra = (argv.print ?? "").trim();
|
|
1555
1555
|
const prompt = buildImportSeedPrompt(process.cwd()) + (extra ? `\n\nAdditional instructions: ${extra}` : "");
|
|
1556
|
-
const { runPrint } = await import("./print-
|
|
1556
|
+
const { runPrint } = await import("./print-D8L3DAbD.mjs");
|
|
1557
1557
|
try {
|
|
1558
1558
|
const result = await runPrint({
|
|
1559
1559
|
appUrl,
|
|
@@ -1930,7 +1930,7 @@ const chatCommand = {
|
|
|
1930
1930
|
sessionToken: auth.value.token,
|
|
1931
1931
|
agentSelector: argv.agent ?? null
|
|
1932
1932
|
});
|
|
1933
|
-
const { runChat } = await import("./boot-
|
|
1933
|
+
const { runChat } = await import("./boot-B5s4OFD1.mjs");
|
|
1934
1934
|
await runChat({
|
|
1935
1935
|
appUrl: auth.value.appUrl,
|
|
1936
1936
|
sessionToken: auth.value.token,
|
|
@@ -1998,7 +1998,7 @@ async function runPrintMode({ argv, appUrl }) {
|
|
|
1998
1998
|
printError(`${auth.error.message} For non-interactive use, run \`skydive auth login\` first, or set SKYDIVE_API_KEY / SKYDIVE_SESSION_TOKEN.`);
|
|
1999
1999
|
process.exit(1);
|
|
2000
2000
|
}
|
|
2001
|
-
const { runPrint, readStdin } = await import("./print-
|
|
2001
|
+
const { runPrint, readStdin } = await import("./print-D8L3DAbD.mjs");
|
|
2002
2002
|
await ensureAgentWorkspace({
|
|
2003
2003
|
appUrl,
|
|
2004
2004
|
sessionToken: auth.value.token,
|
|
@@ -2087,7 +2087,7 @@ const getCommand$1 = {
|
|
|
2087
2087
|
printError(`${auth.error.message} Run \`skydive auth login\` first, or set SKYDIVE_API_KEY / SKYDIVE_SESSION_TOKEN.`);
|
|
2088
2088
|
process.exit(1);
|
|
2089
2089
|
}
|
|
2090
|
-
const { messageGet } = await import("./print-
|
|
2090
|
+
const { messageGet } = await import("./print-D8L3DAbD.mjs");
|
|
2091
2091
|
try {
|
|
2092
2092
|
const result = await messageGet({
|
|
2093
2093
|
appUrl: auth.value.appUrl,
|
|
@@ -2290,7 +2290,7 @@ const switchCommand = {
|
|
|
2290
2290
|
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.");
|
|
2291
2291
|
process.exit(1);
|
|
2292
2292
|
}
|
|
2293
|
-
const { runWorkspacePicker } = await import("./boot-
|
|
2293
|
+
const { runWorkspacePicker } = await import("./boot-B5s4OFD1.mjs");
|
|
2294
2294
|
await runWorkspacePicker(session);
|
|
2295
2295
|
return;
|
|
2296
2296
|
}
|
|
@@ -2369,7 +2369,7 @@ const openCommand = {
|
|
|
2369
2369
|
const agent = argv.agent ? resolveAgent((await fetchPortalDevices(session)).agents, argv.agent) : null;
|
|
2370
2370
|
const cwd = argv.cwd ? path.resolve(argv.cwd) : process.cwd();
|
|
2371
2371
|
const { machineName } = await resolveMachineIdentity(null);
|
|
2372
|
-
const { PortalDaemonClient } = await import("./daemon-client-
|
|
2372
|
+
const { PortalDaemonClient } = await import("./daemon-client-DohoNVOP.mjs");
|
|
2373
2373
|
let lastLine = "";
|
|
2374
2374
|
let signalConnected;
|
|
2375
2375
|
const connected = new Promise((resolve) => {
|
|
@@ -2680,7 +2680,7 @@ const sandboxCommand = {
|
|
|
2680
2680
|
handler: async (argv) => {
|
|
2681
2681
|
const session = requireSession(argv);
|
|
2682
2682
|
const { createRestClient } = await import("./rest-DsdPAE8K.mjs");
|
|
2683
|
-
const { resolveAgent } = await import("./print-
|
|
2683
|
+
const { resolveAgent } = await import("./print-D8L3DAbD.mjs");
|
|
2684
2684
|
const client = createRestClient({
|
|
2685
2685
|
appUrl: session.appUrl,
|
|
2686
2686
|
sessionToken: session.sessionToken
|
|
@@ -2838,7 +2838,7 @@ const fsEditCommand = {
|
|
|
2838
2838
|
const session = requireSession(argv);
|
|
2839
2839
|
const remotePath = argv.path;
|
|
2840
2840
|
const { createRestClient } = await import("./rest-DsdPAE8K.mjs");
|
|
2841
|
-
const { resolveAgent } = await import("./print-
|
|
2841
|
+
const { resolveAgent } = await import("./print-D8L3DAbD.mjs");
|
|
2842
2842
|
const client = createRestClient({
|
|
2843
2843
|
appUrl: session.appUrl,
|
|
2844
2844
|
sessionToken: session.sessionToken
|
|
@@ -4215,7 +4215,7 @@ if (process.argv.includes(UPDATE_WORKER_FLAG)) {
|
|
|
4215
4215
|
process.exit(0);
|
|
4216
4216
|
}
|
|
4217
4217
|
if (process.argv.includes(PORTAL_DAEMON_FLAG)) {
|
|
4218
|
-
const { runPortalDaemon } = await import("./daemon-
|
|
4218
|
+
const { runPortalDaemon } = await import("./daemon-ET09u2qs.mjs");
|
|
4219
4219
|
runPortalDaemon(process.argv);
|
|
4220
4220
|
} else runCli();
|
|
4221
4221
|
function runCli() {
|
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
import { C as themesForMode, D as listWorkspaces, O as setActiveWorkspace, T as getActiveWorkspaceId, _ as theme, a as installCrashHandler, b as themeModeFromColorFgBg, c as MARK_CELLS, d as splashFitsWidth, f as DEFAULT_THEME_ID, g as noColorRequested, h as monoTheme, i as writeArtifact, l as WORDMARK, m as findTheme, n as profilingEnabled, o as buildCrashReport, p as applyTheme, r as record, s as writeCrashReport, v as themeForMode, x as themeVersion, y as themeMode } from "./profiler-
|
|
3
|
-
import { D as getReviewStateDir, H as saveTheme, N as recordDefaultAgent, O as getSavedTheme, S as getConfigPath, c as cardActionErrorMessage, d as reconcileMaskedInput, f as resolveConnectUrl, i as resolveAgent, l as parseExternalOauthConnectParams, m as specKeyFor, p as parseConnectCard, s as MASK_CHAR, u as parseOauthConnectParams, v as DEFAULT_API_URL, y as DEFAULT_APP_URL, z as resolveWebUrl } from "./print-
|
|
2
|
+
import { C as themesForMode, D as listWorkspaces, O as setActiveWorkspace, T as getActiveWorkspaceId, _ as theme, a as installCrashHandler, b as themeModeFromColorFgBg, c as MARK_CELLS, d as splashFitsWidth, f as DEFAULT_THEME_ID, g as noColorRequested, h as monoTheme, i as writeArtifact, l as WORDMARK, m as findTheme, n as profilingEnabled, o as buildCrashReport, p as applyTheme, r as record, s as writeCrashReport, v as themeForMode, x as themeVersion, y as themeMode } from "./profiler-Cdb37vOS.mjs";
|
|
3
|
+
import { D as getReviewStateDir, H as saveTheme, N as recordDefaultAgent, O as getSavedTheme, S as getConfigPath, c as cardActionErrorMessage, d as reconcileMaskedInput, f as resolveConnectUrl, i as resolveAgent, l as parseExternalOauthConnectParams, m as specKeyFor, p as parseConnectCard, s as MASK_CHAR, u as parseOauthConnectParams, v as DEFAULT_API_URL, y as DEFAULT_APP_URL, z as resolveWebUrl } from "./print-CPRgbo2N.mjs";
|
|
4
4
|
import { t as HttpError } from "./http-error-DzyrsLAZ.mjs";
|
|
5
5
|
import { a as isRecord, i as errorMessage, n as errorDetail, r as sendErrorMessage, t as createRestClient } from "./rest-CLrHVkxh.mjs";
|
|
6
6
|
import { i as billingBlockedOutcomeFromSendResponse } from "./billing-blocked-2wju4gC_.mjs";
|
|
7
7
|
import { t as PortalClient } from "./client-DbqRBquD.mjs";
|
|
8
|
-
import "./daemon-
|
|
8
|
+
import "./daemon-Bh5-Zcmm.mjs";
|
|
9
9
|
import "./api-DG5W6iwx.mjs";
|
|
10
10
|
import { t as SandboxStream } from "./client-c4c5MmgN.mjs";
|
|
11
|
-
import { t as PortalDaemonClient } from "./daemon-client-
|
|
11
|
+
import { t as PortalDaemonClient } from "./daemon-client-D20UhJJa.mjs";
|
|
12
12
|
import { t as runRawPtyPassthrough } from "./raw-pty-DY4KelZW.mjs";
|
|
13
13
|
import * as os$1 from "node:os";
|
|
14
14
|
import { homedir, platform, release, tmpdir } from "node:os";
|
|
@@ -11063,6 +11063,7 @@ function ChatScreen({ agent, conversation }) {
|
|
|
11063
11063
|
agentHost.addPullRequest(pr);
|
|
11064
11064
|
});
|
|
11065
11065
|
const streamAgentName = runAgentName ?? agent.name;
|
|
11066
|
+
let sawErrorChunk = false;
|
|
11066
11067
|
setRun((prev) => ({
|
|
11067
11068
|
kind: "streaming",
|
|
11068
11069
|
runId,
|
|
@@ -11074,6 +11075,7 @@ function ChatScreen({ agent, conversation }) {
|
|
|
11074
11075
|
signal: abort.signal,
|
|
11075
11076
|
onEvent: (event) => {
|
|
11076
11077
|
if (event.kind === "chunk") {
|
|
11078
|
+
if (event.chunk.type === "error") sawErrorChunk = true;
|
|
11077
11079
|
responsePreview.addChunk(event.chunk);
|
|
11078
11080
|
prScanner.addChunk(event.chunk);
|
|
11079
11081
|
if (event.chunk.type === "data-anyone-todos-updated") {
|
|
@@ -11091,7 +11093,7 @@ function ChatScreen({ agent, conversation }) {
|
|
|
11091
11093
|
id: crypto.randomUUID(),
|
|
11092
11094
|
text: billingOutcome.message
|
|
11093
11095
|
}]);
|
|
11094
|
-
else if (event.status !== "ok" && errorText) setItems((prev) => [...prev, {
|
|
11096
|
+
else if (event.status !== "ok" && errorText && !sawErrorChunk) setItems((prev) => [...prev, {
|
|
11095
11097
|
kind: "error",
|
|
11096
11098
|
id: crypto.randomUUID(),
|
|
11097
11099
|
text: errorText
|
|
@@ -20,7 +20,7 @@ import { access, appendFile, mkdir, readFile, unlink, writeFile } from "node:fs/
|
|
|
20
20
|
* the commit time of the built tree is one monotonic clock they share.
|
|
21
21
|
*/
|
|
22
22
|
function portalDaemonBuild() {
|
|
23
|
-
return "
|
|
23
|
+
return "1786643266";
|
|
24
24
|
}
|
|
25
25
|
/**
|
|
26
26
|
* Whether a client carrying `mine` should replace a running daemon carrying
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
import "./client-DbqRBquD.mjs";
|
|
3
|
-
import { a as runPortalDaemon, i as queryDaemonStatus, n as ensureDaemonRunning, o as startPortalDaemon, r as isDaemonListening, s as stopDaemon, t as PortalDaemon } from "./daemon-
|
|
3
|
+
import { a as runPortalDaemon, i as queryDaemonStatus, n as ensureDaemonRunning, o as startPortalDaemon, r as isDaemonListening, s as stopDaemon, t as PortalDaemon } from "./daemon-Bh5-Zcmm.mjs";
|
|
4
4
|
import "./api-DG5W6iwx.mjs";
|
|
5
5
|
|
|
6
6
|
export { runPortalDaemon };
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
import { c as LOCAL_PROTOCOL_VERSION, d as encodeLine, f as makeLineParser, n as ensureDaemonRunning, p as parseDaemonMessage, u as daemonPaths } from "./daemon-
|
|
2
|
+
import { c as LOCAL_PROTOCOL_VERSION, d as encodeLine, f as makeLineParser, n as ensureDaemonRunning, p as parseDaemonMessage, u as daemonPaths } from "./daemon-Bh5-Zcmm.mjs";
|
|
3
3
|
import { randomUUID } from "node:crypto";
|
|
4
4
|
import { connect } from "node:net";
|
|
5
5
|
|
|
@@ -733,7 +733,7 @@ async function collectRunText({ client, appUrl, target, onText, messageIdForHint
|
|
|
733
733
|
const onEvent = (event) => {
|
|
734
734
|
if (event.kind === "finished") {
|
|
735
735
|
if (event.outcome) billingBlocked = event.outcome;
|
|
736
|
-
if (event.error) streamError = event.error;
|
|
736
|
+
if (event.error && streamError === null) streamError = event.error;
|
|
737
737
|
return;
|
|
738
738
|
}
|
|
739
739
|
const chunk = event.chunk;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
import { a as runPrint, i as resolveAgent, n as messageGet, o as toPrintError, r as readStdin, t as collectRunText } from "./print-
|
|
2
|
+
import { a as runPrint, i as resolveAgent, n as messageGet, o as toPrintError, r as readStdin, t as collectRunText } from "./print-CPRgbo2N.mjs";
|
|
3
3
|
import "./rest-CLrHVkxh.mjs";
|
|
4
4
|
import "./billing-blocked-2wju4gC_.mjs";
|
|
5
5
|
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
import { S as getConfigPath } from "./print-
|
|
2
|
+
import { S as getConfigPath } from "./print-CPRgbo2N.mjs";
|
|
3
3
|
import os from "node:os";
|
|
4
4
|
import path from "node:path";
|
|
5
5
|
import { err, ok } from "neverthrow";
|
|
@@ -8,7 +8,7 @@ import fs from "node:fs";
|
|
|
8
8
|
|
|
9
9
|
//#region package.json
|
|
10
10
|
var name = "skydive-cli";
|
|
11
|
-
var version$1 = "0.5.0-beta.
|
|
11
|
+
var version$1 = "0.5.0-beta.18";
|
|
12
12
|
|
|
13
13
|
//#endregion
|
|
14
14
|
//#region src/auth/organization.ts
|
package/package.json
CHANGED