-
-
Notifications
You must be signed in to change notification settings - Fork 80.8k
Expand file tree
/
Copy pathsessions-send-tool.ts
More file actions
764 lines (728 loc) · 26 KB
/
Copy pathsessions-send-tool.ts
File metadata and controls
764 lines (728 loc) · 26 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
/**
* sessions_send built-in tool.
*
* Sends messages to visible sessions, starts embedded runs, and optionally announces replies.
*/
import crypto from "node:crypto";
import { isRequesterParentOfBackgroundAcpSession } from "@openclaw/acp-core/session-interaction-mode";
import { finiteSecondsToTimerSafeMilliseconds } from "@openclaw/normalization-core/number-coercion";
import { normalizeOptionalString } from "@openclaw/normalization-core/string-coerce";
import { Type } from "typebox";
import { readAcpSessionMeta } from "../../acp/runtime/session-meta.js";
import { parseSessionThreadInfoFast } from "../../config/sessions/thread-info.js";
import type { SessionEntry } from "../../config/sessions/types.js";
import type { OpenClawConfig } from "../../config/types.openclaw.js";
import { callGateway } from "../../gateway/call.js";
import { formatErrorMessage } from "../../infra/errors.js";
import {
isSubagentSessionKey,
normalizeAgentId,
resolveAgentIdFromSessionKey,
toAgentStoreSessionKey,
} from "../../routing/session-key.js";
import { annotateInterSessionPromptText } from "../../sessions/input-provenance.js";
import { isCronRunSessionKey, parseAgentSessionKey } from "../../sessions/session-key-utils.js";
import { SESSION_LABEL_MAX_LENGTH } from "../../sessions/session-label.js";
import { stripFormattedReasoningMessage } from "../../shared/text/formatted-reasoning-message.js";
import {
type GatewayMessageChannel,
INTERNAL_MESSAGE_CHANNEL,
} from "../../utils/message-channel.js";
import { listAgentIds } from "../agent-scope.js";
import {
type EmbeddedAgentQueueMessageOptions,
type EmbeddedAgentQueueMessageOutcome,
formatEmbeddedAgentQueueFailureSummary,
queueEmbeddedAgentMessageWithOutcomeAsync,
resolveActiveEmbeddedRunSessionId,
} from "../embedded-agent-runner/runs.js";
import { resolveNestedAgentLaneForSession } from "../lanes.js";
import {
type AgentWaitResult,
readLatestAssistantReplySnapshot,
waitForAgentRunAndReadUpdatedAssistantReply,
} from "../run-wait.js";
import { loadSessionEntryByKey } from "../subagent-announce-delivery.js";
import {
describeSessionsSendTool,
SESSIONS_SEND_TOOL_DISPLAY_SUMMARY,
} from "../tool-description-presets.js";
import type { AnyAgentTool } from "./common.js";
import { jsonResult, readNonNegativeIntegerParam, readStringParam } from "./common.js";
import {
createSessionVisibilityGuard,
createAgentToAgentPolicy,
resolveEffectiveSessionToolsVisibility,
resolveSessionReference,
resolveSessionToolContext,
resolveVisibleSessionReference,
} from "./sessions-helpers.js";
import { buildAgentToAgentMessageContext, resolvePingPongTurns } from "./sessions-send-helpers.js";
import { runSessionsSendA2AFlow } from "./sessions-send-tool.a2a.js";
const SessionsSendToolSchema = Type.Object({
sessionKey: Type.Optional(Type.String()),
label: Type.Optional(Type.String({ minLength: 1, maxLength: SESSION_LABEL_MAX_LENGTH })),
agentId: Type.Optional(Type.String({ minLength: 1, maxLength: 64 })),
message: Type.String(),
timeoutSeconds: Type.Optional(Type.Integer({ minimum: 0 })),
});
type GatewayCaller = typeof callGateway;
const SESSIONS_SEND_REPLY_HISTORY_LIMIT = 50;
const SESSIONS_SEND_MESSAGE_ALIASES = ["SendMessage", "content", "text"] as const;
function normalizeSessionsSendArguments(args: unknown): Record<string, unknown> {
const params =
args && typeof args === "object" && !Array.isArray(args)
? { ...(args as Record<string, unknown>) }
: {};
if (typeof params.message !== "string" || !params.message.trim()) {
for (const alias of SESSIONS_SEND_MESSAGE_ALIASES) {
const value = readStringParam(params, alias);
if (value) {
params.message = stripFormattedReasoningMessage(value);
break;
}
}
}
for (const alias of SESSIONS_SEND_MESSAGE_ALIASES) {
delete params[alias];
}
return params;
}
function resolveConfiguredAgentMainSessionKey(params: {
cfg: OpenClawConfig;
agentId: string;
mainKey: string;
}): string | undefined {
const agentId = normalizeAgentId(params.agentId);
if (!listAgentIds(params.cfg).includes(agentId)) {
return undefined;
}
return toAgentStoreSessionKey({
agentId,
requestKey: "main",
mainKey: params.mainKey,
});
}
function isConfiguredAgentMainSessionKey(params: {
cfg: OpenClawConfig;
sessionKey: string;
mainKey: string;
}): boolean {
const agentId = resolveAgentIdFromSessionKey(params.sessionKey);
return (
params.sessionKey ===
resolveConfiguredAgentMainSessionKey({
cfg: params.cfg,
agentId,
mainKey: params.mainKey,
})
);
}
async function ensureConfiguredAgentMainSession(params: {
cfg: OpenClawConfig;
callGateway: GatewayCaller;
sessionKey: string;
mainKey: string;
}): Promise<{ ok: true } | { ok: false; error: string }> {
if (
!isConfiguredAgentMainSessionKey({
cfg: params.cfg,
sessionKey: params.sessionKey,
mainKey: params.mainKey,
})
) {
return { ok: true };
}
try {
await params.callGateway({
method: "sessions.resolve",
params: { key: params.sessionKey },
timeoutMs: 10_000,
});
return { ok: true };
} catch {
try {
await params.callGateway({
method: "sessions.create",
params: {
key: params.sessionKey,
agentId: resolveAgentIdFromSessionKey(params.sessionKey),
},
timeoutMs: 10_000,
});
return { ok: true };
} catch (err) {
return { ok: false, error: formatErrorMessage(err) };
}
}
}
type SessionsSendRouteEntry = Pick<SessionEntry, "acp" | "parentSessionKey" | "spawnedBy">;
function isRequesterParentOfNativeSubagentSession(params: {
entry: SessionsSendRouteEntry | null | undefined;
acpMeta?: unknown;
requesterSessionKey: string | null | undefined;
targetSessionKey: string;
}): boolean {
if (
!params.entry ||
params.acpMeta ||
params.entry.acp ||
!isSubagentSessionKey(params.targetSessionKey)
) {
return false;
}
const requester = normalizeOptionalString(params.requesterSessionKey);
if (!requester) {
return false;
}
const spawnedBy = normalizeOptionalString(params.entry.spawnedBy);
const parentSessionKey = normalizeOptionalString(params.entry.parentSessionKey);
return requester === spawnedBy || requester === parentSessionKey;
}
function isTerminalAgentWaitTimeout(result: AgentWaitResult): boolean {
return result.endedAt !== undefined || Boolean(result.stopReason || result.livenessState);
}
function isPendingErrorAgentWaitTimeout(result: AgentWaitResult): boolean {
return (
result.pendingError === true && typeof result.error === "string" && result.error.trim() !== ""
);
}
function isRunScopedAgentSessionKey(sessionKey: string): boolean {
const parsed = parseAgentSessionKey(normalizeOptionalString(sessionKey));
return Boolean(parsed && /(?:^|:)run:[^:]+(?::|$)/.test(parsed.rest));
}
function resolveCronRunScopedFallbackSessionKey(sessionKey: string): string | undefined {
const normalizedSessionKey = normalizeOptionalString(sessionKey);
if (!normalizedSessionKey || !isCronRunSessionKey(normalizedSessionKey)) {
return undefined;
}
const parsed = parseAgentSessionKey(normalizedSessionKey);
if (!parsed) {
return undefined;
}
const runMarker = ":run:";
const runMarkerIndex = parsed.rest.lastIndexOf(runMarker);
if (runMarkerIndex <= 0) {
return undefined;
}
const runId = parsed.rest.slice(runMarkerIndex + runMarker.length);
if (!runId || runId.includes(":")) {
return undefined;
}
const fallbackRest = parsed.rest.slice(0, runMarkerIndex);
if (!fallbackRest) {
return undefined;
}
return `agent:${parsed.agentId}:${fallbackRest}`;
}
function shouldFallbackCronRunScopedActiveDelivery(
outcome: EmbeddedAgentQueueMessageOutcome,
): boolean {
return (
!outcome.queued && (outcome.reason === "not_streaming" || outcome.reason === "no_active_run")
);
}
async function startAgentRun(params: {
callGateway: GatewayCaller;
runId: string;
sendParams: Record<string, unknown>;
sessionKey: string;
deliveryTimeoutMs?: number;
allowActiveRunQueueDelivery?: boolean;
}): Promise<
| {
ok: true;
runId: string;
activeRunQueue?: boolean;
a2aSessionKey?: string;
a2aDisplayKey?: string;
}
| { ok: false; result: ReturnType<typeof jsonResult> }
> {
try {
const activeRunSessionId =
params.allowActiveRunQueueDelivery && isRunScopedAgentSessionKey(params.sessionKey)
? resolveActiveEmbeddedRunSessionId(params.sessionKey)
: undefined;
const messageText =
typeof params.sendParams.message === "string" ? params.sendParams.message : undefined;
if (activeRunSessionId && messageText) {
const sourceReplyDeliveryMode =
params.sendParams.sourceReplyDeliveryMode === "automatic" ||
params.sendParams.sourceReplyDeliveryMode === "message_tool_only"
? params.sendParams.sourceReplyDeliveryMode
: undefined;
const queueOptions: EmbeddedAgentQueueMessageOptions = {
steeringMode: "all",
debounceMs: 0,
deliveryTimeoutMs: params.deliveryTimeoutMs,
waitForTranscriptCommit: true,
...(sourceReplyDeliveryMode ? { sourceReplyDeliveryMode } : {}),
};
let queueOutcome = await queueEmbeddedAgentMessageWithOutcomeAsync(
activeRunSessionId,
messageText,
queueOptions,
);
if (!queueOutcome.queued && queueOutcome.reason === "transcript_commit_wait_unsupported") {
const bestEffortQueueOptions = { ...queueOptions };
delete bestEffortQueueOptions.waitForTranscriptCommit;
queueOutcome = await queueEmbeddedAgentMessageWithOutcomeAsync(
activeRunSessionId,
messageText,
bestEffortQueueOptions,
);
}
if (queueOutcome.queued) {
return { ok: true, runId: params.runId, activeRunQueue: true };
}
const fallbackSessionKey = resolveCronRunScopedFallbackSessionKey(params.sessionKey);
if (fallbackSessionKey && shouldFallbackCronRunScopedActiveDelivery(queueOutcome)) {
const response = await params.callGateway<{ runId: string }>({
method: "agent",
params: {
...params.sendParams,
sessionKey: fallbackSessionKey,
idempotencyKey: crypto.randomUUID(),
},
timeoutMs: 10_000,
});
return {
ok: true,
runId:
typeof response?.runId === "string" && response.runId ? response.runId : params.runId,
a2aSessionKey: fallbackSessionKey,
a2aDisplayKey: fallbackSessionKey,
};
}
const queueSummary =
formatEmbeddedAgentQueueFailureSummary(queueOutcome) ?? "active run queue rejected";
throw new Error(queueSummary);
}
const response = await params.callGateway<{ runId: string }>({
method: "agent",
params: params.sendParams,
timeoutMs: 10_000,
});
return {
ok: true,
runId: typeof response?.runId === "string" && response.runId ? response.runId : params.runId,
};
} catch (err) {
const messageText =
err instanceof Error ? err.message : typeof err === "string" ? err : "error";
return {
ok: false,
result: jsonResult({
runId: params.runId,
status: "error",
error: messageText,
sessionKey: params.sessionKey,
}),
};
}
}
export function createSessionsSendTool(opts?: {
agentSessionKey?: string;
agentChannel?: GatewayMessageChannel;
sandboxed?: boolean;
config?: OpenClawConfig;
callGateway?: GatewayCaller;
}): AnyAgentTool {
return {
label: "Session Send",
name: "sessions_send",
displaySummary: SESSIONS_SEND_TOOL_DISPLAY_SUMMARY,
description: describeSessionsSendTool(),
parameters: SessionsSendToolSchema,
prepareArguments: normalizeSessionsSendArguments,
execute: async (_toolCallId, args) => {
const params = normalizeSessionsSendArguments(args);
const gatewayCall = opts?.callGateway ?? callGateway;
const message = readStringParam(params, "message", { required: true });
const timeoutSeconds = readNonNegativeIntegerParam(params, "timeoutSeconds") ?? 30;
const { cfg, mainKey, alias, effectiveRequesterKey, restrictToSpawned } =
resolveSessionToolContext(opts);
const a2aPolicy = createAgentToAgentPolicy(cfg);
const sessionVisibility = resolveEffectiveSessionToolsVisibility({
cfg,
sandboxed: opts?.sandboxed === true,
});
const sessionKeyParam = readStringParam(params, "sessionKey");
const labelParam = normalizeOptionalString(readStringParam(params, "label"));
const labelAgentIdParam = normalizeOptionalString(readStringParam(params, "agentId"));
let sessionKey = sessionKeyParam;
if (!sessionKey && !labelParam && labelAgentIdParam) {
const agentMainKey = resolveConfiguredAgentMainSessionKey({
cfg,
agentId: labelAgentIdParam,
mainKey,
});
if (!agentMainKey) {
return jsonResult({
runId: crypto.randomUUID(),
status: "error",
error: `agent not found: ${labelAgentIdParam}`,
});
}
sessionKey = agentMainKey;
}
if (!sessionKey && labelParam) {
const requesterAgentId = resolveAgentIdFromSessionKey(effectiveRequesterKey);
const requestedAgentId = labelAgentIdParam
? normalizeAgentId(labelAgentIdParam)
: undefined;
if (restrictToSpawned && requestedAgentId && requestedAgentId !== requesterAgentId) {
return jsonResult({
runId: crypto.randomUUID(),
status: "forbidden",
error: "Sandboxed sessions_send label lookup is limited to this agent",
});
}
if (requesterAgentId && requestedAgentId && requestedAgentId !== requesterAgentId) {
if (!a2aPolicy.enabled) {
return jsonResult({
runId: crypto.randomUUID(),
status: "forbidden",
error:
"Agent-to-agent messaging is disabled. Set tools.agentToAgent.enabled=true to allow cross-agent sends.",
});
}
if (!a2aPolicy.isAllowed(requesterAgentId, requestedAgentId)) {
return jsonResult({
runId: crypto.randomUUID(),
status: "forbidden",
error: "Agent-to-agent messaging denied by tools.agentToAgent.allow.",
});
}
}
const resolveParams: Record<string, unknown> = {
label: labelParam,
...(requestedAgentId ? { agentId: requestedAgentId } : {}),
...(restrictToSpawned ? { spawnedBy: effectiveRequesterKey } : {}),
};
let resolvedKey;
try {
const resolved = await gatewayCall<{ key: string }>({
method: "sessions.resolve",
params: resolveParams,
timeoutMs: 10_000,
});
resolvedKey = normalizeOptionalString(resolved?.key) ?? "";
} catch (err) {
const msg = formatErrorMessage(err);
if (restrictToSpawned) {
return jsonResult({
runId: crypto.randomUUID(),
status: "forbidden",
error: "Session not visible from this sandboxed agent session.",
});
}
return jsonResult({
runId: crypto.randomUUID(),
status: "error",
error: msg || `No session found with label: ${labelParam}`,
});
}
if (!resolvedKey) {
if (restrictToSpawned) {
return jsonResult({
runId: crypto.randomUUID(),
status: "forbidden",
error: "Session not visible from this sandboxed agent session.",
});
}
return jsonResult({
runId: crypto.randomUUID(),
status: "error",
error: `No session found with label: ${labelParam}`,
});
}
sessionKey = resolvedKey;
}
if (!sessionKey) {
return jsonResult({
runId: crypto.randomUUID(),
status: "error",
error: "Either sessionKey or label is required",
});
}
const resolvedSession = await resolveSessionReference({
sessionKey,
alias,
mainKey,
requesterInternalKey: effectiveRequesterKey,
restrictToSpawned,
});
if (!resolvedSession.ok) {
return jsonResult({
runId: crypto.randomUUID(),
status: resolvedSession.status,
error: resolvedSession.error,
});
}
const visibleSession = await resolveVisibleSessionReference({
resolvedSession,
requesterSessionKey: effectiveRequesterKey,
restrictToSpawned,
visibilitySessionKey: sessionKey,
});
const unresolvedDisplayKey = sessionKey;
if (!visibleSession.ok) {
return jsonResult({
runId: crypto.randomUUID(),
status: visibleSession.status,
error: visibleSession.error,
sessionKey: unresolvedDisplayKey,
});
}
// Normalize sessionKey/sessionId input into a canonical session key.
const resolvedKey = visibleSession.key;
const displayKey = visibleSession.displayKey;
const timeoutMs =
finiteSecondsToTimerSafeMilliseconds(timeoutSeconds, {
floorSeconds: true,
}) ?? 0;
const announceTimeoutMs = timeoutSeconds === 0 ? 30_000 : timeoutMs;
const idempotencyKey = crypto.randomUUID();
let runId: string = idempotencyKey;
if (parseSessionThreadInfoFast(resolvedKey).threadId) {
return jsonResult({
runId: crypto.randomUUID(),
status: "error",
error:
"sessions_send cannot target a thread session for inter-agent coordination. Use the parent channel session key instead.",
sessionKey: unresolvedDisplayKey,
});
}
const visibilityGuard = await createSessionVisibilityGuard({
action: "send",
requesterSessionKey: effectiveRequesterKey,
visibility: sessionVisibility,
a2aPolicy,
});
const access = visibilityGuard.check(resolvedKey);
if (!access.allowed) {
return jsonResult({
runId: crypto.randomUUID(),
status: access.status,
error: access.error,
sessionKey: unresolvedDisplayKey,
});
}
const ensuredSession = await ensureConfiguredAgentMainSession({
cfg,
callGateway: gatewayCall,
sessionKey: resolvedKey,
mainKey,
});
if (!ensuredSession.ok) {
return jsonResult({
runId: crypto.randomUUID(),
status: "error",
error: ensuredSession.error,
sessionKey: displayKey,
});
}
const requesterSessionKey = opts?.agentSessionKey;
const requesterChannel = opts?.agentChannel;
const sameSessionA2A = requesterSessionKey === resolvedKey;
// Capture the pre-run assistant snapshot before starting the nested run.
// Fast in-process test doubles and short-circuit agent paths can finish
// before we reach the post-run read, which would otherwise make the new
// reply look like the baseline and hide it from the caller.
// Fire-and-forget same-session sends still need this baseline because the
// A2A follow-up may deliver directly to the source channel.
const baselineReply =
timeoutSeconds !== 0
? await readLatestAssistantReplySnapshot({
sessionKey: resolvedKey,
limit: SESSIONS_SEND_REPLY_HISTORY_LIMIT,
callGateway: gatewayCall,
})
: sameSessionA2A
? await readLatestAssistantReplySnapshot({
sessionKey: resolvedKey,
limit: SESSIONS_SEND_REPLY_HISTORY_LIMIT,
callGateway: gatewayCall,
}).catch(() => undefined)
: undefined;
const agentMessageContext = buildAgentToAgentMessageContext({
requesterSessionKey: opts?.agentSessionKey,
requesterChannel: opts?.agentChannel,
targetSessionKey: displayKey,
});
const inputProvenance = {
kind: "inter_session" as const,
sourceSessionKey: opts?.agentSessionKey,
sourceChannel: opts?.agentChannel,
sourceTool: "sessions_send",
};
const sendParams = {
message: annotateInterSessionPromptText(message, inputProvenance),
sessionKey: resolvedKey,
idempotencyKey,
deliver: false,
sourceReplyDeliveryMode: "message_tool_only" as const,
channel: INTERNAL_MESSAGE_CHANNEL,
lane: resolveNestedAgentLaneForSession(resolvedKey),
extraSystemPrompt: agentMessageContext,
inputProvenance,
};
const maxPingPongTurns = resolvePingPongTurns(cfg);
// Skip the A2A ping-pong + announce flow when the current caller is the
// parent of a parent-owned child session it spawned itself and another
// parent-visible result path already exists.
//
// ACP background sessions report through the internal task completion
// path. Waited native subagent sends return the child reply inline. In
// both cases treating the child as a peer agent wakes the parent with
// the child's reply, can generate another user-facing response, and can
// forward that response back to the child as a new message — producing a
// ping-pong loop (bounded by maxPingPongTurns, but visible as duplicate
// conversation output).
//
// The skip is gated on requester ownership, not just target type: an
// unrelated sender that can see the same target (e.g. under
// `tools.sessions.visibility=all`) must still go through the normal A2A
// path so it actually receives a follow-up delivery.
const targetSessionEntry = loadSessionEntryByKey(resolvedKey);
const targetAcpMeta = readAcpSessionMeta({ sessionKey: resolvedKey });
const targetSessionEntryWithAcp =
targetAcpMeta && targetSessionEntry
? { ...targetSessionEntry, acp: targetAcpMeta }
: targetSessionEntry;
const skipAcpA2AFlow = isRequesterParentOfBackgroundAcpSession(
targetSessionEntryWithAcp,
effectiveRequesterKey,
);
const skipNativeParentA2AFlow =
timeoutSeconds !== 0 &&
isRequesterParentOfNativeSubagentSession({
entry: targetSessionEntry,
acpMeta: targetAcpMeta,
requesterSessionKey: effectiveRequesterKey,
targetSessionKey: resolvedKey,
});
const skipA2AFlow = skipAcpA2AFlow || skipNativeParentA2AFlow;
// When the A2A flow is skipped, no follow-up announcement will fire and
// the reply (when present) is returned inline via the `reply` field.
// Reflect that in the metadata so the parent LLM does not wait for a
// second result that will never arrive.
const delivery = skipA2AFlow
? ({ status: "skipped", mode: "announce" } as const)
: ({ status: "pending", mode: "announce" } as const);
const startA2AFlow = (
roundOneReply?: string,
waitRunId?: string,
flowTargetSessionKey = resolvedKey,
flowDisplayKey = displayKey,
) => {
if (skipA2AFlow) {
return;
}
void runSessionsSendA2AFlow({
targetSessionKey: flowTargetSessionKey,
displayKey: flowDisplayKey,
message,
announceTimeoutMs,
maxPingPongTurns,
requesterSessionKey,
requesterChannel,
baseline: baselineReply,
roundOneReply,
waitRunId,
});
};
if (timeoutSeconds === 0) {
const start = await startAgentRun({
callGateway: gatewayCall,
runId,
sendParams,
sessionKey: displayKey,
deliveryTimeoutMs: announceTimeoutMs,
allowActiveRunQueueDelivery: true,
});
if (!start.ok) {
return start.result;
}
runId = start.runId;
if (!start.activeRunQueue) {
startA2AFlow(undefined, runId, start.a2aSessionKey, start.a2aDisplayKey);
}
return jsonResult({
runId,
status: "accepted",
sessionKey: displayKey,
delivery,
});
}
const start = await startAgentRun({
callGateway: gatewayCall,
runId,
sendParams,
sessionKey: displayKey,
deliveryTimeoutMs: announceTimeoutMs,
});
if (!start.ok) {
return start.result;
}
runId = start.runId;
const result = await waitForAgentRunAndReadUpdatedAssistantReply({
runId,
sessionKey: resolvedKey,
timeoutMs,
limit: SESSIONS_SEND_REPLY_HISTORY_LIMIT,
baseline: baselineReply,
callGateway: gatewayCall,
});
if (result.status === "timeout") {
if (isPendingErrorAgentWaitTimeout(result)) {
startA2AFlow(undefined, runId);
return jsonResult({
runId,
status: "timeout",
error: result.error,
sentBeforeError: true,
sessionKey: displayKey,
delivery,
});
}
if (!isTerminalAgentWaitTimeout(result)) {
startA2AFlow(undefined, runId);
return jsonResult({
runId,
status: "accepted",
sessionKey: displayKey,
delivery,
});
}
return jsonResult({
runId,
status: "timeout",
error: result.error,
sentBeforeError: true,
sessionKey: displayKey,
});
}
if (result.status === "error") {
return jsonResult({
runId,
status: "error",
error: result.error ?? "agent error",
sentBeforeError: true,
sessionKey: displayKey,
});
}
const reply = result.replyText;
startA2AFlow(reply ?? undefined);
return jsonResult({
runId,
status: "ok",
reply,
sessionKey: displayKey,
delivery,
});
},
};
}