UNPKG

openclaw

Version:

Multi-channel AI gateway with extensible messaging integrations

75 lines (74 loc) 2.83 kB
import { T as hasConfiguredChannelsForReadOnlyScope } from "./gateway-startup-plugin-ids-3X_G47Qt.js"; import "./channel-plugin-ids-yxLDmEfb.js"; import { r as withProgress } from "./progress-CN3xUiCO.js"; import { r as buildPluginCompatibilitySnapshotNotices } from "./status-TB29O9XH.js"; import { t as collectStatusScanOverview } from "./status.scan-overview-BXn7EgEP.js"; import { i as executeStatusScanFromOverview, n as scanStatusJsonWithPolicy, r as resolveStatusMemoryStatusSnapshot } from "./status.scan.fast-json-Okq5srbn.js"; //#region src/commands/status.scan.ts /** Runs the status scan for text or JSON command modes. */ async function scanStatus(opts, _runtime) { if (opts.json) return await scanStatusJsonWithPolicy({ timeoutMs: opts.timeoutMs, all: opts.all }, _runtime, { commandName: "status --json", resolveHasConfiguredChannels: (cfg, sourceConfig) => hasConfiguredChannelsForReadOnlyScope({ config: cfg, activationSourceConfig: sourceConfig }), resolveMemory: async ({ cfg, agentStatus, memoryPlugin }) => await resolveStatusMemoryStatusSnapshot({ cfg, agentStatus, memoryPlugin }) }); return await withProgress({ label: "Scanning status…", total: 10, enabled: true }, async (progress) => { const isFullScan = opts.all === true || opts.deep === true; const overview = await collectStatusScanOverview({ commandName: "status", opts, showSecrets: process.env.OPENCLAW_SHOW_SECRETS?.trim() !== "0", includeLiveChannelStatus: isFullScan, includeChannelSetupRuntimeFallback: isFullScan, channelCredentialResolutionSkipped: !isFullScan, includeChannelSecretTargets: isFullScan ? void 0 : false, fetchGitUpdate: isFullScan, includeRegistryUpdate: isFullScan, progress, labels: { loadingConfig: "Loading config…", checkingTailscale: "Checking Tailscale…", checkingForUpdates: "Checking for updates…", resolvingAgents: "Resolving agents…", probingGateway: "Probing gateway…", queryingChannelStatus: "Querying channel status…", summarizingChannels: "Summarizing channels…" } }); progress.setLabel("Checking plugins…"); const pluginCompatibility = opts.all ? buildPluginCompatibilitySnapshotNotices({ config: overview.cfg }) : []; progress.tick(); progress.setLabel("Checking memory and sessions…"); const result = await executeStatusScanFromOverview({ overview, resolveMemory: async ({ cfg, agentStatus, memoryPlugin }) => opts.all ? await resolveStatusMemoryStatusSnapshot({ cfg, agentStatus, memoryPlugin }) : null, channelIssues: overview.channelIssues, channels: overview.channels, pluginCompatibility }); progress.tick(); progress.setLabel("Rendering…"); progress.tick(); return result; }); } //#endregion export { scanStatus };