openmeld 0.3.68 → 0.3.69
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/{add-me-membership-GJERAAJH.js → add-me-membership-BCFUe-Ix.js} +2 -2
- package/dist/{add-me-membership-GJERAAJH.js.map → add-me-membership-BCFUe-Ix.js.map} +1 -1
- package/dist/{command-Cp_YvXyz.js → command-CDkR9Ss2.js} +31 -6
- package/dist/{command-Cp_YvXyz.js.map → command-CDkR9Ss2.js.map} +1 -1
- package/dist/openmeld.js +4 -2
- package/dist/openmeld.js.map +1 -1
- package/package.json +1 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
|
|
3
|
-
import { r as runSpaceAddMembers } from "./command-
|
|
3
|
+
import { r as runSpaceAddMembers } from "./command-CDkR9Ss2.js";
|
|
4
4
|
//#region src/space/add-me-membership.ts
|
|
5
5
|
async function runSpaceAddMeMembership(input) {
|
|
6
6
|
return await runSpaceAddMembers(input);
|
|
@@ -8,4 +8,4 @@ async function runSpaceAddMeMembership(input) {
|
|
|
8
8
|
//#endregion
|
|
9
9
|
export { runSpaceAddMeMembership };
|
|
10
10
|
|
|
11
|
-
//# sourceMappingURL=add-me-membership-
|
|
11
|
+
//# sourceMappingURL=add-me-membership-BCFUe-Ix.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"add-me-membership-
|
|
1
|
+
{"version":3,"file":"add-me-membership-BCFUe-Ix.js","names":[],"sources":["../src/space/add-me-membership.ts"],"sourcesContent":["import { runSpaceAddMembers } from \"./command\";\nimport type { SpaceCommandNavigationStatus } from \"./navigation-status\";\n\nexport type SpaceAddMeMembershipInput = Parameters<\n typeof runSpaceAddMembers\n>[0];\nexport type SpaceAddMeMembershipRunner = (\n input: SpaceAddMeMembershipInput\n) => Promise<SpaceCommandNavigationStatus>;\n\nexport async function runSpaceAddMeMembership(\n input: SpaceAddMeMembershipInput\n): Promise<SpaceCommandNavigationStatus> {\n return await runSpaceAddMembers(input);\n}\n"],"mappings":";;;;AAUA,eAAsB,wBACpB,OACuC;CACvC,OAAO,MAAM,mBAAmB,KAAK;AACvC"}
|
|
@@ -34,7 +34,7 @@ import { Box, Container, Editor, Key, ProcessTerminal, TUI, Text, getEditorKeybi
|
|
|
34
34
|
var package_default = {
|
|
35
35
|
$schema: "https://www.schemastore.org/package.json",
|
|
36
36
|
name: "openmeld",
|
|
37
|
-
version: "0.3.
|
|
37
|
+
version: "0.3.69",
|
|
38
38
|
openMeldReleaseDate: "2026-08-18",
|
|
39
39
|
description: "OpenMeld CLI - https://openmeld.ai",
|
|
40
40
|
license: "MIT",
|
|
@@ -10480,7 +10480,7 @@ async function readCurrentObservedDaemonRuntimeStatus() {
|
|
|
10480
10480
|
}
|
|
10481
10481
|
async function clearDaemonRuntimeStateIfDefinitelyStopped() {
|
|
10482
10482
|
const context = await readCurrentDaemonRuntimeContext();
|
|
10483
|
-
if (context.effectiveRuntimeStatus
|
|
10483
|
+
if (!(context.effectiveRuntimeStatus === "not_running" || await isStoppedSystemServiceSnapshot(context))) return {
|
|
10484
10484
|
context,
|
|
10485
10485
|
cleared: false
|
|
10486
10486
|
};
|
|
@@ -10490,6 +10490,10 @@ async function clearDaemonRuntimeStateIfDefinitelyStopped() {
|
|
|
10490
10490
|
cleared: true
|
|
10491
10491
|
};
|
|
10492
10492
|
}
|
|
10493
|
+
async function isStoppedSystemServiceSnapshot(context) {
|
|
10494
|
+
if (context.runtimeStatus.status !== "stale" || !context.runtimeStatus.managedBySystemService || context.serviceManagerStatus?.running !== false) return false;
|
|
10495
|
+
return (await listDaemonOwnedProcesses({ ignoreProcessIds: [process$1.pid, process$1.ppid] })).length === 0;
|
|
10496
|
+
}
|
|
10493
10497
|
async function readCurrentDaemonRuntimeContext(input = {}) {
|
|
10494
10498
|
const status = input.status ?? await getDaemonStatus();
|
|
10495
10499
|
const runtimeStatus = await readCurrentObservedDaemonRuntimeStatus();
|
|
@@ -40574,6 +40578,13 @@ const VERIFIED_ROLLBACK_UNTRUSTED_ANOMALIES = /* @__PURE__ */ new Set([
|
|
|
40574
40578
|
"runtime_bundle_mismatch",
|
|
40575
40579
|
"service_manager_path_drift"
|
|
40576
40580
|
]);
|
|
40581
|
+
const STOPPED_LIFECYCLE_RUNTIME_SNAPSHOT_ANOMALIES = /* @__PURE__ */ new Set([
|
|
40582
|
+
"runtime_stale",
|
|
40583
|
+
"runtime_bundle_mismatch",
|
|
40584
|
+
"runtime_contract_missing",
|
|
40585
|
+
"runtime_contract_mismatch",
|
|
40586
|
+
"runtime_contract_unavailable"
|
|
40587
|
+
]);
|
|
40577
40588
|
var DaemonServiceLifecycleDrainTimeoutError = class extends Error {
|
|
40578
40589
|
waitMs;
|
|
40579
40590
|
constructor(waitMs) {
|
|
@@ -41650,12 +41661,19 @@ function verifyLifecycleInventoryStaticRequirements(input) {
|
|
|
41650
41661
|
}
|
|
41651
41662
|
function verifyLifecycleInventoryDecision(input) {
|
|
41652
41663
|
const decision = resolveDaemonServiceAlignmentDecision({
|
|
41653
|
-
inventory: input
|
|
41664
|
+
inventory: buildLifecycleAlignmentInventory(input),
|
|
41654
41665
|
target: input.target
|
|
41655
41666
|
});
|
|
41656
41667
|
if (decision.status === "already_aligned") return null;
|
|
41657
41668
|
return `Lifecycle verification failed because the service is still ${decision.status}. reasons=${decision.reasonCodes.join(",") || "none"}`;
|
|
41658
41669
|
}
|
|
41670
|
+
function buildLifecycleAlignmentInventory(input) {
|
|
41671
|
+
if (input.shouldStartAfterLifecycle || input.inventory.serviceManagerStatus?.running !== false || input.inventory.ownedProcesses.length > 0) return input.inventory;
|
|
41672
|
+
return {
|
|
41673
|
+
...input.inventory,
|
|
41674
|
+
anomalies: input.inventory.anomalies.filter((anomaly) => !STOPPED_LIFECYCLE_RUNTIME_SNAPSHOT_ANOMALIES.has(anomaly.code))
|
|
41675
|
+
};
|
|
41676
|
+
}
|
|
41659
41677
|
function verifyLifecycleInventoryContractState(input) {
|
|
41660
41678
|
const contract = input.inventory.serviceContract ?? null;
|
|
41661
41679
|
if (!contract) return "Lifecycle verification failed because the service contract is missing.";
|
|
@@ -73618,6 +73636,7 @@ function createDaemonReinstallStoppedSafeOutcome(input) {
|
|
|
73618
73636
|
...input.evidencePath ? { evidencePath: input.evidencePath } : {},
|
|
73619
73637
|
...input.failureStage ? { failureStage: input.failureStage } : {},
|
|
73620
73638
|
forceUsed: input.forceUsed,
|
|
73639
|
+
reasonCodes: input.reasonCodes,
|
|
73621
73640
|
serviceState: "stopped",
|
|
73622
73641
|
errorMessage: input.errorMessage
|
|
73623
73642
|
};
|
|
@@ -73924,7 +73943,12 @@ function emitDaemonInstallDowngradeBlocked(input) {
|
|
|
73924
73943
|
function summarizeDaemonReinstallJournalResult(outcome) {
|
|
73925
73944
|
return {
|
|
73926
73945
|
result: outcome.ok ? outcome.result : outcome.result,
|
|
73927
|
-
metadata: {
|
|
73946
|
+
metadata: {
|
|
73947
|
+
ok: outcome.ok,
|
|
73948
|
+
..."failureStage" in outcome && outcome.failureStage ? { failureStage: outcome.failureStage } : {},
|
|
73949
|
+
..."errorMessage" in outcome ? { errorMessage: outcome.errorMessage } : {},
|
|
73950
|
+
..."reasonCodes" in outcome && outcome.reasonCodes.length > 0 ? { reasonCodes: outcome.reasonCodes } : {}
|
|
73951
|
+
}
|
|
73928
73952
|
};
|
|
73929
73953
|
}
|
|
73930
73954
|
function buildDaemonReinstallUnexpectedStartSummary(error, action = "repair") {
|
|
@@ -75149,7 +75173,8 @@ async function performDaemonReinstall(input) {
|
|
|
75149
75173
|
evidencePath: lifecycleResult.evidencePath,
|
|
75150
75174
|
failureStage: lifecycleResult.failureStage,
|
|
75151
75175
|
forceUsed,
|
|
75152
|
-
errorMessage: lifecycleResult.errorMessage
|
|
75176
|
+
errorMessage: lifecycleResult.errorMessage,
|
|
75177
|
+
reasonCodes: lifecycleResult.reasonCodes
|
|
75153
75178
|
});
|
|
75154
75179
|
await applyDaemonReinstallTargetDesiredState({
|
|
75155
75180
|
runtime: input.runtime,
|
|
@@ -104515,4 +104540,4 @@ function isHumanInteractiveSpaceRuntime(runtime) {
|
|
|
104515
104540
|
//#endregion
|
|
104516
104541
|
export { formatTransportModeDisplay as $, formatOpenMeldCliTextBlock as $a, compareSemver as $i, canUseInteractivePrompts as $n, normalizeCustomProfileWorkspacePath as $r, readRecentDaemonDispatchJournalEvents as $t, prepareAuthenticatedSpaceCommandContext as A, buildHumanAuthenticationCard as Aa, listAgentControllerPermissionModeOptions as Ai, assertNoRemovedCcSpaceAddressingSyntax as An, emitCliJsonEnvelope as Ao, formatDualViewGuideForDisplay as Ar, readDaemonStartFailureLogTailLines as At, runAgents as B, registerAgentActivityRoute as Ba, resetCurrentCommandCheckState as Bi, promptSearchSelect as Bn, organizationJoinLinkErrorResponseSchema as Bo, resolveServiceReadinessFromServiceStatus as Br, writeInstalledLocalComponentsSnapshot as Bt, buildFormalSignalReadPayload as C, resolveOpenMeldProfile as Ca, ensureDaemonRuntimePaths as Ci, submitRuntimeAgentControllerReports as Cn, unbindProject as Co, registerSkillsTargetSelectionOptions as Cr, buildProfileWorkspacePresentation as Ct, isSpaceCommandOutputHandledError as D, getSelectedOpenMeldProfileId as Da, createAgentExecutionStatusDisplayRows as Di, resolveLocalAgentControllerReportDecision as Dn, renderInfoCard as Do, registerBuiltinAgentSelectionOptions as Dr, createDelayedSpinner as Dt, parseEnvelope as E, clearSelectedOpenMeldProfileId as Ea, buildAgentControllerRef as Ei, resolveLocalAgentControllerLaunchability as En, readControllerTaskLifecycleOutboxHealth as Eo, registerAuthLoginRequestOptions as Er, emitDaemonAgentOverview as Et, prepareLocalAgentReadiness as F, getProfileDefaultView as Fa, resolveEvidenceSyncHealth as Fi, buildSpaceRoundReadProjection as Fn, cliJsonOutputEnvelopeSchema as Fo, areAllowedActionsEquivalent as Fr, readGatewayJsonResponse as Ft, runAgentsCustomUpdate as G, installAgentActivityIntegrations as Ga, readCurrentObservedDaemonRuntimeStatus as Gi, assertDispatchOwnedRuntimePublicWriteAllowed as Gn, formatHumanReplyReadinessReason as Gr, runSkillsCheck as Gt, runAgentsCustomAdd as H, unregisterAgentActivityRoute as Ha, inspectDaemonServiceInventory as Hi, runInteractivePrompt as Hn, compareAgentControllerRefsForDisplay as Ho, resolveCurrentReplyReadinessSnapshot as Hr, runDaemonServiceParticipationGate as Ht, buildReplyReadinessGuidance as I, setProfileDefaultView as Ia, resolveNativeAgentControllerPermissionModeForController as Ii, buildUpdatesReplyWorkflowProjection as In, cliJsonSkillsListEnvelopeSchema as Io, buildAgentFacingPublicationModeGuideLines as Ir, readGatewayTextResponse as It, runAgentsEnable as J, uninstallAgentActivityIntegrations as Ja, readDaemonServiceJobCrashExitCode as Ji, writeDispatchSpaceActionRecord as Jn, resolveOpenClawLocalDiagnosticsValue as Jr, runSkillsUninstall as Jt, runAgentsDetect as K, readAgentActivityIntegrationStatus as Ka, getDaemonSystemServiceLogPath as Ki, readDispatchOwnedRuntimeGuard as Kn, mapAgentReplyReadinessToLegacyAutoReply as Kr, runSkillsEnsure as Kt, resolveHumanControllerDisplayName as L, LocalProjectConnectionError as La, finishCurrentCommandCheckScope as Li, createSpaceMemberIdentityIndex as Ln, cliJsonSkillsLoadEnvelopeSchema as Lo, canonicalizeAllowedActions as Lr, toStructuredGatewayFailure as Lt, resolveSpaceAccessLabel as M, resolveAuthenticationGuidance as Ma, resolveAgentControllerPermissionModeForController as Mi, buildDispatchResultReplyWorkflowProjection as Mn, outJsonLine as Mo, formatAgentOverviewPayload as Mr, createCliSpaceApi as Mt, emitSpaceAgentOverview as N, resolveAuthenticationGuidanceFromError as Na, resolveAgentExecutionStatus as Ni, buildSignalIndex as Nn, outLine as No, OPENMELD_AGENT_MENTAL_MODEL_LINES as Nr, fetchSpaceMeta as Nt, assertFullSignalIdArgument as O, setSelectedOpenMeldProfileId as Oa, getAgentControllerPermissionModeDisplayMetadata as Oi, inspectSpaceCacheFile as On, renderTextInfoCard as Oo, buildAgentOverviewFromContract as Or, shouldEmitAgentOverview as Ot, emitSpaceCliAgentOverview as P, resolveAuthenticationGuidanceFromMessage as Pa, resolveAgentProfileEditCapabilities as Pi, buildSignalMessageReadProjection as Pn, cliBinaryDeltaPatchSchema as Po, SPACE_CONTRACT_ALLOWED_ACTION_ORDER as Pr, updateSpaceMeta as Pt, runAgentsShow as Q, formatOpenMeldCliLine as Qa, buildNextVersionState as Qi, formatDaemonServiceMissingRecommendation as Qn, ensureOpenMeldManagedProfileWorkspace as Qr, readRuntimeReportingHealthState as Qt, persistAgentTransportSelection as R, validateLocalProjectConnectionPath as Ra, getCurrentCommandCheckState as Ri, formatRemovedCcRelationMessage as Rn, cliJsonSkillsShowEnvelopeSchema as Ro, runDaemonServiceFullAlignment as Rr, parseJsonResponse$1 as Rt, buildFormalDispatchResultReadPayload as S, primeOpenMeldProfilesSessionCache as Sa, readRecentDaemonLifecycleEvents as Si, submitRuntimeAgentControllerReport as Sn, setDefaultProjectConnection as So, SPACE_ADD_MEMBERS_PROGRESS_HEARTBEAT_MS as Sr, runDaemonUninstall as St, formatHumanReadTargetList as T, alignSelectedOpenMeldProfileStorage as Ta, resolveOpenMeldEnvironmentTarget as Ti, resolveLocalAgentControllerBlockerReasonCodes as Tn, enqueueControllerTaskLifecycleEventWhileLocked as To, registerDaemonControlTargetOptions as Tr, reconcileCliVersionView as Tt, runAgentsCustomList as U, AGENT_ACTIVITY_INTEGRATION_OWNER as Ua, resolveVersionChangeDirection as Ui, assessCliUpdate as Un, package_default as Uo, formatAgentReplyReadinessLabel as Ur, runDaemonStartDecisionPrompt as Ut, runAgentsConfig as V, resolveAgentActivityRouteForPath as Va, startCurrentCommandCheckScope as Vi, isReturnKeypress as Vn, revokeOrganizationJoinLinkResponseSchema as Vo, resolveDaemonServiceFreshnessWarning as Vr, resolveDaemonServiceParticipationStatus as Vt, runAgentsCustomRemove as W, defaultManagedIntegrationPaths as Wa, readCurrentDaemonRuntimeContext as Wi, isCliUpdateCheckApplicable as Wn, formatDeviceReplyReadinessLabel as Wr, collectSkillsReadinessSnapshot as Wt, runAgentsManage as X, formatOpenMeldCliCommand as Xa, buildInstallSelfJsonPayload as Xi, resolveElapsedTimeMs as Xn, createModelCatalogReadSession as Xr, ensureLocalSkills as Xt, runAgentsList as Y, formatInlineOpenMeldCliCommands as Ya, resolveDaemonServiceManager as Yi, formatElapsedTime as Yn, syncProfileWorkspaceState as Yr, runSkillsUpdate as Yt, runAgentsRepair as Z, formatOpenMeldCliCommands as Za, performManagedInstall as Zi, formatDaemonServiceDowngradeBlockedRecommendation as Zn, resolveProfileWorkspaceRuntime as Zr, readBundledOpenMeldCliSkillDocumentByPath as Zt, emitHumanReadSignalsTextProjection as _, resolveOpenMeldProfileOrNull as _a, getSetupFlowCopy as _i, formatServiceParticipationReadinessLabel as _n, listProjectBindings as _o, createStartAuthenticationGuideError as _r, runDaemonRunAfterEntryChecks as _t, runSpaceDelete as a, isBinaryDistribution as aa, describeProfileWorkspacePathValidationFailure as ai, runAuthLogin as an, upsertDaemonServiceContract as ao, createSpaceAddMembersGuideError as ar, renderOpenMeldHeader as at, loadSpaceSignalIndexOrNull as b, deleteOpenMeldProfile as ba, classifyDaemonServiceRunStartability as bi, computeRetryDelayMs as bn, removeProjectConnection as bo, getCommandHintsFromContract as br, runDaemonStop as bt, runSpaceLeave as c, toStartBackgroundHelperExecutionCompatibility as ca, resolveAgentProfilePrimaryAgentControllerReport as ci, runAuthStatus as cn, buildAgentActivityEvent as co, createSpaceLeaveGuideError as cr, resolveGatewayWebOrigin as ct, runSpaceRemoveMembers as d, formatMessage as da, listBuiltinAgentsRegistryEntries as di, formatActiveOrganizationLabel as dn, readCodexSessionTitles as do, createSpaceRemoveMembersGuideError as dr, runDaemonAutostart as dt, ensureVersionStateReady as ea, readProfileWorkspaceConfig as ei, connectWebSocket as en, formatProfileAwareOpenMeldCliCommands as eo, createDoctorFailedGuideError as er, postLocalParticipationMutationReconcile as et, runSpaceSend as f, parseCliViewMode as fa, notifyDaemonRouteCatalogChanged as fi, createProfileByKind as fn, enqueueAgentActivityHookEvent as fo, createSpaceResultGuideError as fr, runDaemonBackgroundStartForDecision as ft, buildHumanReadSignalsTranscriptItems as g, requireOpenMeldProfile as ga, buildOnboardingPlan as gi, ensureAgentProfileRuntimeBinding as gn, bindProject as go, createStartAgentIdentityGuideError as gr, runDaemonReinstall as gt, runSpaceWriteWithPasswordRetry as h, isSelectedOpenMeldProfileRequiredError as ha, buildDaemonRouteObservationPresentation as hi, promptTextEntry as hn, removeProjectOutbox as ho, createSpaceUpdatesGuideError as hr, runDaemonInterrupt as ht, runSpaceCreate as i, writeVersionState as ia, validateCustomProfileWorkspacePath as ii, evaluateCommandAuthentication as in, readDaemonServiceContract as io, createResetConfirmationGuideError as ir, renderOpenMeldBrandBlockLines as it, resolveOpenMeldProfileForSpaceCommand as j, createAuthenticationError as ja, parseAgentControllerRef as ji, buildDispatchResultMessageReadProjection as jn, errLine as jo, buildDualViewGuideMessage as jr, fetchSpaceUpdates as jt, assertValidSpaceIdTarget as k, buildAgentAuthenticationGuide as ka, getAgentControllerPermissionModeFieldLabel as ki, upsertSpaceConfig as kn, sanitizeTerminalDisplayText as ko, DualViewGuideError as kr, runDaemonStartupPreflight as kt, runSpaceList as l, resolveCurrentDaemonExpectedVersion as la, listAgentTargetStates as li, buildAuthStatusRows as ln, resolveObservedAgentActivityBinding as lo, createSpaceMenuGuideError as lr, resolveSpaceSendText as lt, runSpaceReadWithPasswordRetry as m, resolveViewProfileKey as ma, PREPARE_SESSION_RECONNECT_GRACE_MS as mi, resolveCreateProfileName as mn, readAgentActivityOutboxHealth as mo, createSpaceTargetGuideError as mr, runDaemonInstall as mt, promptAndConfirmSpacePassword as n, fetchLatestPackageInfo as na, setCustomProfileWorkspace as ni, buildCommandAuthenticationPromptMessage as nn, resolveUserFacingCliEntryCommand as no, createProfileCreateGuideError as nr, colorizeDisplayProfileLabel as nt, runSpaceHistory as o, resolveOpenMeldDistribution as oa, syncDeviceRuntimeStateProjection as oi, runAuthLogout as on, readAgentActivityContextForPath as oo, createSpaceAliasTargetGuideError as or, renderOpenMeldLogo as ot, runSpaceWatch as p, resolveRuntimeContext as pa, resolveLocalRegistryAgentIdFromAgentControllerRef as pi, resolveCreateProfileKind as pn, removeProjectInbox as po, createSpaceSubcommandTargetGuideError as pr, runDaemonCancel as pt, runAgentsDisable as q, resolveAgentActivityDispatcherCommand as qa, isDaemonServiceJobNeverSpawned as qi, readDispatchSpaceActionContextFromEnv as qn, resolveGatewayChainReadiness as qr, runSkillsInstall as qt, runSpaceAddMembers as r, readVersionState as ra, setOpenMeldManagedProfileWorkspace as ri, ensureCommandAuthenticationOrCancel as rn, syncLocalAgentActivity as ro, createProfileMenuGuideError as rr, printOpenMeldBanner as rt, runSpaceJoin as s, resolveDaemonRuntimeContractCompatibility as sa, createPrimaryBindingReadSession as si, runAuthMenu as sn, removeAgentActivityContextCache as so, createSpaceContractSetGuideError as sr, renderOpenMeldTagline as st, buildCreateSpacePasswordPromptConfig as t, fetchLatestCliBinaryRelease as ta, resolveConfiguredProfileWorkspacePath as ti, assessServerRequiredVersion as tn, resolveSetupFollowUpCliEntryCommand as to, createProfileActionGuideError as tr, colorizeAgentLabel as tt, runSpacePassword as u, createPresenter as ua, reconcileNewRunnableBuiltinAgentsForSetup as ui, buildAuthStatusSnapshot as un, normalizeSharedSessionTitle as uo, createSpacePublicationSetGuideError as ur, runDaemon as ut, buildIdentityOnlyMembersSnapshotForReadProjection as v, createOpenMeldAgentProfile as va, buildDaemonServiceTargetSpec as vi, resolveServiceParticipationReadiness as vn, listProjectConnectionsWithStatus as vo, createUpgradeConfirmationGuideError as vr, runDaemonSnapshot as vt, buildHumanReplyContextSummary as w, updateOpenMeldProfile as wa, resolveDaemonDeviceId as wi, collectLocalAgentControllerInventory as wn, canonicalizeLocalProjectPath as wo, getCliVersionInfo as wr, buildProfileWorkspaceRows as wt, toSpaceMetaUpsertInput as x, listOpenMeldProfiles as xa, classifyDaemonServiceWakeability as xi, submitProfileRuntimeAgentControllerReport as xn, runIfAgentActivityBindingGenerationIsCurrent as xo, registerSpaceMemberSelectionOptions as xr, runDaemonTeardownStrict as xt, loadSpaceIdentityDirectoryOrNull as y, createOpenMeldHumanProfile as ya, resolveDaemonServiceAlignmentDecision as yi, assessActionParticipationCandidate as yn, migrateProjectBindingStore as yo, getCommandEntryContract as yr, runDaemonStatusFlow as yt, resolveAgentProfileSetup as z, isAgentActivityRouteRegistered as za, isCurrentCommandCheckScopeActive as zi, promptSearchMultiselect as zn, getOrganizationJoinLinkResponseSchema as zo, formatDaemonFailureContextText as zr, resolveLocalComponentsStatus as zt };
|
|
104517
104542
|
|
|
104518
|
-
//# sourceMappingURL=command-
|
|
104543
|
+
//# sourceMappingURL=command-CDkR9Ss2.js.map
|