openmeld 0.3.76 → 0.3.78
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/README.md +7 -0
- package/dist/{add-me-membership-C_dCTz9h.js → add-me-membership-BP7P_X-r.js} +2 -2
- package/dist/{add-me-membership-C_dCTz9h.js.map → add-me-membership-BP7P_X-r.js.map} +1 -1
- package/dist/{api-client-foundation-CO_4tB8y.js → api-client-foundation-jjwUa25Q.js} +4 -4
- package/dist/{api-client-foundation-CO_4tB8y.js.map → api-client-foundation-jjwUa25Q.js.map} +1 -1
- package/dist/{auth-session-BZgsNHJA.js → auth-session-BOKcW_84.js} +3 -3
- package/dist/{auth-session-BZgsNHJA.js.map → auth-session-BOKcW_84.js.map} +1 -1
- package/dist/{base-url-KfrIdedc.js → base-url-Cv9x5Es9.js} +11 -3
- package/dist/base-url-Cv9x5Es9.js.map +1 -0
- package/dist/{command-Bn3Sm1p8.js → command-Pj7c1mH5.js} +21164 -18939
- package/dist/{command-Bn3Sm1p8.js.map → command-Pj7c1mH5.js.map} +1 -1
- package/dist/{daemon-runtime-lease-7AQYjp3h.js → daemon-runtime-lease-CKQef0lp.js} +2 -2
- package/dist/{daemon-runtime-lease-7AQYjp3h.js.map → daemon-runtime-lease-CKQef0lp.js.map} +1 -1
- package/dist/{dist-nJqZxjtc.js → dist-DtEdipqO.js} +4690 -3965
- package/dist/dist-DtEdipqO.js.map +1 -0
- package/dist/openmeld-dev.js +1 -1
- package/dist/openmeld.js +965 -65
- package/dist/openmeld.js.map +1 -1
- package/dist/{runtime-transport-Bs6YfTqj.js → runtime-transport-BLEvh9zX.js} +53 -4
- package/dist/runtime-transport-BLEvh9zX.js.map +1 -0
- package/package.json +5 -3
- package/skills/openmeld-cli/SKILL.md +150 -2
- package/skills/openmeld-cli/references/commands.md +72 -0
- package/dist/base-url-KfrIdedc.js.map +0 -1
- package/dist/dist-nJqZxjtc.js.map +0 -1
- package/dist/runtime-transport-Bs6YfTqj.js.map +0 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
|
|
3
|
-
import { $t as runtimeDispatchPolicySchema, Zt as runtimeAgentControllerConversationIdMappingSpecSchema, cn as agentControllerRefSchema, en as runtimeStreamingModeSchema, nn as agentControllerConversationRefSchema, tn as runtimeTransportModeSchema } from "./base-url-
|
|
3
|
+
import { $t as runtimeDispatchPolicySchema, Zt as runtimeAgentControllerConversationIdMappingSpecSchema, cn as agentControllerRefSchema, en as runtimeStreamingModeSchema, nn as agentControllerConversationRefSchema, tn as runtimeTransportModeSchema } from "./base-url-Cv9x5Es9.js";
|
|
4
4
|
import { r as daemonServiceLaneSchema } from "./service-contract-DZWQdPz5.js";
|
|
5
5
|
import { z } from "zod/v4";
|
|
6
6
|
//#region ../../packages/schemas/dist/agent-recovery-action.js
|
|
@@ -3661,6 +3661,7 @@ z.enum([
|
|
|
3661
3661
|
"interrupt",
|
|
3662
3662
|
"cancel",
|
|
3663
3663
|
"conversation_execution_status",
|
|
3664
|
+
"request_agent_activity_sync",
|
|
3664
3665
|
"sync_route_catalog",
|
|
3665
3666
|
"set_local_agent_enabled",
|
|
3666
3667
|
"set_profile_workspace",
|
|
@@ -3717,6 +3718,7 @@ const openMeldDaemonConversationExecutionStatusRequestPayloadSchema = z.strictOb
|
|
|
3717
3718
|
validate: z.boolean()
|
|
3718
3719
|
});
|
|
3719
3720
|
const openMeldDaemonSyncRouteCatalogRequestPayloadSchema = z.strictObject({ reason: z.string().min(1) });
|
|
3721
|
+
const openMeldDaemonRequestAgentActivitySyncRequestPayloadSchema = z.strictObject({ reason: z.string().trim().min(1).max(128) });
|
|
3720
3722
|
const openMeldDaemonSetLocalAgentEnabledRequestPayloadSchema = z.strictObject({
|
|
3721
3723
|
agentId: z.string().trim().min(1).max(256),
|
|
3722
3724
|
enabled: z.boolean()
|
|
@@ -3867,6 +3869,7 @@ const openMeldDaemonSyncRouteCatalogPayloadSchema = z.strictObject({
|
|
|
3867
3869
|
note: z.string().min(1).optional(),
|
|
3868
3870
|
errorMessage: z.string().min(1).optional()
|
|
3869
3871
|
});
|
|
3872
|
+
const openMeldDaemonRequestAgentActivitySyncPayloadSchema = z.strictObject({ accepted: z.boolean() });
|
|
3870
3873
|
const openMeldDaemonSetLocalAgentEnabledPayloadSchema = z.strictObject({
|
|
3871
3874
|
accepted: z.boolean(),
|
|
3872
3875
|
agentControllerRef: z.string().min(1).optional(),
|
|
@@ -3952,6 +3955,10 @@ const openMeldDaemonControlPlaneRequestSchema = z.discriminatedUnion("command",
|
|
|
3952
3955
|
command: z.literal("sync_route_catalog"),
|
|
3953
3956
|
payload: openMeldDaemonSyncRouteCatalogRequestPayloadSchema
|
|
3954
3957
|
}),
|
|
3958
|
+
openMeldDaemonControlPlaneRequestBaseSchema.extend({
|
|
3959
|
+
command: z.literal("request_agent_activity_sync"),
|
|
3960
|
+
payload: openMeldDaemonRequestAgentActivitySyncRequestPayloadSchema
|
|
3961
|
+
}),
|
|
3955
3962
|
openMeldDaemonControlPlaneRequestBaseSchema.extend({
|
|
3956
3963
|
command: z.literal("set_local_agent_enabled"),
|
|
3957
3964
|
payload: openMeldDaemonSetLocalAgentEnabledRequestPayloadSchema
|
|
@@ -4048,6 +4055,10 @@ const openMeldDaemonSyncRouteCatalogResponseSchema = openMeldDaemonControlPlaneR
|
|
|
4048
4055
|
code: z.literal("service.sync_route_catalog"),
|
|
4049
4056
|
payload: openMeldDaemonSyncRouteCatalogPayloadSchema
|
|
4050
4057
|
});
|
|
4058
|
+
const openMeldDaemonRequestAgentActivitySyncResponseSchema = openMeldDaemonControlPlaneResponseBaseSchema.extend({
|
|
4059
|
+
code: z.literal("service.agent_activity_sync_requested"),
|
|
4060
|
+
payload: openMeldDaemonRequestAgentActivitySyncPayloadSchema
|
|
4061
|
+
});
|
|
4051
4062
|
const openMeldDaemonSetLocalAgentEnabledResponseSchema = openMeldDaemonControlPlaneResponseBaseSchema.extend({
|
|
4052
4063
|
code: z.literal("service.set_local_agent_enabled"),
|
|
4053
4064
|
payload: openMeldDaemonSetLocalAgentEnabledPayloadSchema
|
|
@@ -4072,6 +4083,7 @@ const openMeldDaemonControlPlaneResponseSchema = z.discriminatedUnion("code", [
|
|
|
4072
4083
|
openMeldDaemonCancelResponseSchema,
|
|
4073
4084
|
openMeldDaemonConversationExecutionStatusResponseSchema,
|
|
4074
4085
|
openMeldDaemonSyncRouteCatalogResponseSchema,
|
|
4086
|
+
openMeldDaemonRequestAgentActivitySyncResponseSchema,
|
|
4075
4087
|
openMeldDaemonSetLocalAgentEnabledResponseSchema,
|
|
4076
4088
|
openMeldDaemonSetProfileWorkspaceResponseSchema,
|
|
4077
4089
|
openMeldDaemonShutdownResponseSchema,
|
|
@@ -5303,6 +5315,7 @@ const runtimeTransportCapabilitiesSchema = z.strictObject({
|
|
|
5303
5315
|
cancel: z.literal(true).optional(),
|
|
5304
5316
|
interrupt: z.literal(true).optional(),
|
|
5305
5317
|
manageInstallations: z.literal(true).optional(),
|
|
5318
|
+
forkSession: z.literal(true).optional(),
|
|
5306
5319
|
refreshCatalog: z.literal(true).optional(),
|
|
5307
5320
|
resumeControllerConversation: z.literal(true).optional(),
|
|
5308
5321
|
setEnabled: z.literal(true).optional(),
|
|
@@ -5549,6 +5562,40 @@ z.discriminatedUnion("status", [z.strictObject({
|
|
|
5549
5562
|
reasonCode: z.string().min(1),
|
|
5550
5563
|
message: z.string().min(1)
|
|
5551
5564
|
})]);
|
|
5565
|
+
const agentSessionForkOperationSchema = z.strictObject({
|
|
5566
|
+
agentControllerRef: agentControllerRefSchema,
|
|
5567
|
+
operationId: z.string().trim().min(1).max(256),
|
|
5568
|
+
organizationId: z.string().trim().min(1).max(256),
|
|
5569
|
+
profileName: z.string().trim().min(1).max(64),
|
|
5570
|
+
projectId: z.string().trim().min(1).max(256),
|
|
5571
|
+
sourceNativeSessionId: z.string().trim().min(1).max(512)
|
|
5572
|
+
});
|
|
5573
|
+
agentSessionForkOperationSchema.extend({
|
|
5574
|
+
v: z.literal(1),
|
|
5575
|
+
ownerUserId: z.string().trim().min(1),
|
|
5576
|
+
deviceId: z.string().trim().min(1),
|
|
5577
|
+
lane: daemonServiceLaneSchema
|
|
5578
|
+
});
|
|
5579
|
+
const runtimeTransportForkAgentSessionResultSchema = z.discriminatedUnion("status", [
|
|
5580
|
+
agentSessionForkOperationSchema.extend({
|
|
5581
|
+
childNativeSessionId: z.string().trim().min(1).max(512),
|
|
5582
|
+
status: z.literal("completed")
|
|
5583
|
+
}),
|
|
5584
|
+
agentSessionForkOperationSchema.extend({
|
|
5585
|
+
message: z.string().trim().min(1).max(1e3),
|
|
5586
|
+
reasonCode: z.string().trim().min(1).max(256),
|
|
5587
|
+
status: z.literal("rejected")
|
|
5588
|
+
}),
|
|
5589
|
+
agentSessionForkOperationSchema.extend({
|
|
5590
|
+
message: z.string().trim().min(1).max(1e3),
|
|
5591
|
+
reasonCode: z.string().trim().min(1).max(256),
|
|
5592
|
+
status: z.literal("outcome_unknown")
|
|
5593
|
+
})
|
|
5594
|
+
]);
|
|
5595
|
+
const runtimeTransportLocalAgentControlForkSessionFramePayloadSchema = z.strictObject({
|
|
5596
|
+
requestId: z.string().min(1),
|
|
5597
|
+
request: agentSessionForkOperationSchema
|
|
5598
|
+
});
|
|
5552
5599
|
const runtimeTransportLocalAgentControlSetEnabledFramePayloadSchema = z.strictObject({
|
|
5553
5600
|
requestId: z.string().min(1),
|
|
5554
5601
|
payload: openMeldDaemonSetLocalAgentEnabledRequestPayloadSchema
|
|
@@ -5581,7 +5628,8 @@ z.strictObject({
|
|
|
5581
5628
|
openMeldDaemonSetProfileWorkspacePayloadSchema,
|
|
5582
5629
|
openMeldDaemonSyncRouteCatalogPayloadSchema,
|
|
5583
5630
|
openMeldDaemonCancelPayloadSchema,
|
|
5584
|
-
openMeldDaemonInterruptPayloadSchema
|
|
5631
|
+
openMeldDaemonInterruptPayloadSchema,
|
|
5632
|
+
runtimeTransportForkAgentSessionResultSchema
|
|
5585
5633
|
])
|
|
5586
5634
|
});
|
|
5587
5635
|
z.strictObject({
|
|
@@ -6451,6 +6499,7 @@ const daemonStreamCodeSchema = z.enum([
|
|
|
6451
6499
|
"daemon.route_catalog.changed",
|
|
6452
6500
|
"daemon.local_agent_control.cancel",
|
|
6453
6501
|
"daemon.local_agent_control.interrupt",
|
|
6502
|
+
"daemon.local_agent_control.fork_session",
|
|
6454
6503
|
"daemon.local_agent_control.manage_installation",
|
|
6455
6504
|
"daemon.local_agent_control.refresh_catalog",
|
|
6456
6505
|
"daemon.local_agent_control.set_enabled",
|
|
@@ -6487,6 +6536,6 @@ z.strictObject({
|
|
|
6487
6536
|
})
|
|
6488
6537
|
});
|
|
6489
6538
|
//#endregion
|
|
6490
|
-
export {
|
|
6539
|
+
export { localFolderPickerHelperResultSchema as $, spaceMentionLabelSchema as $n, spaceThreadSignalPlacementSchema as $t, runtimeTransportResumeControllerConversationFramePayloadSchema as A, formatLocalSetupActionDescription as An, openMeldWebUrlSchema as Ar, detectSpaceAttachmentMimeType as At, runtimeTransportRuntimeCoordinatorHeadWaitingRecoveryActionSchema as B, clientMessageIdSchema as Bn, spaceStatusSchema as Bt, runtimeTransportLocalAgentControlRefreshCatalogFramePayloadSchema as C, AGENT_INTERACTION_DEFAULT_TIMEOUT_MS as Cn, resolveDetailedPublicAgentFailureReason as Cr, centerAgentTaskReferenceSchema as Ct, runtimeTransportRegisterSessionRequestSchema as D, agentInteractionResponseSchema as Dn, shouldPreferMappedPublicAgentFailureReason as Dr, signalTextDataSchema as Dt, runtimeTransportLookupRouteOwnerServiceEvidenceSchema as E, agentInteractionResolutionSchema as En, resolvePublicAgentFailureRecovery as Er, signalSystemNoticeDataSchema as Et, runtimeTransportRuntimeCoordinatorHeadNoExecutionPublicationCategorySchema as F, localComponentUpdateProjectionSchema as Fn, spaceAttachmentMimeTypeSchema as Ft, openMeldDaemonTaskResultOpenClawGatewayVisibilityStatusSchema as G, runtimeCoordinatorExecutionTokenEnvelopeSchema as Gn, openMeldDaemonSyncRouteCatalogPayloadSchema as Gt, runtimeTransportSubmitTaskResultRequestSchema as H, runtimeCoordinatorExecutionCreationDiagnosticSchema as Hn, localAgentInstallationOptionSchema as Ht, runtimeTransportRuntimeCoordinatorHeadNoExecutionReasonCodeSchema as I, localComponentUpdateStatusSchema as In, spaceAttachmentSizeBytesSchema as It, openMeldSpaceEgressActionSchema as J, SPACE_PASSWORD_RATE_LIMITED_ERROR_CODE as Jn, conversationExecutionStateSchema as Jt, openMeldDaemonTaskResultPayloadSchema as K, runtimeTransportDeliveryExecutionIdentitySchema as Kn, skippedDaemonProfileSchema as Kt, runtimeTransportRuntimeCoordinatorHeadNoExecutionRecoveryActionSchema as L, localServiceComponentUpdateProjectionSchema as Ln, spaceMessageAttachmentSchema as Lt, runtimeTransportRouteCatalogChangedFramePayloadSchema as M, installedLocalComponentsSnapshotSchema as Mn, spaceAttachmentDescriptorSchema as Mt, runtimeTransportRuntimeCoordinatorHeadLifecycleStatusSchema as N, localCliComponentUpdateProjectionSchema as Nn, spaceAttachmentDimensionSchema as Nt, runtimeTransportRegisterSessionResponseSchema as O, formatLocalComponentsSummaryDescription as On, computerSetupModeSchema as Or, signalTextSchema as Ot, runtimeTransportRuntimeCoordinatorHeadNoExecutionDecisionSourceSchema as P, localComponentUpdatePolicySchema as Pn, spaceAttachmentFileNameSchema as Pt, localFolderPickerHelperProtocolResultSchema as Q, resolveSpaceMentionLabels as Qn, spaceThreadSchema as Qt, runtimeTransportRuntimeCoordinatorHeadWaitingCategorySchema as R, postSpaceWakeStopBodySchema as Rn, spaceMessageAttachmentsSchema as Rt, runtimeTransportLocalAgentControlManageInstallationFramePayloadSchema as S, spaceAgentStreamTerminalFrameSchema as Sn, MAX_TEXT_LENGTH as Sr, SPACE_MENTION_REJECT_NOTICE_PURPOSE as St, runtimeTransportLocalAgentControlSetProfileWorkspaceFramePayloadSchema as T, agentInteractionRequestSchema as Tn, resolvePublicAgentAvailabilityCopy as Tr, signalStatusDataSchema as Tt, openMeldDaemonProviderAccessEvidenceProviderSchema as U, runtimeCoordinatorExecutionEventSchema as Un, openMeldDaemonControlPlaneRequestSchema as Ut, runtimeTransportRuntimeCoordinatorRespondInteractionResponseSchema as V, parseOptionalClientMessageId as Vn, centerAgentInteractionSourceSchema as Vt, openMeldDaemonTaskResultEnvelopeWriteSchema as W, runtimeCoordinatorExecutionRecordSchema as Wn, openMeldDaemonControlPlaneResponseSchema as Wt, OPENMELD_LOCAL_FOLDER_PICKER_CAPABILITY_HEADER as X, spacePasswordSchema as Xn, spaceThreadContextSchema as Xt, LOCAL_FOLDER_PICKER_RUNTIME_CAPABILITY as Y, normalizeSpacePasswordText as Yn, dispatchExecutionSchema as Yt, localFolderPickerDaemonFrameSchema as Z, resolveSingleSpaceMentionLabels as Zn, spaceThreadEventSchema as Zt, runtimeTransportHeartbeatRequestSchema as _, agentStreamToolPartSchema as _n, uuidProfileIdSchema as _r, DISPATCH_ACTIVITY_DISPATCHING_PURPOSE as _t, runtimeTransportCapabilitiesSchema as a, spaceDispatchPolicySchema as an, executeExecutionRecoveryResponseSchema as ar, agentTaskCompletionObservationSchema as at, runtimeTransportLocalAgentControlForkSessionFramePayloadSchema as b, spaceAgentStreamPresenceSchema as bn, optionalBooleanQuerySchema as br, SPACE_MEMBER_JOIN_NOTICE_PURPOSE as bt, runtimeTransportDispatchInteractionRequestSchema as c, targetWakeLifecycleIdentitySchema as cn, openMeldRequestContextSchema as cr, areAgentTaskTerminalOutcomesEqual as ct, runtimeTransportDispatchPreviewEndRequestSchema as d, formatCanonicalMentionLiteral as dn, normalizeOptionalWorkingDirectory as dr, spaceWakeAgentTaskHandleSchema as dt, spaceContractFieldsSchema as en, spaceMentionLabelSourceSchema as er, localFolderPickerRequestSchema as et, runtimeTransportDispatchPreviewRequestSchema as f, getSpaceMessageAddressingRelationSupportForTargetKind as fn, openMeldRuntimeProfileIdSchema as fr, AGENT_REPLYING_END_PURPOSE as ft, runtimeTransportForkAgentSessionResultSchema as g, AGENT_STREAM_SNAPSHOT_MAX_CHARS as gn, profileWorkspaceModeSchema as gr, CONVERSATION_CONTINUITY_WARNING_PURPOSE as gt, runtimeTransportErrorCodeSchema as h, resolveMessageEnvelopeTargetField as hn, profileWorkingDirectorySchema as hr, AGENT_REPLY_PREVIEW_PURPOSE as ht, localWakeRouteReportSchema as i, spacePublicationModeSchema as in, executeExecutionRecoveryBodySchema as ir, agentTaskCompletionConditionSchema as it, runtimeTransportResumeControllerConversationResultFramePayloadSchema as j, formatLocalSetupActionLabel as jn, resolveCommandAgentWorkActivity as jr, projectSpaceMessageAttachment as jt, runtimeTransportRejectedProfileRegistrationSchema as k, formatLocalComponentsSummaryLabel as kn, openMeldNavigationTargetSchema as kr, SPACE_ATTACHMENT_MAX_SIZE_BYTES as kt, runtimeTransportDispatchInteractionResponseFramePayloadSchema as l, MESSAGE_MENTION_TYPE_VALUES as ln, MAX_PROFILE_WORKING_DIRECTORY_LENGTH as lr, buildAgentTaskKey as lt, runtimeTransportDispatchToolActivityRequestSchema as m, normalizeMessageEnvelope as mn, profileSchema as mr, AGENT_REPLY_PREVIEW_END_PURPOSE as mt, daemonExecutionCompatibilitySchema as n, resultArchivePolicySchema as nn, organizationProtectedInformationSchema as nr, localFolderPathSchema as nt, runtimeTransportDeliverDispatchRequestSchema as o, workingLanguageGuidanceSchema as on, inspectExecutionRecoveryResponseSchema as or, agentTaskHandleSchema as ot, runtimeTransportDispatchRuntimeEvidenceRequestSchema as p, messageEnvelopeSchema as pn, profileKindSchema as pr, AGENT_REPLYING_PURPOSE as pt, openMeldDaemonTaskResultProjectFailureContextSchema as q, spaceTraceExecutionIdentityProjectionSchema as qn, providerDispatchRuntimeContextSchema as qt, daemonStreamFrameSchema as r, spaceAllowedActionsSchema as rn, updateOrganizationInformationProtectionPolicyBodySchema as rr, agentDelegationSnapshotSchema as rt, runtimeTransportDispatchInteractionDeliveredRequestSchema as s, workingLanguageTagSchema as sn, openMeldProfileIdSchema as sr, agentTaskTerminalOutcomeSchema as st, CURRENT_DAEMON_EXECUTION_CONTRACT_EPOCH as t, spaceContractSchema as tn, organizationInformationProtectionPolicyResponseSchema as tr, localFolderPickerResultSchema as tt, runtimeTransportDispatchLifecycleRequestSchema as u, collectCanonicalMentionTextFragments as un, agentProfileIdSchema as ur, controllerAgentTaskHandleSchema as ut, runtimeTransportHeartbeatResponseSchema as v, spaceAgentStreamDeltaFrameSchema as vn, finiteIntegerNumber as vr, DISPATCH_ACTIVITY_FAILED_PURPOSE as vt, runtimeTransportLocalAgentControlSetEnabledFramePayloadSchema as w, agentInteractionPendingSummarySchema as wn, resolveMappedPublicAgentFailureReason as wr, sanitizeSignalTextPreview as wt, runtimeTransportLocalAgentControlInterruptFramePayloadSchema as x, spaceAgentStreamSnapshotSchema as xn, trimmedStringFromUnknown as xr, SPACE_MEMBER_REMOVE_NOTICE_PURPOSE as xt, runtimeTransportLocalAgentControlCancelFramePayloadSchema as y, spaceAgentStreamPartFrameSchema as yn, nonEmptyTrimmedStringFromUnknown as yr, DISPATCH_ACTIVITY_RETRYING_PURPOSE as yt, runtimeTransportRuntimeCoordinatorHeadWaitingReasonCodeSchema as z, postSpaceWakeStopResponseSchema as zn, conversationCompactionMarkerSchema as zt };
|
|
6491
6540
|
|
|
6492
|
-
//# sourceMappingURL=runtime-transport-
|
|
6541
|
+
//# sourceMappingURL=runtime-transport-BLEvh9zX.js.map
|