openmeld 0.3.65 → 0.3.66
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-V07v7WN2.js → add-me-membership-CSWPkB6A.js} +2 -2
- package/dist/{add-me-membership-V07v7WN2.js.map → add-me-membership-CSWPkB6A.js.map} +1 -1
- package/dist/{command-DyBhBtjU.js → command-CrWGpY8O.js} +106 -12
- package/dist/{command-DyBhBtjU.js.map → command-CrWGpY8O.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-CrWGpY8O.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-CSWPkB6A.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"add-me-membership-
|
|
1
|
+
{"version":3,"file":"add-me-membership-CSWPkB6A.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.66",
|
|
38
38
|
openMeldReleaseDate: "2026-08-18",
|
|
39
39
|
description: "OpenMeld CLI - https://openmeld.ai",
|
|
40
40
|
license: "MIT",
|
|
@@ -4096,12 +4096,16 @@ function startLocalAgentActivitySyncLoop(input) {
|
|
|
4096
4096
|
let inFlight = null;
|
|
4097
4097
|
let nextContextRefreshAtMs = 0;
|
|
4098
4098
|
let nextReconciliationAtMs = 0;
|
|
4099
|
+
let pendingContextRefresh = false;
|
|
4100
|
+
let pendingReconciliation = false;
|
|
4099
4101
|
const stopWatchers = startAgentActivityTranscriptWatchers({ onError: input.onError });
|
|
4100
4102
|
const run = () => {
|
|
4101
4103
|
if (stopped || inFlight) return;
|
|
4102
4104
|
const nowMs = Date.now();
|
|
4103
|
-
const refreshContext = nowMs >= nextContextRefreshAtMs;
|
|
4104
|
-
const reconcile = nowMs >= nextReconciliationAtMs;
|
|
4105
|
+
const refreshContext = pendingContextRefresh || nowMs >= nextContextRefreshAtMs;
|
|
4106
|
+
const reconcile = pendingReconciliation || nowMs >= nextReconciliationAtMs;
|
|
4107
|
+
pendingContextRefresh = false;
|
|
4108
|
+
pendingReconciliation = false;
|
|
4105
4109
|
if (refreshContext) nextContextRefreshAtMs = nowMs + 6e4;
|
|
4106
4110
|
if (reconcile) nextReconciliationAtMs = nowMs + 15 * 6e4;
|
|
4107
4111
|
inFlight = syncLocalAgentActivity({
|
|
@@ -4109,16 +4113,27 @@ function startLocalAgentActivitySyncLoop(input) {
|
|
|
4109
4113
|
refreshContext
|
|
4110
4114
|
}).then((result) => input.onResult?.(result)).catch((error) => input.onError?.(error)).finally(() => {
|
|
4111
4115
|
inFlight = null;
|
|
4116
|
+
if (!stopped && (pendingContextRefresh || pendingReconciliation)) queueMicrotask(run);
|
|
4112
4117
|
});
|
|
4113
4118
|
};
|
|
4114
4119
|
const timer = setInterval(run, input.intervalMs ?? 5e3);
|
|
4115
4120
|
timer.unref();
|
|
4116
4121
|
run();
|
|
4117
|
-
return
|
|
4118
|
-
|
|
4119
|
-
|
|
4120
|
-
|
|
4121
|
-
|
|
4122
|
+
return {
|
|
4123
|
+
requestSync: (request = {}) => {
|
|
4124
|
+
if (stopped) return;
|
|
4125
|
+
pendingReconciliation ||= request.reconcile !== false;
|
|
4126
|
+
pendingContextRefresh ||= request.refreshContext !== false;
|
|
4127
|
+
run();
|
|
4128
|
+
},
|
|
4129
|
+
stop: async () => {
|
|
4130
|
+
stopped = true;
|
|
4131
|
+
pendingContextRefresh = false;
|
|
4132
|
+
pendingReconciliation = false;
|
|
4133
|
+
clearInterval(timer);
|
|
4134
|
+
await inFlight;
|
|
4135
|
+
await stopWatchers();
|
|
4136
|
+
}
|
|
4122
4137
|
};
|
|
4123
4138
|
}
|
|
4124
4139
|
async function unavailable(input, observedCount, reason) {
|
|
@@ -53667,6 +53682,41 @@ async function refreshManagedAgentActivityIntegrations(input) {
|
|
|
53667
53682
|
status: "ready"
|
|
53668
53683
|
};
|
|
53669
53684
|
}
|
|
53685
|
+
function createManagedAgentActivityIntegrationRefreshScheduler(input) {
|
|
53686
|
+
let inFlight = null;
|
|
53687
|
+
let pending = false;
|
|
53688
|
+
let scheduled = false;
|
|
53689
|
+
let stopped = false;
|
|
53690
|
+
const refresh = input.refresh ?? refreshManagedAgentActivityIntegrations;
|
|
53691
|
+
const schedule = () => {
|
|
53692
|
+
if (stopped || scheduled) return;
|
|
53693
|
+
scheduled = true;
|
|
53694
|
+
queueMicrotask(() => {
|
|
53695
|
+
scheduled = false;
|
|
53696
|
+
run();
|
|
53697
|
+
});
|
|
53698
|
+
};
|
|
53699
|
+
const run = () => {
|
|
53700
|
+
if (stopped || inFlight || !pending) return;
|
|
53701
|
+
pending = false;
|
|
53702
|
+
inFlight = refresh().then((result) => input.onResult?.(result)).catch((error) => input.onError?.(error)).finally(() => {
|
|
53703
|
+
inFlight = null;
|
|
53704
|
+
if (pending) schedule();
|
|
53705
|
+
});
|
|
53706
|
+
};
|
|
53707
|
+
return {
|
|
53708
|
+
request: () => {
|
|
53709
|
+
if (stopped) return;
|
|
53710
|
+
pending = true;
|
|
53711
|
+
schedule();
|
|
53712
|
+
},
|
|
53713
|
+
stop: async () => {
|
|
53714
|
+
stopped = true;
|
|
53715
|
+
pending = false;
|
|
53716
|
+
await inFlight;
|
|
53717
|
+
}
|
|
53718
|
+
};
|
|
53719
|
+
}
|
|
53670
53720
|
//#endregion
|
|
53671
53721
|
//#region src/transport/ws.ts
|
|
53672
53722
|
const MAX_UPGRADE_REJECTION_BODY_BYTES = 2048;
|
|
@@ -68374,7 +68424,19 @@ function handleLocalProjectControlSocketFrame(input) {
|
|
|
68374
68424
|
handleLocalProjectControlFrame({
|
|
68375
68425
|
deviceId: input.deviceId,
|
|
68376
68426
|
frame: input.frame
|
|
68377
|
-
}).then((resultFrame) =>
|
|
68427
|
+
}).then((resultFrame) => {
|
|
68428
|
+
input.socket.send(JSON.stringify(resultFrame));
|
|
68429
|
+
if (!isConnectedLocalProjectResult(resultFrame)) return;
|
|
68430
|
+
try {
|
|
68431
|
+
input.onLocalProjectConnected?.();
|
|
68432
|
+
} catch (error) {
|
|
68433
|
+
emitRunLine({
|
|
68434
|
+
presenter: input.presenter,
|
|
68435
|
+
code: "daemon.run.agent_activity_connection_signal_failed",
|
|
68436
|
+
text: `Agent Activity connection signal failed: ${toErrorMessage$39(error)}`
|
|
68437
|
+
});
|
|
68438
|
+
}
|
|
68439
|
+
}).catch((error) => {
|
|
68378
68440
|
emitRunLine({
|
|
68379
68441
|
presenter: input.presenter,
|
|
68380
68442
|
code: "daemon.run.local_project_control_failed",
|
|
@@ -68383,6 +68445,10 @@ function handleLocalProjectControlSocketFrame(input) {
|
|
|
68383
68445
|
});
|
|
68384
68446
|
return true;
|
|
68385
68447
|
}
|
|
68448
|
+
function isConnectedLocalProjectResult(frame) {
|
|
68449
|
+
if (frame.code !== "daemon.local_project_control.connect_candidate_result" && frame.code !== "daemon.local_project_control.connect_declared_path_result") return false;
|
|
68450
|
+
return "result" in frame.payload && frame.payload.result.status === "connected";
|
|
68451
|
+
}
|
|
68386
68452
|
function handleLocalFolderPickerSocketFrame(input) {
|
|
68387
68453
|
if (!input.frame.code.startsWith("daemon.local_folder_picker.")) return false;
|
|
68388
68454
|
const parsed = localFolderPickerDaemonFrameSchema.safeParse(input.frame);
|
|
@@ -69749,6 +69815,7 @@ async function runDaemonSocketSession(input) {
|
|
|
69749
69815
|
}) || handleLocalProjectControlSocketFrame({
|
|
69750
69816
|
deviceId: input.deviceId,
|
|
69751
69817
|
frame: parsedFrame,
|
|
69818
|
+
onLocalProjectConnected: input.onLocalProjectConnected,
|
|
69752
69819
|
presenter: input.presenter,
|
|
69753
69820
|
socket: input.socket
|
|
69754
69821
|
}) || handleComputerFileAccessSocketFrame({
|
|
@@ -70525,7 +70592,7 @@ const runDaemonServiceLoop = async (input) => {
|
|
|
70525
70592
|
});
|
|
70526
70593
|
}
|
|
70527
70594
|
});
|
|
70528
|
-
const
|
|
70595
|
+
const agentActivitySync = startLocalAgentActivitySyncLoop({
|
|
70529
70596
|
onError: (error) => {
|
|
70530
70597
|
emitRunLine({
|
|
70531
70598
|
presenter: input.presenter,
|
|
@@ -70551,6 +70618,31 @@ const runDaemonServiceLoop = async (input) => {
|
|
|
70551
70618
|
});
|
|
70552
70619
|
}
|
|
70553
70620
|
});
|
|
70621
|
+
const agentActivityIntegrationRefresh = createManagedAgentActivityIntegrationRefreshScheduler({
|
|
70622
|
+
onError: (error) => {
|
|
70623
|
+
emitRunLine({
|
|
70624
|
+
presenter: input.presenter,
|
|
70625
|
+
code: "daemon.run.agent_activity_integration_refresh_failed",
|
|
70626
|
+
text: `Managed Agent integration refresh failed: ${toErrorMessage$39(error)}`
|
|
70627
|
+
});
|
|
70628
|
+
},
|
|
70629
|
+
onResult: (result) => {
|
|
70630
|
+
if (result.status !== "ready") return;
|
|
70631
|
+
emitRunLine({
|
|
70632
|
+
presenter: input.presenter,
|
|
70633
|
+
code: "daemon.run.agent_activity_integrations_ready",
|
|
70634
|
+
text: "Managed Agent integrations are ready.",
|
|
70635
|
+
payload: result.integrations
|
|
70636
|
+
});
|
|
70637
|
+
}
|
|
70638
|
+
});
|
|
70639
|
+
const activateAgentActivityForProjectConnection = () => {
|
|
70640
|
+
agentActivitySync.requestSync({
|
|
70641
|
+
reconcile: true,
|
|
70642
|
+
refreshContext: true
|
|
70643
|
+
});
|
|
70644
|
+
agentActivityIntegrationRefresh.request();
|
|
70645
|
+
};
|
|
70554
70646
|
try {
|
|
70555
70647
|
emitRunLine({
|
|
70556
70648
|
presenter: input.presenter,
|
|
@@ -70635,6 +70727,7 @@ const runDaemonServiceLoop = async (input) => {
|
|
|
70635
70727
|
failure
|
|
70636
70728
|
});
|
|
70637
70729
|
},
|
|
70730
|
+
onLocalProjectConnected: activateAgentActivityForProjectConnection,
|
|
70638
70731
|
ownerUserId,
|
|
70639
70732
|
profileOwnerName,
|
|
70640
70733
|
presenter: input.presenter,
|
|
@@ -70688,7 +70781,8 @@ const runDaemonServiceLoop = async (input) => {
|
|
|
70688
70781
|
controlPlaneServer.close(),
|
|
70689
70782
|
clearDaemonServiceRuntimeState(),
|
|
70690
70783
|
localFolderPicker.close(),
|
|
70691
|
-
|
|
70784
|
+
agentActivityIntegrationRefresh.stop(),
|
|
70785
|
+
agentActivitySync.stop(),
|
|
70692
70786
|
stopRegistrationReconcile()
|
|
70693
70787
|
]);
|
|
70694
70788
|
}
|
|
@@ -104405,4 +104499,4 @@ function isHumanInteractiveSpaceRuntime(runtime) {
|
|
|
104405
104499
|
//#endregion
|
|
104406
104500
|
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 };
|
|
104407
104501
|
|
|
104408
|
-
//# sourceMappingURL=command-
|
|
104502
|
+
//# sourceMappingURL=command-CrWGpY8O.js.map
|