openmeld 0.3.78 → 0.3.80
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-BP7P_X-r.js → add-me-membership-BCjOGyKq.js} +2 -2
- package/dist/{add-me-membership-BP7P_X-r.js.map → add-me-membership-BCjOGyKq.js.map} +1 -1
- package/dist/{command-Pj7c1mH5.js → command-BRUv0I9O.js} +54 -33
- package/dist/{command-Pj7c1mH5.js.map → command-BRUv0I9O.js.map} +1 -1
- package/dist/openmeld.js +2 -2
- 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-BRUv0I9O.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-BCjOGyKq.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"add-me-membership-
|
|
1
|
+
{"version":3,"file":"add-me-membership-BCjOGyKq.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.80",
|
|
38
38
|
openMeldReleaseDate: "2026-08-21",
|
|
39
39
|
description: "OpenMeld CLI - https://openmeld.ai",
|
|
40
40
|
license: "MIT",
|
|
@@ -1836,9 +1836,14 @@ function resolveCanonicalLocalProjectConnection(canonicalPath, connections) {
|
|
|
1836
1836
|
return longestMatch;
|
|
1837
1837
|
}
|
|
1838
1838
|
async function resolveLocalProjectConnectionForPath(input) {
|
|
1839
|
-
const
|
|
1839
|
+
const sameLaneConnections = input.organizationId === void 0 ? input.connections : input.connections.filter((connection) => connection.organizationId === input.organizationId);
|
|
1840
|
+
const resolvedPath = resolve(input.path);
|
|
1841
|
+
const pathAliases = localPathAliases(resolvedPath);
|
|
1842
|
+
const possibleConnections = sameLaneConnections.filter((connection) => pathAliases.some((candidate) => isPathWithin(candidate, connection.repositoryPath)));
|
|
1843
|
+
if (possibleConnections.length === 0) return null;
|
|
1844
|
+
const canonicalPath = await canonicalizeLocalProjectPath(resolvedPath);
|
|
1840
1845
|
if (canonicalPath === null) return null;
|
|
1841
|
-
return resolveCanonicalLocalProjectConnection(canonicalPath,
|
|
1846
|
+
return resolveCanonicalLocalProjectConnection(canonicalPath, possibleConnections);
|
|
1842
1847
|
}
|
|
1843
1848
|
function findExactLocalProjectConnection(input) {
|
|
1844
1849
|
return input.connections.find((connection) => connection.organizationId === input.organizationId && connection.projectId === input.projectId && (input.bindingGeneration === void 0 || connection.bindingGeneration === input.bindingGeneration) && (input.canonicalPath === void 0 || connection.repositoryPath === input.canonicalPath)) ?? null;
|
|
@@ -1846,6 +1851,16 @@ function findExactLocalProjectConnection(input) {
|
|
|
1846
1851
|
function isPathWithin(candidate, root) {
|
|
1847
1852
|
return candidate === root || candidate.startsWith(`${root}${sep}`);
|
|
1848
1853
|
}
|
|
1854
|
+
function localPathAliases(path) {
|
|
1855
|
+
const privatePrefix = `${sep}private`;
|
|
1856
|
+
if (path.startsWith(`${privatePrefix}${sep}`)) return [path, path.slice(privatePrefix.length)];
|
|
1857
|
+
if ([
|
|
1858
|
+
`${sep}etc`,
|
|
1859
|
+
`${sep}tmp`,
|
|
1860
|
+
`${sep}var`
|
|
1861
|
+
].some((root) => path === root || path.startsWith(`${root}${sep}`))) return [path, `${privatePrefix}${path}`];
|
|
1862
|
+
return [path];
|
|
1863
|
+
}
|
|
1849
1864
|
function isNodeError$10(error, code) {
|
|
1850
1865
|
return Boolean(error && typeof error === "object" && "code" in error && error.code === code);
|
|
1851
1866
|
}
|
|
@@ -16673,48 +16688,54 @@ function isKnownOwnedClaudeGroup(value, knownArtifacts) {
|
|
|
16673
16688
|
return knownArtifacts.some((artifacts) => isOwnedClaudeGroup(value, artifacts) || isLegacyOwnedClaudeGroup(value, artifacts));
|
|
16674
16689
|
}
|
|
16675
16690
|
function findKnownCodexBlock(raw, knownArtifacts) {
|
|
16676
|
-
|
|
16691
|
+
return findCodexBlock(raw, knownArtifacts.flatMap((artifacts) => [
|
|
16677
16692
|
artifacts.codexBlock,
|
|
16678
16693
|
artifacts.legacyCodexBlock,
|
|
16679
16694
|
artifacts.preTaskLifecycleCodexBlock,
|
|
16680
16695
|
artifacts.preTaskLifecycleLegacyCodexBlock
|
|
16681
|
-
])
|
|
16682
|
-
|
|
16696
|
+
]));
|
|
16697
|
+
}
|
|
16698
|
+
function hasCurrentCodexBlock(raw, knownArtifacts) {
|
|
16699
|
+
return Boolean(findCodexBlock(raw, knownArtifacts.flatMap((artifacts) => [artifacts.codexBlock, artifacts.legacyCodexBlock])));
|
|
16700
|
+
}
|
|
16701
|
+
function findCodexBlock(raw, expectedBlocks) {
|
|
16702
|
+
for (const expectedBlock of expectedBlocks) {
|
|
16703
|
+
const normalized = expectedBlock.trim();
|
|
16683
16704
|
if (raw.includes(normalized)) return {
|
|
16684
16705
|
block: normalized,
|
|
16685
16706
|
preservedTail: ""
|
|
16686
16707
|
};
|
|
16687
16708
|
const lines = normalized.split("\n");
|
|
16709
|
+
const beginMarker = lines[0];
|
|
16688
16710
|
const endMarker = lines.at(-1);
|
|
16689
|
-
if (!endMarker) continue;
|
|
16690
|
-
|
|
16691
|
-
|
|
16692
|
-
|
|
16693
|
-
|
|
16694
|
-
|
|
16695
|
-
|
|
16696
|
-
|
|
16697
|
-
|
|
16698
|
-
|
|
16699
|
-
|
|
16700
|
-
|
|
16701
|
-
}
|
|
16711
|
+
if (!(beginMarker && endMarker)) continue;
|
|
16712
|
+
let beginMarkerIndex = raw.indexOf(beginMarker);
|
|
16713
|
+
while (beginMarkerIndex >= 0) {
|
|
16714
|
+
const endMarkerIndex = raw.indexOf(endMarker, beginMarkerIndex + beginMarker.length);
|
|
16715
|
+
if (endMarkerIndex < 0) break;
|
|
16716
|
+
const candidate = raw.slice(beginMarkerIndex, endMarkerIndex + endMarker.length);
|
|
16717
|
+
const trustState = extractCodexTrustState(candidate, endMarker);
|
|
16718
|
+
if (trustState?.blockWithoutTrustState === normalized) return {
|
|
16719
|
+
block: candidate,
|
|
16720
|
+
preservedTail: `\n${trustState.value}`
|
|
16721
|
+
};
|
|
16722
|
+
beginMarkerIndex = raw.indexOf(beginMarker, beginMarkerIndex + beginMarker.length);
|
|
16723
|
+
}
|
|
16702
16724
|
}
|
|
16703
16725
|
return null;
|
|
16704
16726
|
}
|
|
16705
|
-
function
|
|
16706
|
-
|
|
16707
|
-
|
|
16708
|
-
|
|
16709
|
-
|
|
16710
|
-
|
|
16711
|
-
|
|
16712
|
-
|
|
16713
|
-
|
|
16714
|
-
|
|
16715
|
-
|
|
16716
|
-
|
|
16717
|
-
}));
|
|
16727
|
+
function extractCodexTrustState(block, endMarker) {
|
|
16728
|
+
const trustStateHeaders = [...block.matchAll(/^\[hooks\.state\]$/gm)];
|
|
16729
|
+
if (trustStateHeaders.length !== 1) return null;
|
|
16730
|
+
const trustStateStart = trustStateHeaders[0]?.index;
|
|
16731
|
+
if (trustStateStart === void 0) return null;
|
|
16732
|
+
const boundaryCandidates = [block.indexOf("\n[[hooks.", trustStateStart + 13), block.indexOf(`\n${endMarker}`, trustStateStart + 13)].filter((index) => index >= 0);
|
|
16733
|
+
if (boundaryCandidates.length === 0) return null;
|
|
16734
|
+
const trustStateEnd = Math.min(...boundaryCandidates) + 1;
|
|
16735
|
+
return {
|
|
16736
|
+
blockWithoutTrustState: block.slice(0, trustStateStart) + block.slice(trustStateEnd),
|
|
16737
|
+
value: block.slice(trustStateStart, trustStateEnd).trimEnd()
|
|
16738
|
+
};
|
|
16718
16739
|
}
|
|
16719
16740
|
function isOwnedClaudeGroupForCommand(value, command) {
|
|
16720
16741
|
if (!isRecord$6(value) || Object.keys(value).length !== 1 || !Array.isArray(value.hooks)) return false;
|
|
@@ -106918,4 +106939,4 @@ function isHumanInteractiveSpaceRuntime(runtime) {
|
|
|
106918
106939
|
//#endregion
|
|
106919
106940
|
export { formatTransportModeDisplay as $, formatOpenMeldCliCommands 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, renderTextInfoCard as Ao, formatDualViewGuideForDisplay as Ar, readDaemonStartFailureLogTailLines as At, runAgents as B, requestLocalAgentActivitySync as Ba, resetCurrentCommandCheckState as Bi, promptSearchSelect as Bn, cliJsonSkillsShowEnvelopeSchema as Bo, resolveServiceReadinessFromServiceStatus as Br, writeInstalledLocalComponentsSnapshot as Bt, buildFormalSignalReadPayload as C, resolveOpenMeldProfile as Ca, ensureDaemonRuntimePaths as Ci, submitRuntimeAgentControllerReports as Cn, runIfAgentActivityBindingGenerationIsCurrent as Co, registerSkillsTargetSelectionOptions as Cr, buildProfileWorkspacePresentation as Ct, isSpaceCommandOutputHandledError as D, getSelectedOpenMeldProfileId as Da, createAgentExecutionStatusDisplayRows as Di, resolveLocalAgentControllerReportDecision as Dn, enqueueControllerTaskLifecycleEventWhileLocked as Do, registerBuiltinAgentSelectionOptions as Dr, createDelayedSpinner as Dt, parseEnvelope as E, clearSelectedOpenMeldProfileId as Ea, buildAgentControllerRef as Ei, resolveLocalAgentControllerLaunchability as En, canonicalizeLocalProjectPath as Eo, registerAuthLoginRequestOptions as Er, emitDaemonAgentOverview as Et, prepareLocalAgentReadiness as F, getProfileDefaultView as Fa, resolveEvidenceSyncHealth as Fi, buildSpaceRoundReadProjection as Fn, outLine as Fo, areAllowedActionsEquivalent as Fr, readGatewayJsonResponse as Ft, runAgentsCustomUpdate as G, AGENT_ACTIVITY_INTEGRATION_OWNER as Ga, readCurrentObservedDaemonRuntimeStatus as Gi, assertDispatchOwnedRuntimePublicWriteAllowed as Gn, package_default as Go, formatHumanReplyReadinessReason as Gr, runSkillsCheck as Gt, runAgentsCustomAdd as H, registerAgentActivityRoute as Ha, inspectDaemonServiceInventory as Hi, runInteractivePrompt as Hn, organizationJoinLinkErrorResponseSchema as Ho, resolveCurrentReplyReadinessSnapshot as Hr, runDaemonServiceParticipationGate as Ht, buildReplyReadinessGuidance as I, setProfileDefaultView as Ia, resolveNativeAgentControllerPermissionModeForController as Ii, buildUpdatesReplyWorkflowProjection as In, cliBinaryDeltaPatchSchema as Io, buildAgentFacingPublicationModeGuideLines as Ir, readGatewayTextResponse as It, runAgentsEnable as J, readAgentActivityIntegrationStatus as Ja, readDaemonServiceJobCrashExitCode as Ji, writeDispatchSpaceActionRecord as Jn, resolveOpenClawLocalDiagnosticsValue as Jr, runSkillsUninstall as Jt, runAgentsDetect as K, defaultManagedIntegrationPaths 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, cliJsonOutputEnvelopeSchema as Lo, canonicalizeAllowedActions as Lr, toStructuredGatewayFailure as Lt, resolveSpaceAccessLabel as M, resolveAuthenticationGuidance as Ma, resolveAgentControllerPermissionModeForController as Mi, buildDispatchResultReplyWorkflowProjection as Mn, emitCliJsonEnvelope as Mo, formatAgentOverviewPayload as Mr, createCliSpaceApi as Mt, emitSpaceAgentOverview as N, resolveAuthenticationGuidanceFromError as Na, resolveAgentExecutionStatus as Ni, buildSignalIndex as Nn, errLine as No, OPENMELD_AGENT_MENTAL_MODEL_LINES as Nr, fetchSpaceMeta as Nt, assertFullSignalIdArgument as O, setSelectedOpenMeldProfileId as Oa, getAgentControllerPermissionModeDisplayMetadata as Oi, inspectSpaceCacheFile as On, readControllerTaskLifecycleOutboxHealth as Oo, buildAgentOverviewFromContract as Or, shouldEmitAgentOverview as Ot, emitSpaceCliAgentOverview as P, resolveAuthenticationGuidanceFromMessage as Pa, resolveAgentProfileEditCapabilities as Pi, buildSignalMessageReadProjection as Pn, outJsonLine as Po, SPACE_CONTRACT_ALLOWED_ACTION_ORDER as Pr, updateSpaceMeta as Pt, runAgentsShow as Q, formatOpenMeldCliCommand 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, cliJsonSkillsListEnvelopeSchema as Ro, runDaemonServiceFullAlignment as Rr, parseJsonResponse$1 as Rt, buildFormalDispatchResultReadPayload as S, primeOpenMeldProfilesSessionCache as Sa, readRecentDaemonLifecycleEvents as Si, submitRuntimeAgentControllerReport as Sn, removeProjectConnection 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, unbindProject as To, registerDaemonControlTargetOptions as Tr, reconcileCliVersionView as Tt, runAgentsCustomList as U, resolveAgentActivityRouteForPath as Ua, resolveVersionChangeDirection as Ui, assessCliUpdate as Un, revokeOrganizationJoinLinkResponseSchema as Uo, formatAgentReplyReadinessLabel as Ur, runDaemonStartDecisionPrompt as Ut, runAgentsConfig as V, isAgentActivityRouteRegistered as Va, startCurrentCommandCheckScope as Vi, isReturnKeypress as Vn, getOrganizationJoinLinkResponseSchema as Vo, resolveDaemonServiceFreshnessWarning as Vr, resolveDaemonServiceParticipationStatus as Vt, runAgentsCustomRemove as W, unregisterAgentActivityRoute as Wa, readCurrentDaemonRuntimeContext as Wi, isCliUpdateCheckApplicable as Wn, compareAgentControllerRefsForDisplay as Wo, formatDeviceReplyReadinessLabel as Wr, collectSkillsReadinessSnapshot as Wt, runAgentsManage as X, uninstallAgentActivityIntegrations as Xa, buildInstallSelfJsonPayload as Xi, resolveElapsedTimeMs as Xn, createModelCatalogReadSession as Xr, ensureLocalSkills as Xt, runAgentsList as Y, resolveAgentActivityDispatcherCommand as Ya, resolveDaemonServiceManager as Yi, formatElapsedTime as Yn, syncProfileWorkspaceState as Yr, runSkillsUpdate as Yt, runAgentsRepair as Z, formatInlineOpenMeldCliCommands 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, removeProjectOutbox as _o, createStartAuthenticationGuideError as _r, runDaemonRunAfterEntryChecks as _t, runSpaceDelete as a, isBinaryDistribution as aa, describeProfileWorkspacePathValidationFailure as ai, runAuthLogin as an, syncLocalAgentActivity as ao, createSpaceAddMembersGuideError as ar, renderOpenMeldHeader as at, loadSpaceSignalIndexOrNull as b, deleteOpenMeldProfile as ba, classifyDaemonServiceRunStartability as bi, computeRetryDelayMs as bn, listProjectConnectionsWithStatus as bo, getCommandHintsFromContract as br, runDaemonStop as bt, runSpaceLeave as c, toStartBackgroundHelperExecutionCompatibility as ca, resolveAgentProfilePrimaryAgentControllerReport as ci, runAuthStatus as cn, readAgentActivityContextForPath as co, createSpaceLeaveGuideError as cr, resolveGatewayWebOrigin as ct, runSpaceRemoveMembers as d, formatMessage as da, listBuiltinAgentsRegistryEntries as di, formatActiveOrganizationLabel as dn, resolveObservedAgentActivityBinding as do, createSpaceRemoveMembersGuideError as dr, runDaemonAutostart as dt, ensureVersionStateReady as ea, readProfileWorkspaceConfig as ei, connectWebSocket as en, formatOpenMeldCliLine as eo, createDoctorFailedGuideError as er, postLocalParticipationMutationReconcile as et, runSpaceSend as f, parseCliViewMode as fa, notifyDaemonRouteCatalogChanged as fi, createProfileByKind as fn, normalizeSharedSessionTitle as fo, createSpaceResultGuideError as fr, runDaemonBackgroundStartForDecision as ft, buildHumanReadSignalsTranscriptItems as g, requireOpenMeldProfile as ga, buildOnboardingPlan as gi, ensureAgentProfileRuntimeBinding as gn, readAgentActivityOutboxHealth as go, createStartAgentIdentityGuideError as gr, runDaemonReinstall as gt, runSpaceWriteWithPasswordRetry as h, isSelectedOpenMeldProfileRequiredError as ha, buildDaemonRouteObservationPresentation as hi, promptTextEntry as hn, removeProjectInbox as ho, createSpaceUpdatesGuideError as hr, runDaemonInterrupt as ht, runSpaceCreate as i, writeVersionState as ia, validateCustomProfileWorkspacePath as ii, evaluateCommandAuthentication as in, resolveUserFacingCliEntryCommand as io, createResetConfirmationGuideError as ir, renderOpenMeldBrandBlockLines as it, resolveOpenMeldProfileForSpaceCommand as j, createAuthenticationError as ja, parseAgentControllerRef as ji, buildDispatchResultMessageReadProjection as jn, sanitizeTerminalDisplayText as jo, buildDualViewGuideMessage as jr, fetchSpaceUpdates as jt, assertValidSpaceIdTarget as k, buildAgentAuthenticationGuide as ka, getAgentControllerPermissionModeFieldLabel as ki, upsertSpaceConfig as kn, renderInfoCard as ko, DualViewGuideError as kr, runDaemonStartupPreflight as kt, runSpaceList as l, resolveCurrentDaemonExpectedVersion as la, listAgentTargetStates as li, buildAuthStatusRows as ln, removeAgentActivityContextCache as lo, createSpaceMenuGuideError as lr, resolveSpaceSendText as lt, runSpaceReadWithPasswordRetry as m, resolveViewProfileKey as ma, PREPARE_SESSION_RECONNECT_GRACE_MS as mi, resolveCreateProfileName as mn, enqueueAgentActivityHookEvent as mo, createSpaceTargetGuideError as mr, runDaemonInstall as mt, promptAndConfirmSpacePassword as n, fetchLatestPackageInfo as na, setCustomProfileWorkspace as ni, buildCommandAuthenticationPromptMessage as nn, formatProfileAwareOpenMeldCliCommands as no, createProfileCreateGuideError as nr, colorizeDisplayProfileLabel as nt, runSpaceHistory as o, resolveOpenMeldDistribution as oa, syncDeviceRuntimeStateProjection as oi, runAuthLogout as on, readDaemonServiceContract as oo, createSpaceAliasTargetGuideError as or, renderOpenMeldLogo as ot, runSpaceWatch as p, resolveRuntimeContext as pa, resolveLocalRegistryAgentIdFromAgentControllerRef as pi, resolveCreateProfileKind as pn, readCodexSessionTitles as po, createSpaceSubcommandTargetGuideError as pr, runDaemonCancel as pt, runAgentsDisable as q, installAgentActivityIntegrations 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, resolveSetupFollowUpCliEntryCommand as ro, createProfileMenuGuideError as rr, printOpenMeldBanner as rt, runSpaceJoin as s, resolveDaemonRuntimeContractCompatibility as sa, createPrimaryBindingReadSession as si, runAuthMenu as sn, upsertDaemonServiceContract as so, createSpaceContractSetGuideError as sr, renderOpenMeldTagline as st, buildCreateSpacePasswordPromptConfig as t, fetchLatestCliBinaryRelease as ta, resolveConfiguredProfileWorkspacePath as ti, assessServerRequiredVersion as tn, formatOpenMeldCliTextBlock as to, createProfileActionGuideError as tr, colorizeAgentLabel as tt, runSpacePassword as u, createPresenter as ua, reconcileNewRunnableBuiltinAgentsForSetup as ui, buildAuthStatusSnapshot as un, buildAgentActivityEvent as uo, createSpacePublicationSetGuideError as ur, runDaemon as ut, buildIdentityOnlyMembersSnapshotForReadProjection as v, createOpenMeldAgentProfile as va, buildDaemonServiceTargetSpec as vi, resolveServiceParticipationReadiness as vn, bindProject as vo, createUpgradeConfirmationGuideError as vr, runDaemonSnapshot as vt, buildHumanReplyContextSummary as w, updateOpenMeldProfile as wa, resolveDaemonDeviceId as wi, collectLocalAgentControllerInventory as wn, setDefaultProjectConnection as wo, getCliVersionInfo as wr, buildProfileWorkspaceRows as wt, toSpaceMetaUpsertInput as x, listOpenMeldProfiles as xa, classifyDaemonServiceWakeability as xi, submitProfileRuntimeAgentControllerReport as xn, migrateProjectBindingStore as xo, registerSpaceMemberSelectionOptions as xr, runDaemonTeardownStrict as xt, loadSpaceIdentityDirectoryOrNull as y, createOpenMeldHumanProfile as ya, resolveDaemonServiceAlignmentDecision as yi, assessActionParticipationCandidate as yn, listProjectBindings as yo, getCommandEntryContract as yr, runDaemonStatusFlow as yt, resolveAgentProfileSetup as z, LocalDaemonControlPlaneClientError as za, isCurrentCommandCheckScopeActive as zi, promptSearchMultiselect as zn, cliJsonSkillsLoadEnvelopeSchema as zo, formatDaemonFailureContextText as zr, resolveLocalComponentsStatus as zt };
|
|
106920
106941
|
|
|
106921
|
-
//# sourceMappingURL=command-
|
|
106942
|
+
//# sourceMappingURL=command-BRUv0I9O.js.map
|