openmeld 0.3.52 → 0.3.53

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.
@@ -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.52",
37
+ version: "0.3.53",
38
38
  openMeldReleaseDate: "2026-08-13",
39
39
  description: "OpenMeld CLI - https://openmeld.ai",
40
40
  license: "MIT",
@@ -83055,6 +83055,65 @@ function isCliIgnoredIncomingFrame(parsed) {
83055
83055
  return "error" in parsed || parsed.type === "space.agent_stream_delta" || parsed.type === "space.agent_stream_part" || parsed.type === "space.agent_stream_terminal" || parsed.type === "space.signal" || parsed.type === "space.members.changed" || parsed.type === "space.meta.changed" || parsed.type === "agent.readiness.invalidated";
83056
83056
  }
83057
83057
  //#endregion
83058
+ //#region src/ui/public-space-warning.ts
83059
+ const PUBLIC_SPACE_WARNING_TITLE = "⚠️ Check Before You Continue";
83060
+ function resolvePublicSpaceExposure(input) {
83061
+ switch (input.accessMode) {
83062
+ case "public": return "anyone_can_join";
83063
+ case "public_view_join_password": return "anyone_can_view";
83064
+ case "members_only":
83065
+ case "protected": return null;
83066
+ default: return input.passwordProtected === false ? "anyone_can_join" : null;
83067
+ }
83068
+ }
83069
+ function buildPublicSpaceWarningLines(exposure) {
83070
+ return [exposure === "anyone_can_join" ? "Anyone with this Space link can read what is shared here and join." : "Anyone with this Space link can read what is shared here. A password is required to join.", "Only bring an agent if you're comfortable sharing anything it posts with people who have the link."];
83071
+ }
83072
+ function resolveSpaceAccessLabel(input) {
83073
+ switch (input.accessMode) {
83074
+ case "members_only": return "members only";
83075
+ case "public": return "anyone with the link";
83076
+ case "public_view_join_password": return "anyone can view; password required to join";
83077
+ case "protected": return "password required to view and join";
83078
+ default:
83079
+ if (input.passwordProtected === true) return "password required";
83080
+ if (input.passwordProtected === false) return "anyone with the link";
83081
+ return "unknown";
83082
+ }
83083
+ }
83084
+ function buildPublicSpaceJoinConfirmPromptConfig(input) {
83085
+ return {
83086
+ active: "Yes, join this Space",
83087
+ inactive: "No, go back",
83088
+ message: buildPublicSpacePromptMessage("Do you want to join this Space?", input.exposure),
83089
+ vertical: true
83090
+ };
83091
+ }
83092
+ function buildPublicSpaceBringAgentsConfirmPromptConfig(input) {
83093
+ const singular = input.agentCount === 1;
83094
+ return {
83095
+ active: singular ? "Yes, bring this agent" : "Yes, bring these agents",
83096
+ inactive: singular ? "No, join without this agent" : "No, join without these agents",
83097
+ message: buildPublicSpacePromptMessage(singular ? "Bring this agent into a Space that anyone with the link can read?" : "Bring these agents into a Space that anyone with the link can read?", input.exposure),
83098
+ vertical: true
83099
+ };
83100
+ }
83101
+ function buildPublicSpacePromptMessage(question, exposure) {
83102
+ const frame = buildUnifiedCardFrame({
83103
+ title: PUBLIC_SPACE_WARNING_TITLE,
83104
+ rowTextList: buildPublicSpaceWarningLines(exposure),
83105
+ minContentWidth: 76
83106
+ });
83107
+ return [
83108
+ frame.top,
83109
+ frame.empty,
83110
+ ...frame.rows,
83111
+ frame.empty,
83112
+ frame.bottom,
83113
+ question
83114
+ ].join("\n");
83115
+ }
83116
+ //#endregion
83058
83117
  //#region src/space/agent-output-contract.ts
83059
83118
  function normalizeOptionalText$1(value) {
83060
83119
  if (typeof value !== "string") return null;
@@ -83126,6 +83185,7 @@ function normalizeAgentOutputMembersSnapshot(snapshot) {
83126
83185
  };
83127
83186
  }
83128
83187
  function buildAgentSessionMetaPayload(input) {
83188
+ const access = resolveSpaceAccessLabel(input);
83129
83189
  let security = "Unknown";
83130
83190
  if (input.passwordProtected === true) security = "Secure";
83131
83191
  else if (input.passwordProtected === false) security = "Public";
@@ -83135,6 +83195,7 @@ function buildAgentSessionMetaPayload(input) {
83135
83195
  mode: input.mode,
83136
83196
  profileId: input.profileId,
83137
83197
  profileName: input.profileName,
83198
+ access,
83138
83199
  security,
83139
83200
  spaceId: input.spaceId
83140
83201
  };
@@ -83143,6 +83204,8 @@ function buildAgentSessionMetaPayload(input) {
83143
83204
  appendOptionalStringField(payload, "spaceCreatorId", input.spaceCreatorId);
83144
83205
  appendOptionalStringField(payload, "spaceCreatorName", input.spaceCreatorName);
83145
83206
  appendOptionalBooleanField(payload, "passwordProtected", input.passwordProtected);
83207
+ appendOptionalStringField(payload, "accessMode", input.accessMode);
83208
+ appendOptionalStringField(payload, "visibility", input.visibility);
83146
83209
  appendOptionalStringField(payload, "profileKind", input.profileKind);
83147
83210
  appendOptionalStringField(payload, "ownerUserId", input.ownerUserId);
83148
83211
  appendOptionalStringField(payload, "ownerName", input.ownerName);
@@ -83291,57 +83354,6 @@ function renderPositiveAccentText(text) {
83291
83354
  return `\u001B[38;2;${String(POSITIVE_ACCENT_RGB.r)};${String(POSITIVE_ACCENT_RGB.g)};${String(POSITIVE_ACCENT_RGB.b)}m${text}\u001B[39m`;
83292
83355
  }
83293
83356
  //#endregion
83294
- //#region src/ui/public-space-warning.ts
83295
- const PUBLIC_SPACE_WARNING_TITLE = "⚠️ Public Space Warning";
83296
- const PUBLIC_SPACE_WARNING_LINES = ["⚠️ Public space: anyone with this Space ID can join. Treat it as untrusted.", "⚠️ Be careful, and only bring your own agents here in a trusted environment."];
83297
- const PUBLIC_SPACE_JOIN_CONFIRM_LABELS = {
83298
- active: "Yes and join (I know this is public and may be unsafe.)",
83299
- inactive: "No and cancel (I don't want to join.)"
83300
- };
83301
- function isPublicSpace(passwordProtected) {
83302
- return passwordProtected === false;
83303
- }
83304
- function buildPublicSpaceWarningLines() {
83305
- return [...PUBLIC_SPACE_WARNING_LINES];
83306
- }
83307
- function resolveSpaceSecurityLabel(passwordProtected) {
83308
- if (passwordProtected === true) return "protected by password";
83309
- if (passwordProtected === false) return "public";
83310
- return "unknown";
83311
- }
83312
- function buildPublicSpaceJoinConfirmPromptConfig() {
83313
- return {
83314
- active: PUBLIC_SPACE_JOIN_CONFIRM_LABELS.active,
83315
- inactive: PUBLIC_SPACE_JOIN_CONFIRM_LABELS.inactive,
83316
- message: buildPublicSpacePromptMessage("Do you still want to join this public space?"),
83317
- vertical: true
83318
- };
83319
- }
83320
- function buildPublicSpaceBringAgentsConfirmPromptConfig(input) {
83321
- const singular = input.agentCount === 1;
83322
- return {
83323
- active: singular ? "Yes and bring it (I know this is public and may be unsafe.)" : "Yes and bring them (I know this is public and may be unsafe.)",
83324
- inactive: singular ? "No and join without it (I don't want to bring it.)" : "No and join without them (I don't want to bring them.)",
83325
- message: buildPublicSpacePromptMessage(singular ? "Do you want to bring this agent profile into this public space?" : "Do you want to bring these agent profiles into this public space?"),
83326
- vertical: true
83327
- };
83328
- }
83329
- function buildPublicSpacePromptMessage(question) {
83330
- const frame = buildUnifiedCardFrame({
83331
- title: PUBLIC_SPACE_WARNING_TITLE,
83332
- rowTextList: [...PUBLIC_SPACE_WARNING_LINES],
83333
- minContentWidth: 76
83334
- });
83335
- return [
83336
- frame.top,
83337
- frame.empty,
83338
- ...frame.rows,
83339
- frame.empty,
83340
- frame.bottom,
83341
- question
83342
- ].join("\n");
83343
- }
83344
- //#endregion
83345
83357
  //#region src/ui/space-mention-highlight.ts
83346
83358
  function buildSpaceMentionHighlightIndex(snapshot) {
83347
83359
  return buildSpaceMentionProfileIndex(snapshot);
@@ -83407,13 +83419,15 @@ function formatConnectIntro(input) {
83407
83419
  ...buildSpaceInfoCardLines({
83408
83420
  gatewayUrl: input.gatewayUrl,
83409
83421
  modeLabel: input.stdio ? "interactive chat" : "watch-only stream",
83422
+ accessMode: input.accessMode,
83410
83423
  passwordProtected: input.passwordProtected,
83411
83424
  spaceCreatedAt: input.spaceCreatedAt,
83412
83425
  spaceCreatorId: input.spaceCreatorId,
83413
83426
  spaceCreatorName: input.spaceCreatorName,
83414
83427
  spaceId: input.spaceId,
83415
83428
  spaceName: input.spaceName,
83416
- spaceMembersSnapshot: input.spaceMembersSnapshot
83429
+ spaceMembersSnapshot: input.spaceMembersSnapshot,
83430
+ visibility: input.visibility
83417
83431
  }),
83418
83432
  ...input.spaceMembersSnapshot ? ["", ...buildSpaceMembersCardLines(input.spaceMembersSnapshot)] : [],
83419
83433
  "",
@@ -83449,6 +83463,12 @@ function buildSpaceInfoData(input) {
83449
83463
  spaceCreatedAt: input.spaceCreatedAt,
83450
83464
  passwordProtected: input.passwordProtected
83451
83465
  });
83466
+ const accessFacts = {
83467
+ accessMode: input.accessMode,
83468
+ passwordProtected: input.passwordProtected,
83469
+ visibility: input.visibility
83470
+ };
83471
+ const publicExposure = resolvePublicSpaceExposure(accessFacts);
83452
83472
  const gatewayUrl = sanitizeTrimmedSingleLineText(input.gatewayUrl);
83453
83473
  const metadataFacts = buildSpaceMetadataFields({
83454
83474
  projection,
@@ -83474,8 +83494,8 @@ function buildSpaceInfoData(input) {
83474
83494
  },
83475
83495
  ...metadataFacts,
83476
83496
  {
83477
- label: "Security",
83478
- value: resolveSpaceSecurityLabel(input.passwordProtected)
83497
+ label: "Access",
83498
+ value: resolveSpaceAccessLabel(accessFacts)
83479
83499
  },
83480
83500
  {
83481
83501
  label: "Gateway URL",
@@ -83487,7 +83507,7 @@ function buildSpaceInfoData(input) {
83487
83507
  }
83488
83508
  ],
83489
83509
  joinCommand: formatOpenMeldCliCommand(`openmeld space join ${input.spaceId}`),
83490
- publicWarningLines: isPublicSpace(input.passwordProtected) ? buildPublicSpaceWarningLines() : []
83510
+ publicWarningLines: publicExposure ? buildPublicSpaceWarningLines(publicExposure) : []
83491
83511
  };
83492
83512
  }
83493
83513
  function buildSpaceInfoRows(input) {
@@ -87471,16 +87491,20 @@ function resolveSessionMeta(requestedSpace, spaceMeta, fallbackName, fallbackSpa
87471
87491
  const spaceCreatorName = resolveCreatorProfileName(spaceMeta?.creator);
87472
87492
  const spaceCreatorId = resolveCreatorProfileId(spaceMeta?.creator);
87473
87493
  const passwordProtected = typeof spaceMeta?.passwordProtected === "boolean" ? spaceMeta.passwordProtected : void 0;
87494
+ const accessMode = spaceMeta?.accessMode;
87495
+ const visibility = spaceMeta?.visibility;
87474
87496
  const storageUsedBytes = resolveOptionalNumber(spaceMeta?.storageUsage?.usedBytes);
87475
87497
  const storageSoftLimitBytes = resolveOptionalNumber(spaceMeta?.storageUsage?.softLimitBytes);
87476
87498
  const storageUsagePercent = resolveOptionalNumber(spaceMeta?.storageUsage?.usagePercent);
87477
87499
  return {
87500
+ ...accessMode ? { accessMode } : {},
87478
87501
  spaceId,
87479
87502
  ...spaceName ? { spaceName } : {},
87480
87503
  ...spaceCreatedAt ? { spaceCreatedAt } : {},
87481
87504
  ...spaceCreatorName ? { spaceCreatorName } : {},
87482
87505
  ...spaceCreatorId ? { spaceCreatorId } : {},
87483
87506
  ...typeof passwordProtected === "boolean" ? { passwordProtected } : {},
87507
+ ...visibility ? { visibility } : {},
87484
87508
  ...typeof storageUsedBytes === "number" ? { storageUsedBytes } : {},
87485
87509
  ...typeof storageSoftLimitBytes === "number" ? { storageSoftLimitBytes } : {},
87486
87510
  ...typeof storageUsagePercent === "number" ? { storageUsagePercent } : {}
@@ -87871,7 +87895,6 @@ function stripTrailingZeroes(value) {
87871
87895
  }
87872
87896
  //#endregion
87873
87897
  //#region src/space/panel/space-panel-content.ts
87874
- const SPACE_INFO_WARNING_LINE = "⚠ Public space: anyone with this Space ID can join. Only bring trusted agents.";
87875
87898
  const SPACE_INFO_FULL_WIDTH_LABELS = /* @__PURE__ */ new Set(["Space Name", "Space ID"]);
87876
87899
  const MEMBERS_SEARCH_LABEL = "Type to search";
87877
87900
  const MEMBERS_SEARCH_PLACEHOLDER = "Filter members by name, @wake, ID, or owner";
@@ -87886,6 +87909,7 @@ function buildHelpPanelBlocks() {
87886
87909
  }
87887
87910
  function buildSpacePanelBlocks(input) {
87888
87911
  const spaceInfo = buildSpaceInfoData({
87912
+ accessMode: input.context.session.accessMode ?? void 0,
87889
87913
  gatewayUrl: input.context.gatewayUrl,
87890
87914
  modeLabel: resolveConnectionModeLabel(input.context.connectionMode),
87891
87915
  passwordProtected: input.context.session.passwordProtected ?? void 0,
@@ -87894,11 +87918,12 @@ function buildSpacePanelBlocks(input) {
87894
87918
  spaceCreatorName: input.context.session.spaceCreatorName ?? void 0,
87895
87919
  spaceId: input.context.session.spaceId,
87896
87920
  spaceName: input.context.session.spaceName ?? void 0,
87897
- spaceMembersSnapshot: input.membersSnapshot
87921
+ spaceMembersSnapshot: input.membersSnapshot,
87922
+ visibility: input.context.session.visibility ?? void 0
87898
87923
  });
87899
87924
  const factsWithStorage = buildSpaceInfoFactsFromData(spaceInfo, input.context);
87900
87925
  return buildPanelBodyBlocks([
87901
- spaceInfo.publicWarningLines.length > 0 ? buildPanelLinesSection([pc.yellow(SPACE_INFO_WARNING_LINE)]) : null,
87926
+ spaceInfo.publicWarningLines.length > 0 ? buildPanelLinesSection(spaceInfo.publicWarningLines.map((line) => pc.yellow(line))) : null,
87902
87927
  buildPanelFactsSection(factsWithStorage),
87903
87928
  buildPanelLinesSection([pc.dim("Join command"), pc.cyan(spaceInfo.joinCommand)])
87904
87929
  ]);
@@ -89639,7 +89664,7 @@ function buildSpaceSummaryFactsViewState(input) {
89639
89664
  return {
89640
89665
  spaceId: context.session.spaceId.trim(),
89641
89666
  spaceName: normalizeNullableText(context.session.spaceName),
89642
- securityLabel: resolveSpaceSummarySecurityLabel(context.session.passwordProtected),
89667
+ accessLabel: resolveSpaceSummaryAccessLabel(context.session),
89643
89668
  membersCount: membersSnapshot ? membersSnapshot.humans.length + membersSnapshot.agents.length : null,
89644
89669
  liveHumanCount: membersSnapshot ? membersSnapshot.humans.filter((member) => member.liveNow).length : null,
89645
89670
  liveAgentCount: membersSnapshot ? membersSnapshot.agents.filter((member) => member.liveNow).length : null,
@@ -89661,10 +89686,13 @@ function selectSpaceSummarySegments(input) {
89661
89686
  }
89662
89687
  return segments;
89663
89688
  }
89664
- function resolveSpaceSummarySecurityLabel(passwordProtected) {
89665
- if (passwordProtected === true) return "Secure";
89666
- if (passwordProtected === false) return "Public";
89667
- return null;
89689
+ function resolveSpaceSummaryAccessLabel(session) {
89690
+ const label = resolveSpaceAccessLabel({
89691
+ accessMode: session.accessMode ?? void 0,
89692
+ passwordProtected: session.passwordProtected ?? void 0,
89693
+ visibility: session.visibility ?? void 0
89694
+ });
89695
+ return label === "unknown" ? null : label;
89668
89696
  }
89669
89697
  function normalizeNullableText(value) {
89670
89698
  const normalized = String(value ?? "").trim();
@@ -89677,7 +89705,7 @@ function resolveSpaceSummarySegmentOrder(preset) {
89677
89705
  switch (preset) {
89678
89706
  case "composer-footer": return [
89679
89707
  "spaceName",
89680
- "securityLabel",
89708
+ "accessLabel",
89681
89709
  "membersCount",
89682
89710
  "liveHumanCount",
89683
89711
  "liveAgentCount",
@@ -89685,7 +89713,7 @@ function resolveSpaceSummarySegmentOrder(preset) {
89685
89713
  ];
89686
89714
  case "session-summary": return [
89687
89715
  "spaceName",
89688
- "securityLabel",
89716
+ "accessLabel",
89689
89717
  "membersCount",
89690
89718
  "liveHumanCount",
89691
89719
  "liveAgentCount"
@@ -89696,7 +89724,7 @@ function resolveSpaceSummarySegmentOrder(preset) {
89696
89724
  function resolveSegmentText(facts, key) {
89697
89725
  switch (key) {
89698
89726
  case "spaceName": return facts.spaceName ?? "";
89699
- case "securityLabel": return facts.securityLabel ?? "";
89727
+ case "accessLabel": return facts.accessLabel ?? "";
89700
89728
  case "membersCount": return renderCountText(facts.membersCount, (count) => formatCountLabel(count, "member", "members"));
89701
89729
  case "liveHumanCount": return renderCountText(facts.liveHumanCount, (count) => `${count} live ${pluralizeCountLabel(count, "human", "humans")}`);
89702
89730
  case "liveAgentCount": return renderCountText(facts.liveAgentCount, (count) => `${count} live ${pluralizeCountLabel(count, "agent", "agents")}`);
@@ -91673,7 +91701,8 @@ const SEPARATOR_CHAR = "─";
91673
91701
  const DEFAULT_SPACE_NAME = "Untitled Space";
91674
91702
  const CURRENT_SPACE_PREFIX = "Current Space › ";
91675
91703
  const PUBLIC_SPACE_HINT = "Untrusted space. Anyone with this Space ID can join.";
91676
- const SECURE_SPACE_HINT = "Password protected. Space ID and password required.";
91704
+ const MEMBERS_ONLY_SPACE_HINT = "Only current members can open this Space.";
91705
+ const PASSWORD_SPACE_HINT = "A password is required for access.";
91677
91706
  function renderSessionHeaderLines(input) {
91678
91707
  const width = Math.max(1, input.width);
91679
91708
  return [
@@ -91744,7 +91773,7 @@ function resolveInlineVersionPlacement(input) {
91744
91773
  return null;
91745
91774
  }
91746
91775
  function renderSummaryHeaderLines(input) {
91747
- const securitySummary = buildSecuritySummary(input.facts);
91776
+ const accessSummary = buildAccessSummary(input.facts);
91748
91777
  const lines = [...renderSplitLine({
91749
91778
  leftText: resolveSpaceNameText(input.facts),
91750
91779
  rightText: pc.dim(input.facts.spaceId),
@@ -91753,7 +91782,7 @@ function renderSummaryHeaderLines(input) {
91753
91782
  }), pc.dim(SEPARATOR_CHAR.repeat(input.width))];
91754
91783
  const detailLines = renderSummaryDetailLines({
91755
91784
  leftText: buildPresenceSummaryText(input.facts, input.summaryHintText),
91756
- rightText: buildSecuritySummaryInlineText(securitySummary),
91785
+ rightText: buildAccessSummaryInlineText(accessSummary),
91757
91786
  width: input.width
91758
91787
  });
91759
91788
  if (detailLines.length > 0) lines.push(...detailLines);
@@ -91788,23 +91817,36 @@ function renderSummaryDetailLines(input) {
91788
91817
  function resolveSpaceNameText(facts) {
91789
91818
  return `${pc.dim(CURRENT_SPACE_PREFIX)}${facts.spaceName ?? DEFAULT_SPACE_NAME}`;
91790
91819
  }
91791
- function buildSecuritySummary(facts) {
91792
- switch (facts.securityLabel) {
91793
- case "Secure": return {
91794
- labelText: renderPositiveAccentText("🔒 Secure"),
91795
- detailText: SECURE_SPACE_HINT
91820
+ function buildAccessSummary(facts) {
91821
+ switch (facts.accessLabel) {
91822
+ case "members only": return {
91823
+ labelText: renderPositiveAccentText("🔒 Members only"),
91824
+ detailText: MEMBERS_ONLY_SPACE_HINT
91796
91825
  };
91797
- case "Public": return {
91798
- labelText: pc.yellow("⚠️ Public"),
91826
+ case "anyone with the link": return {
91827
+ labelText: pc.yellow("⚠️ Anyone with the link"),
91799
91828
  detailText: PUBLIC_SPACE_HINT
91800
91829
  };
91830
+ case "password required":
91831
+ case "password required to view and join": return {
91832
+ labelText: renderPositiveAccentText("🔒 Password required"),
91833
+ detailText: PASSWORD_SPACE_HINT
91834
+ };
91835
+ case "anyone can view; password required to join": return {
91836
+ labelText: pc.yellow("⚠️ Anyone can view"),
91837
+ detailText: "A password is required to join."
91838
+ };
91839
+ case "private": return {
91840
+ labelText: renderPositiveAccentText("🔒 Private"),
91841
+ detailText: "Only invited people can find this Space."
91842
+ };
91801
91843
  default: return {
91802
- labelText: pc.dim("Security unavailable"),
91844
+ labelText: pc.dim("Access unavailable"),
91803
91845
  detailText: ""
91804
91846
  };
91805
91847
  }
91806
91848
  }
91807
- function buildSecuritySummaryInlineText(input) {
91849
+ function buildAccessSummaryInlineText(input) {
91808
91850
  if (!input.detailText) return input.labelText;
91809
91851
  return `${input.labelText}${pc.dim(` · ${input.detailText}`)}`;
91810
91852
  }
@@ -93299,6 +93341,7 @@ async function runConnect(input) {
93299
93341
  presenter.event("info", "connect.warn.profile_space_history_sync_failed", { error: toErrorMessage$2(error) });
93300
93342
  });
93301
93343
  emitSessionMeta({
93344
+ accessMode: sessionMeta.accessMode,
93302
93345
  output,
93303
93346
  spaceId: sessionMeta.spaceId,
93304
93347
  spaceName: sessionMeta.spaceName,
@@ -93319,7 +93362,8 @@ async function runConnect(input) {
93319
93362
  }),
93320
93363
  spaceMembersSnapshot: readModelSeed.getMembersSnapshot() ?? void 0,
93321
93364
  gatewayUrl: baseUrl,
93322
- stdio: input.stdio
93365
+ stdio: input.stdio,
93366
+ visibility: sessionMeta.visibility
93323
93367
  });
93324
93368
  if (output === "ndjson" && initialMembersSnapshot) emitSpaceMembers(runtime.resolvedView === "agent" ? normalizeAgentOutputMembersSnapshot(initialMembersSnapshot) : initialMembersSnapshot);
93325
93369
  let isReplayingHistory = true;
@@ -93696,6 +93740,7 @@ async function runInteractiveHumanTextSession(input) {
93696
93740
  baseUrl: input.baseUrl,
93697
93741
  connectionMode: input.connectionMode,
93698
93742
  session: {
93743
+ accessMode: input.sessionMeta.accessMode ?? null,
93699
93744
  spaceCreatedAt: input.sessionMeta.spaceCreatedAt ?? null,
93700
93745
  spaceCreatorId: input.sessionMeta.spaceCreatorId ?? null,
93701
93746
  spaceCreatorName: input.sessionMeta.spaceCreatorName ?? null,
@@ -93704,7 +93749,8 @@ async function runInteractiveHumanTextSession(input) {
93704
93749
  passwordProtected: input.sessionMeta.passwordProtected ?? null,
93705
93750
  storageSoftLimitBytes: input.sessionMeta.storageSoftLimitBytes ?? null,
93706
93751
  storageUsagePercent: input.sessionMeta.storageUsagePercent ?? null,
93707
- storageUsedBytes: input.sessionMeta.storageUsedBytes ?? null
93752
+ storageUsedBytes: input.sessionMeta.storageUsedBytes ?? null,
93753
+ visibility: input.sessionMeta.visibility ?? null
93708
93754
  }
93709
93755
  });
93710
93756
  const preferredShellKind = resolveInteractiveHumanShellKind();
@@ -94398,6 +94444,7 @@ async function runInteractiveHumanTextSession(input) {
94398
94444
  }
94399
94445
  const emitInteractiveSessionMeta = () => {
94400
94446
  emitSessionMeta({
94447
+ accessMode: input.sessionMeta.accessMode,
94401
94448
  output: "text",
94402
94449
  spaceId: input.sessionMeta.spaceId,
94403
94450
  spaceName: input.sessionMeta.spaceName,
@@ -94418,7 +94465,8 @@ async function runInteractiveHumanTextSession(input) {
94418
94465
  }),
94419
94466
  spaceMembersSnapshot: store.getState().members.snapshot ?? void 0,
94420
94467
  gatewayUrl: input.baseUrl,
94421
- stdio: true
94468
+ stdio: true,
94469
+ visibility: input.sessionMeta.visibility
94422
94470
  });
94423
94471
  interactiveIntroEmitted = true;
94424
94472
  };
@@ -94923,6 +94971,7 @@ function emitSessionMeta(input) {
94923
94971
  }
94924
94972
  function emitSessionMetaText(input) {
94925
94973
  for (const line of formatConnectIntro({
94974
+ accessMode: input.accessMode,
94926
94975
  spaceId: input.spaceId,
94927
94976
  spaceName: input.spaceName,
94928
94977
  spaceCreatedAt: input.spaceCreatedAt,
@@ -94939,11 +94988,13 @@ function emitSessionMetaText(input) {
94939
94988
  modelSelection: input.modelSelection,
94940
94989
  spaceMembersSnapshot: input.spaceMembersSnapshot,
94941
94990
  gatewayUrl: input.gatewayUrl,
94942
- stdio: input.stdio
94991
+ stdio: input.stdio,
94992
+ visibility: input.visibility
94943
94993
  })) errLine(line);
94944
94994
  }
94945
94995
  function buildSessionMetaEventPayload(input) {
94946
94996
  return buildAgentSessionMetaPayload({
94997
+ accessMode: input.accessMode,
94947
94998
  gatewayUrl: input.gatewayUrl,
94948
94999
  mode: input.stdio ? "interactive chat" : "watch-only stream",
94949
95000
  passwordProtected: input.passwordProtected,
@@ -94959,7 +95010,8 @@ function buildSessionMetaEventPayload(input) {
94959
95010
  spaceCreatorId: input.spaceCreatorId,
94960
95011
  spaceCreatorName: input.spaceCreatorName,
94961
95012
  spaceId: input.spaceId,
94962
- spaceName: input.spaceName
95013
+ spaceName: input.spaceName,
95014
+ visibility: input.visibility
94963
95015
  });
94964
95016
  }
94965
95017
  function resolveSessionProfileModelSelection(input) {
@@ -95398,6 +95450,7 @@ async function runTail(input) {
95398
95450
  const shouldEmitFullEnvelope = input.json || agentRawContract;
95399
95451
  const spaceMembersSnapshot = shouldEmitFullEnvelope ? null : identityOnlyMembersSnapshot;
95400
95452
  if (agentRawContract && spaceMeta) outJsonLine(buildAgentSessionMetaPayload({
95453
+ accessMode: spaceMeta.accessMode,
95401
95454
  gatewayUrl: baseUrl,
95402
95455
  mode: "history viewer",
95403
95456
  passwordProtected: spaceMeta.passwordProtected,
@@ -95412,7 +95465,8 @@ async function runTail(input) {
95412
95465
  spaceCreatorId: spaceMeta.creator?.profileId,
95413
95466
  spaceCreatorName: spaceMeta.creator?.profileName,
95414
95467
  spaceId: space,
95415
- spaceName: spaceMeta.name
95468
+ spaceName: spaceMeta.name,
95469
+ visibility: spaceMeta.visibility
95416
95470
  }));
95417
95471
  const threadByRootSignalId = await loadThreadSummaryByRootSignalId({
95418
95472
  spaceApi,
@@ -95665,6 +95719,7 @@ function buildHumanHistorySessionContext(input) {
95665
95719
  baseUrl: input.baseUrl,
95666
95720
  connectionMode: "history",
95667
95721
  session: {
95722
+ accessMode: input.spaceMeta?.accessMode ?? null,
95668
95723
  passwordProtected: input.spaceMeta?.passwordProtected ?? null,
95669
95724
  spaceCreatedAt: input.spaceMeta?.createdAt ?? null,
95670
95725
  spaceCreatorId: input.spaceMeta?.creator?.profileId ?? null,
@@ -95673,7 +95728,8 @@ function buildHumanHistorySessionContext(input) {
95673
95728
  spaceName: input.spaceMeta?.name ?? null,
95674
95729
  storageSoftLimitBytes: input.spaceMeta?.storageUsage?.softLimitBytes ?? null,
95675
95730
  storageUsagePercent: input.spaceMeta?.storageUsage?.usagePercent ?? null,
95676
- storageUsedBytes: input.spaceMeta?.storageUsage?.usedBytes ?? null
95731
+ storageUsedBytes: input.spaceMeta?.storageUsage?.usedBytes ?? null,
95732
+ visibility: input.spaceMeta?.visibility ?? null
95677
95733
  }
95678
95734
  });
95679
95735
  }
@@ -95850,9 +95906,9 @@ async function resolveSpaceJoinAccessBootstrap(input) {
95850
95906
  canPromptJoinPassword: input.canPromptJoinPassword
95851
95907
  });
95852
95908
  if (accessState.status === "cancelled") return { status: "cancelled" };
95853
- const publicSpace = isPublicSpace(accessState.spaceMeta.passwordProtected);
95909
+ const publicExposure = resolvePublicSpaceExposure(accessState.spaceMeta);
95854
95910
  if (!await confirmPublicSpaceJoinAccess({
95855
- publicSpace,
95911
+ publicExposure,
95856
95912
  resolvedView: input.resolvedView,
95857
95913
  canConfirmPublicSpaceJoin: input.canConfirmPublicSpaceJoin
95858
95914
  })) return { status: "cancelled" };
@@ -95860,7 +95916,7 @@ async function resolveSpaceJoinAccessBootstrap(input) {
95860
95916
  status: "ready",
95861
95917
  password: accessState.password,
95862
95918
  spaceMeta: accessState.spaceMeta,
95863
- publicSpace
95919
+ publicExposure
95864
95920
  };
95865
95921
  }
95866
95922
  async function resolveJoinAccessState(input) {
@@ -95885,11 +95941,11 @@ async function resolveJoinAccessState(input) {
95885
95941
  };
95886
95942
  }
95887
95943
  async function confirmPublicSpaceJoinAccess(input) {
95888
- if (!input.publicSpace) return true;
95944
+ if (!input.publicExposure) return true;
95889
95945
  if (input.resolvedView !== "human") return true;
95890
- if (!input.canConfirmPublicSpaceJoin) throw new Error("joining a public space in non-interactive human mode requires explicit confirmation");
95946
+ if (!input.canConfirmPublicSpaceJoin) throw new Error("This Space can be read by anyone with the link. Re-run this command in an interactive terminal so you can confirm before joining.");
95891
95947
  const confirmed = await confirm({
95892
- ...buildPublicSpaceJoinConfirmPromptConfig(),
95948
+ ...buildPublicSpaceJoinConfirmPromptConfig({ exposure: input.publicExposure }),
95893
95949
  initialValue: true
95894
95950
  });
95895
95951
  if (isCancel(confirmed)) {
@@ -96427,7 +96483,7 @@ async function resolveSpaceJoinMembershipBootstrap(input, dependencies) {
96427
96483
  baseUrl: input.baseUrl,
96428
96484
  space: input.space,
96429
96485
  password: input.password,
96430
- publicSpace: input.publicSpace,
96486
+ publicExposure: input.publicExposure,
96431
96487
  resolvedView: input.resolvedView,
96432
96488
  presenter: input.presenter,
96433
96489
  workbenchState
@@ -96494,7 +96550,7 @@ async function runJoinAddMembersFlowBeforeConnect(input, dependencies) {
96494
96550
  space: input.space,
96495
96551
  ownerUserId: input.openMeldProfile.ownerUserId,
96496
96552
  password: input.password,
96497
- publicSpace: input.publicSpace,
96553
+ publicExposure: input.publicExposure,
96498
96554
  resolvedView: input.resolvedView,
96499
96555
  presenter: input.presenter,
96500
96556
  workbenchState
@@ -96623,7 +96679,7 @@ async function runJoinWorkbenchSelectionBeforeConnect(input, dependencies) {
96623
96679
  baseUrl: input.baseUrl,
96624
96680
  space: input.space,
96625
96681
  password: input.password,
96626
- publicSpace: input.publicSpace,
96682
+ publicExposure: input.publicExposure,
96627
96683
  resolvedView: input.resolvedView,
96628
96684
  presenter: input.presenter,
96629
96685
  selectedCandidates,
@@ -96885,14 +96941,14 @@ async function emitJoinCreatedProfileReadinessNotice(input) {
96885
96941
  async function applySelectedSpaceAddMembersBeforeJoin(input, dependencies) {
96886
96942
  const confirmedCandidates = await filterAgentCandidatesForPublicSpaceBeforeJoin({
96887
96943
  candidates: input.selectedCandidates,
96888
- publicSpace: input.publicSpace
96944
+ publicExposure: input.publicExposure
96889
96945
  });
96890
96946
  if (confirmedCandidates.status === "cancelled") return input.cancelResult;
96891
96947
  if (confirmedCandidates.skippedAgentCount > 0) {
96892
96948
  const profileLabel = confirmedCandidates.skippedAgentCount === 1 ? "profile" : "profiles";
96893
96949
  input.presenter.line({
96894
96950
  code: "space.add_members.public_agent_skipped",
96895
- text: `Skipped ${String(confirmedCandidates.skippedAgentCount)} agent ${profileLabel} for this public space.`,
96951
+ text: `Skipped ${String(confirmedCandidates.skippedAgentCount)} agent ${profileLabel} because anyone with the link can read this Space.`,
96896
96952
  data: {
96897
96953
  spaceId: input.space,
96898
96954
  skippedAgentCount: confirmedCandidates.skippedAgentCount
@@ -96934,7 +96990,7 @@ async function applySelectedSpaceAddMembersBeforeJoin(input, dependencies) {
96934
96990
  return "completed";
96935
96991
  }
96936
96992
  async function filterAgentCandidatesForPublicSpaceBeforeJoin(input) {
96937
- if (!input.publicSpace) return {
96993
+ if (!input.publicExposure) return {
96938
96994
  status: "ready",
96939
96995
  candidates: input.candidates,
96940
96996
  skippedAgentCount: 0
@@ -96946,7 +97002,10 @@ async function filterAgentCandidatesForPublicSpaceBeforeJoin(input) {
96946
97002
  skippedAgentCount: 0
96947
97003
  };
96948
97004
  const confirmed = await confirm({
96949
- ...buildPublicSpaceBringAgentsConfirmPromptConfig({ agentCount: agentCandidates.length }),
97005
+ ...buildPublicSpaceBringAgentsConfirmPromptConfig({
97006
+ agentCount: agentCandidates.length,
97007
+ exposure: input.publicExposure
97008
+ }),
96950
97009
  initialValue: true
96951
97010
  });
96952
97011
  if (isCancel(confirmed)) {
@@ -99843,7 +99902,7 @@ async function runSpaceJoinTargetLoop(input) {
99843
99902
  baseUrl: targetBaseUrl,
99844
99903
  space: target.space,
99845
99904
  password: accessBootstrap.password,
99846
- publicSpace: accessBootstrap.publicSpace,
99905
+ publicExposure: accessBootstrap.publicExposure,
99847
99906
  canPromptPreJoinActions: input.canPromptPreJoinActions,
99848
99907
  skipBringProfilesPrompt: input.skipBringProfilesPrompt,
99849
99908
  allowBackToTargetSelection: input.allowBackToTargetSelection,
@@ -102604,6 +102663,6 @@ function isHumanInteractiveSpaceRuntime(runtime) {
102604
102663
  return runtime.resolvedView === "human" && canUseInteractivePrompts(runtime);
102605
102664
  }
102606
102665
  //#endregion
102607
- export { postLocalParticipationMutationReconcile as $, formatProfileAwareOpenMeldCliCommands as $a, ensureVersionStateReady as $i, createDoctorFailedGuideError as $n, readProfileWorkspaceConfig as $r, connectWebSocket as $t, prepareAuthenticatedSpaceCommandContext as A, createAuthenticationError as Aa, parseAgentControllerRef as Ai, buildDispatchResultMessageReadProjection as An, errLine as Ao, buildDualViewGuideMessage as Ar, fetchSpaceUpdates as At, runAgentsConfig as B, resolveAgentActivityRouteForPath as Ba, startCurrentCommandCheckScope as Bi, isReturnKeypress as Bn, revokeOrganizationJoinLinkResponseSchema as Bo, resolveDaemonServiceFreshnessWarning as Br, resolveDaemonServiceParticipationStatus as Bt, buildFormalSignalReadPayload as C, updateOpenMeldProfile as Ca, resolveDaemonDeviceId as Ci, collectLocalAgentControllerInventory as Cn, canonicalizeLocalProjectPath as Co, getCliVersionInfo as Cr, buildProfileWorkspaceRows as Ct, isSpaceCommandOutputHandledError as D, setSelectedOpenMeldProfileId as Da, getAgentControllerPermissionModeDisplayMetadata as Di, inspectSpaceCacheFile as Dn, renderTextInfoCard as Do, buildAgentOverviewFromContract as Dr, shouldEmitAgentOverview as Dt, parseEnvelope as E, getSelectedOpenMeldProfileId as Ea, createAgentExecutionStatusDisplayRows as Ei, resolveLocalAgentControllerReportDecision as En, renderInfoCard as Eo, registerBuiltinAgentSelectionOptions as Er, createDelayedSpinner as Et, buildReplyReadinessGuidance as F, setProfileDefaultView as Fa, resolveNativeAgentControllerPermissionModeForController as Fi, buildUpdatesReplyWorkflowProjection as Fn, cliJsonSkillsListEnvelopeSchema as Fo, buildAgentFacingPublicationModeGuideLines as Fr, readGatewayTextResponse as Ft, runAgentsDetect as G, readAgentActivityIntegrationStatus as Ga, getDaemonSystemServiceLogPath as Gi, readDispatchOwnedRuntimeGuard as Gn, mapAgentReplyReadinessToLegacyAutoReply as Gr, runSkillsEnsure as Gt, runAgentsCustomList as H, AGENT_ACTIVITY_INTEGRATION_OWNER as Ha, resolveVersionChangeDirection as Hi, assessCliUpdate as Hn, formatAgentReplyReadinessLabel as Hr, runDaemonStartDecisionPrompt as Ht, resolveHumanControllerDisplayName as I, LocalProjectConnectionError as Ia, finishCurrentCommandCheckScope as Ii, createSpaceMemberIdentityIndex as In, cliJsonSkillsLoadEnvelopeSchema as Io, canonicalizeAllowedActions as Ir, toStructuredGatewayFailure as It, runAgentsList as J, formatInlineOpenMeldCliCommands as Ja, resolveDaemonServiceManager as Ji, formatElapsedTime as Jn, syncProfileWorkspaceState as Jr, runSkillsUpdate as Jt, runAgentsDisable as K, resolveAgentActivityDispatcherCommand as Ka, isDaemonServiceJobNeverSpawned as Ki, readDispatchSpaceActionContextFromEnv as Kn, resolveGatewayChainReadiness as Kr, runSkillsInstall as Kt, persistAgentTransportSelection as L, validateLocalProjectConnectionPath as La, getCurrentCommandCheckState as Li, formatRemovedCcRelationMessage as Ln, cliJsonSkillsShowEnvelopeSchema as Lo, runDaemonServiceFullAlignment as Lr, parseJsonResponse$1 as Lt, emitSpaceAgentOverview as M, resolveAuthenticationGuidanceFromError as Ma, resolveAgentExecutionStatus as Mi, buildSignalIndex as Mn, outLine as Mo, OPENMELD_AGENT_MENTAL_MODEL_LINES as Mr, fetchSpaceMeta as Mt, emitSpaceCliAgentOverview as N, resolveAuthenticationGuidanceFromMessage as Na, resolveAgentProfileEditCapabilities as Ni, buildSignalMessageReadProjection as Nn, cliBinaryDeltaPatchSchema as No, SPACE_CONTRACT_ALLOWED_ACTION_ORDER as Nr, updateSpaceMeta as Nt, assertFullSignalIdArgument as O, buildAgentAuthenticationGuide as Oa, getAgentControllerPermissionModeFieldLabel as Oi, upsertSpaceConfig as On, sanitizeTerminalDisplayText as Oo, DualViewGuideError as Or, runDaemonStartupPreflight as Ot, prepareLocalAgentReadiness as P, getProfileDefaultView as Pa, resolveEvidenceSyncHealth as Pi, buildSpaceRoundReadProjection as Pn, cliJsonOutputEnvelopeSchema as Po, areAllowedActionsEquivalent as Pr, readGatewayJsonResponse as Pt, formatTransportModeDisplay as Q, formatOpenMeldCliTextBlock as Qa, compareSemver as Qi, canUseInteractivePrompts as Qn, normalizeCustomProfileWorkspacePath as Qr, readRecentDaemonDispatchJournalEvents as Qt, resolveAgentProfileSetup as R, isAgentActivityRouteRegistered as Ra, isCurrentCommandCheckScopeActive as Ri, promptSearchMultiselect as Rn, getOrganizationJoinLinkResponseSchema as Ro, formatDaemonFailureContextText as Rr, resolveLocalComponentsStatus as Rt, buildFormalDispatchResultReadPayload as S, resolveOpenMeldProfile as Sa, ensureDaemonRuntimePaths as Si, submitRuntimeAgentControllerReports as Sn, unbindProject as So, registerSkillsTargetSelectionOptions as Sr, buildProfileWorkspacePresentation as St, formatHumanReadTargetList as T, clearSelectedOpenMeldProfileId as Ta, buildAgentControllerRef as Ti, resolveLocalAgentControllerLaunchability as Tn, readControllerTaskLifecycleOutboxHealth as To, registerAuthLoginRequestOptions as Tr, emitDaemonAgentOverview as Tt, runAgentsCustomRemove as U, defaultManagedIntegrationPaths as Ua, readCurrentDaemonRuntimeContext as Ui, isCliUpdateCheckApplicable as Un, formatDeviceReplyReadinessLabel as Ur, collectSkillsReadinessSnapshot as Ut, runAgentsCustomAdd as V, unregisterAgentActivityRoute as Va, inspectDaemonServiceInventory as Vi, runInteractivePrompt as Vn, package_default as Vo, resolveCurrentReplyReadinessSnapshot as Vr, runDaemonServiceParticipationGate as Vt, runAgentsCustomUpdate as W, installAgentActivityIntegrations as Wa, readCurrentObservedDaemonRuntimeStatus as Wi, assertDispatchOwnedRuntimePublicWriteAllowed as Wn, formatHumanReplyReadinessReason as Wr, runSkillsCheck as Wt, runAgentsRepair as X, formatOpenMeldCliCommands as Xa, performManagedInstall as Xi, formatDaemonServiceDowngradeBlockedRecommendation as Xn, resolveProfileWorkspaceRuntime as Xr, readBundledOpenMeldCliSkillDocumentByPath as Xt, runAgentsManage as Y, formatOpenMeldCliCommand as Ya, buildInstallSelfJsonPayload as Yi, resolveElapsedTimeMs as Yn, createModelCatalogReadSession as Yr, ensureLocalSkills as Yt, runAgentsShow as Z, formatOpenMeldCliLine as Za, buildNextVersionState as Zi, formatDaemonServiceMissingRecommendation as Zn, ensureOpenMeldManagedProfileWorkspace as Zr, readRuntimeReportingHealthState as Zt, emitHumanReadSignalsTextProjection as _, createOpenMeldAgentProfile as _a, buildDaemonServiceTargetSpec as _i, resolveServiceParticipationReadiness as _n, listProjectConnectionsWithStatus as _o, createUpgradeConfirmationGuideError as _r, runDaemonSnapshot as _t, runSpaceDelete as a, resolveOpenMeldDistribution as aa, syncDeviceRuntimeStateProjection as ai, runAuthLogout as an, readAgentActivityContextForPath as ao, createSpaceAliasTargetGuideError as ar, renderOpenMeldLogo as at, loadSpaceSignalIndexOrNull as b, listOpenMeldProfiles as ba, classifyDaemonServiceWakeability as bi, submitProfileRuntimeAgentControllerReport as bn, runIfAgentActivityBindingGenerationIsCurrent as bo, registerSpaceMemberSelectionOptions as br, runDaemonTeardownStrict as bt, runSpaceLeave as c, resolveCurrentDaemonExpectedVersion as ca, listAgentTargetStates as ci, buildAuthStatusRows as cn, resolveObservedAgentActivityBinding as co, createSpaceMenuGuideError as cr, resolveSpaceSendText as ct, runSpaceRemoveMembers as d, parseCliViewMode as da, notifyDaemonRouteCatalogChanged as di, createProfileByKind as dn, enqueueAgentActivityHookEvent as do, createSpaceResultGuideError as dr, runDaemonBackgroundStartForDecision as dt, fetchLatestCliBinaryRelease as ea, resolveConfiguredProfileWorkspacePath as ei, assessServerRequiredVersion as en, resolveSetupFollowUpCliEntryCommand as eo, createProfileActionGuideError as er, colorizeAgentLabel as et, runSpaceSend as f, resolveRuntimeContext as fa, resolveLocalRegistryAgentIdFromAgentControllerRef as fi, resolveCreateProfileKind as fn, removeProjectInbox as fo, createSpaceSubcommandTargetGuideError as fr, runDaemonCancel as ft, buildHumanReadSignalsTranscriptItems as g, resolveOpenMeldProfileOrNull as ga, getSetupFlowCopy as gi, formatServiceParticipationReadinessLabel as gn, listProjectBindings as go, createStartAuthenticationGuideError as gr, runDaemonRun as gt, runSpaceWriteWithPasswordRetry as h, requireOpenMeldProfile as ha, buildOnboardingPlan as hi, ensureAgentProfileRuntimeBinding as hn, bindProject as ho, createStartAgentIdentityGuideError as hr, runDaemonReinstall as ht, runSpaceCreate as i, isBinaryDistribution as ia, describeProfileWorkspacePathValidationFailure as ii, runAuthLogin as in, upsertDaemonServiceContract as io, createSpaceAddMembersGuideError as ir, renderOpenMeldHeader as it, resolveOpenMeldProfileForSpaceCommand as j, resolveAuthenticationGuidance as ja, resolveAgentControllerPermissionModeForController as ji, buildDispatchResultReplyWorkflowProjection as jn, outJsonLine as jo, formatAgentOverviewPayload as jr, createCliSpaceApi as jt, assertValidSpaceIdTarget as k, buildHumanAuthenticationCard as ka, listAgentControllerPermissionModeOptions as ki, assertNoRemovedCcSpaceAddressingSyntax as kn, emitCliJsonEnvelope as ko, formatDualViewGuideForDisplay as kr, readDaemonStartFailureLogTailLines as kt, runSpaceList as l, createPresenter as la, reconcileNewRunnableBuiltinAgentsForSetup as li, buildAuthStatusSnapshot as ln, normalizeSharedSessionTitle as lo, createSpacePublicationSetGuideError as lr, runDaemon as lt, runSpaceReadWithPasswordRetry as m, isSelectedOpenMeldProfileRequiredError as ma, buildDaemonRouteObservationPresentation as mi, promptTextEntry as mn, removeProjectOutbox as mo, createSpaceUpdatesGuideError as mr, runDaemonInterrupt as mt, promptAndConfirmSpacePassword as n, readVersionState as na, setOpenMeldManagedProfileWorkspace as ni, ensureCommandAuthenticationOrCancel as nn, syncLocalAgentActivity as no, createProfileMenuGuideError as nr, printOpenMeldBanner as nt, runSpaceHistory as o, resolveDaemonRuntimeContractCompatibility as oa, createPrimaryBindingReadSession as oi, runAuthMenu as on, removeAgentActivityContextCache as oo, createSpaceContractSetGuideError as or, renderOpenMeldTagline as ot, runSpaceWatch as p, resolveViewProfileKey as pa, PREPARE_SESSION_RECONNECT_GRACE_MS as pi, resolveCreateProfileName as pn, readAgentActivityOutboxHealth as po, createSpaceTargetGuideError as pr, runDaemonInstall as pt, runAgentsEnable as q, uninstallAgentActivityIntegrations as qa, readDaemonServiceJobCrashExitCode as qi, writeDispatchSpaceActionRecord as qn, resolveOpenClawLocalDiagnosticsValue as qr, runSkillsUninstall as qt, runSpaceAddMembers as r, writeVersionState as ra, validateCustomProfileWorkspacePath as ri, evaluateCommandAuthentication as rn, readDaemonServiceContract as ro, createResetConfirmationGuideError as rr, renderOpenMeldBrandBlockLines as rt, runSpaceJoin as s, toStartBackgroundHelperExecutionCompatibility as sa, resolveAgentProfilePrimaryAgentControllerReport as si, runAuthStatus as sn, buildAgentActivityEvent as so, createSpaceLeaveGuideError as sr, resolveGatewayWebOrigin as st, buildCreateSpacePasswordPromptMessage as t, fetchLatestPackageInfo as ta, setCustomProfileWorkspace as ti, buildCommandAuthenticationPromptMessage as tn, resolveUserFacingCliEntryCommand as to, createProfileCreateGuideError as tr, colorizeDisplayProfileLabel as tt, runSpacePassword as u, formatMessage as ua, listBuiltinAgentsRegistryEntries as ui, formatActiveOrganizationLabel as un, readCodexSessionTitles as uo, createSpaceRemoveMembersGuideError as ur, runDaemonAutostart as ut, buildIdentityOnlyMembersSnapshotForReadProjection as v, createOpenMeldHumanProfile as va, resolveDaemonServiceAlignmentDecision as vi, assessActionParticipationCandidate as vn, migrateProjectBindingStore as vo, getCommandEntryContract as vr, runDaemonStatusFlow as vt, buildHumanReplyContextSummary as w, alignSelectedOpenMeldProfileStorage as wa, resolveOpenMeldEnvironmentTarget as wi, resolveLocalAgentControllerBlockerReasonCodes as wn, enqueueControllerTaskLifecycleEventWhileLocked as wo, registerDaemonControlTargetOptions as wr, reconcileCliVersionView as wt, toSpaceMetaUpsertInput as x, primeOpenMeldProfilesSessionCache as xa, readRecentDaemonLifecycleEvents as xi, submitRuntimeAgentControllerReport as xn, setDefaultProjectConnection as xo, SPACE_ADD_MEMBERS_PROGRESS_HEARTBEAT_MS as xr, runDaemonUninstall as xt, loadSpaceIdentityDirectoryOrNull as y, deleteOpenMeldProfile as ya, classifyDaemonServiceRunStartability as yi, computeRetryDelayMs as yn, removeProjectConnection as yo, getCommandHintsFromContract as yr, runDaemonStop as yt, runAgents as z, registerAgentActivityRoute as za, resetCurrentCommandCheckState as zi, promptSearchSelect as zn, organizationJoinLinkErrorResponseSchema as zo, resolveServiceReadinessFromServiceStatus as zr, writeInstalledLocalComponentsSnapshot as zt };
102666
+ export { formatTransportModeDisplay as $, formatOpenMeldCliTextBlock as $a, compareSemver as $i, canUseInteractivePrompts as $n, normalizeCustomProfileWorkspacePath as $r, readRecentDaemonDispatchJournalEvents as $t, assertValidSpaceIdTarget 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, parseEnvelope as D, getSelectedOpenMeldProfileId as Da, createAgentExecutionStatusDisplayRows as Di, resolveLocalAgentControllerReportDecision as Dn, renderInfoCard as Do, registerBuiltinAgentSelectionOptions as Dr, createDelayedSpinner as Dt, resolveSpaceAccessLabel 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, package_default 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, resolveOpenMeldProfileForSpaceCommand 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, isSpaceCommandOutputHandledError 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, 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, runDaemonRun 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, prepareAuthenticatedSpaceCommandContext as j, createAuthenticationError as ja, parseAgentControllerRef as ji, buildDispatchResultMessageReadProjection as jn, errLine as jo, buildDualViewGuideMessage as jr, fetchSpaceUpdates as jt, assertFullSignalIdArgument 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, buildCreateSpacePasswordPromptMessage 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 };
102608
102667
 
102609
- //# sourceMappingURL=command-D6lB8rn_.js.map
102668
+ //# sourceMappingURL=command-DAurOlzb.js.map