skydive-cli 0.2.0-beta.606 → 0.2.0-beta.608

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 CHANGED
@@ -1,5 +1,5 @@
1
1
  #!/usr/bin/env node
2
- import { A as deleteConfig, B as resolveAppUrl, C as setActiveWorkspace, D as DEFAULT_API_URL, E as API_KEY_PREFIX, G as saveConfig, H as resolveManagementAuth, I as getShareMachineDefault, J as setLastSeenVersion, K as saveSession, L as getStoredApiKeyId, M as getLastSeenVersion, N as getPromptHistoryPath, R as getStoredApiKeyWorkspaceName, S as listWorkspaces, T as API_KEY_FAMILY_PREFIX, U as resolveSession, V as resolveConfig, X as version, Y as name, _ as themes, b as getActiveWorkspaceId, j as getConfigPath, k as DEFAULT_WEB_URL, o as brandHelpArt, t as installCrashHandler, w as API_KEYS_URL, x as getSessionIdentity, y as ensureActiveOrganization, z as getUpdateCheckDisabled } from "./install-CUhhdQ1L.mjs";
2
+ import { A as deleteConfig, B as resolveAppUrl, C as setActiveWorkspace, D as DEFAULT_API_URL, E as API_KEY_PREFIX, G as saveConfig, H as resolveManagementAuth, I as getShareMachineDefault, J as setLastSeenVersion, K as saveSession, L as getStoredApiKeyId, M as getLastSeenVersion, N as getPromptHistoryPath, R as getStoredApiKeyWorkspaceName, S as listWorkspaces, T as API_KEY_FAMILY_PREFIX, U as resolveSession, V as resolveConfig, X as version, Y as name, _ as themes, b as getActiveWorkspaceId, j as getConfigPath, k as DEFAULT_WEB_URL, o as brandHelpArt, t as installCrashHandler, w as API_KEYS_URL, x as getSessionIdentity, y as ensureActiveOrganization, z as getUpdateCheckDisabled } from "./install-B-9AJk0F.mjs";
3
3
  import { n as printError, r as printTable, t as output } from "./output-B4cW10Ph.mjs";
4
4
  import { n as createRestClient } from "./rest-DMpigwmN.mjs";
5
5
  import { i as resolveAgent } from "./print-6Bm51XhR.mjs";
@@ -1195,7 +1195,7 @@ const importCommand = {
1195
1195
  process.exit(1);
1196
1196
  }
1197
1197
  }
1198
- const { runChat } = await import("./boot-0dKnbAAn.mjs");
1198
+ const { runChat } = await import("./boot-B1AReDlO.mjs");
1199
1199
  await runChat({
1200
1200
  appUrl,
1201
1201
  sessionToken: session.value.sessionToken,
@@ -1511,7 +1511,7 @@ const chatCommand = {
1511
1511
  printError(`Unknown theme "${themeId}". Valid themes: ${themes.map((t) => t.id).join(", ")}`);
1512
1512
  process.exit(1);
1513
1513
  }
1514
- const { runChat } = await import("./boot-0dKnbAAn.mjs");
1514
+ const { runChat } = await import("./boot-B1AReDlO.mjs");
1515
1515
  await runChat({
1516
1516
  appUrl,
1517
1517
  sessionToken: session.value.sessionToken,
@@ -1819,7 +1819,7 @@ const switchCommand = {
1819
1819
  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.");
1820
1820
  process.exit(1);
1821
1821
  }
1822
- const { runWorkspacePicker } = await import("./boot-0dKnbAAn.mjs");
1822
+ const { runWorkspacePicker } = await import("./boot-B1AReDlO.mjs");
1823
1823
  await runWorkspacePicker(session);
1824
1824
  return;
1825
1825
  }
@@ -1,5 +1,5 @@
1
1
  #!/usr/bin/env node
2
- import { C as setActiveWorkspace, D as DEFAULT_API_URL, F as getSavedTheme, O as DEFAULT_APP_URL, P as getReviewStateDir, S as listWorkspaces, W as resolveWebUrl, a as WORDMARK, b as getActiveWorkspaceId, c as applyTheme, d as noColorRequested, f as theme, g as themeVersion, h as themeModeFromColorFgBg, i as MARK_CELLS, j as getConfigPath, l as findTheme, m as themeMode, n as buildCrashReport, p as themeForMode, q as saveTheme, r as writeCrashReport, s as DEFAULT_THEME_ID, t as installCrashHandler, u as monoTheme, v as themesForMode } from "./install-CUhhdQ1L.mjs";
2
+ import { C as setActiveWorkspace, D as DEFAULT_API_URL, F as getSavedTheme, O as DEFAULT_APP_URL, P as getReviewStateDir, S as listWorkspaces, W as resolveWebUrl, a as WORDMARK, b as getActiveWorkspaceId, c as applyTheme, d as noColorRequested, f as theme, g as themeVersion, h as themeModeFromColorFgBg, i as MARK_CELLS, j as getConfigPath, l as findTheme, m as themeMode, n as buildCrashReport, p as themeForMode, q as saveTheme, r as writeCrashReport, s as DEFAULT_THEME_ID, t as installCrashHandler, u as monoTheme, v as themesForMode } from "./install-B-9AJk0F.mjs";
3
3
  import { a as errorMessage, i as sendErrorMessage, n as createRestClient, o as isRecord, r as errorDetail, t as HttpError } from "./rest-DMpigwmN.mjs";
4
4
  import { 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 } from "./print-6Bm51XhR.mjs";
5
5
  import "./api-BGWcPuik.mjs";
@@ -1884,6 +1884,7 @@ function useDebouncedValue(value, delayMs) {
1884
1884
  //#endregion
1885
1885
  //#region src/chat/tui/screens/conversation-picker.tsx
1886
1886
  const SEARCH_DEBOUNCE_MS = 250;
1887
+ const SEARCH_QUERY_MAX_LENGTH = 200;
1887
1888
  const humanChannels = [
1888
1889
  "web",
1889
1890
  "slack",
@@ -2211,8 +2212,9 @@ function ConversationList({ agent, conversations, complete, showAutomated, onTog
2211
2212
  placeholder: "type to filter…",
2212
2213
  focused: confirmId === null,
2213
2214
  width: Math.max(10, width - 12),
2215
+ maxLength: SEARCH_QUERY_MAX_LENGTH,
2214
2216
  onInput: (value) => {
2215
- setQuery(value);
2217
+ setQuery(value.slice(0, SEARCH_QUERY_MAX_LENGTH));
2216
2218
  setHighlight(0);
2217
2219
  }
2218
2220
  })]
@@ -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.2.0-beta.606";
11
+ var version$1 = "0.2.0-beta.608";
12
12
 
13
13
  //#endregion
14
14
  //#region src/config.ts
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "skydive-cli",
3
- "version": "0.2.0-beta.606",
3
+ "version": "0.2.0-beta.608",
4
4
  "description": "Skydive CLI — cloud agents from the command line",
5
5
  "homepage": "https://skydive.com",
6
6
  "license": "MIT",