Every subject-extractor row of the invariants carrier table is exercised with a matching and a foreign-keyed carrier; the HMR re-apply seed path (sessions of agents that predate the plugin are marked started) is pinned; the scoped tool-provider disposal, plural restrict() validation, singular scopeHost absentee, tool-subagent passthrough, stale-stage drop, and disposing-parent spawn (INACTIVE_EFFECT, no orphan) each gain their test. Two genuinely defensive branches carry justified v8-ignore markers.
306 lines
14 KiB
TypeScript
306 lines
14 KiB
TypeScript
/**
|
|
* The shared in-process subagent run driver: run a child as a child
|
|
* {@link Agent} on the SAME cordis context (`ctx.agents`) — the cheapest
|
|
* transport, reusing the agent factory's quiescent {@link AgentHandle}
|
|
* teardown. The concrete in-process backends are thin shells over this driver,
|
|
* differing ONLY in the `seed` they pass (a fresh child vs. a child seeded with
|
|
* a prefix of the parent's log); everything downstream — drive the child, read
|
|
* its final output, map the stop reason, dispose — is identical and lives here.
|
|
*
|
|
* This package owns no provider and registers nothing; it is a pure library the
|
|
* backend packages depend on, so neither backend needs to know about the other.
|
|
*
|
|
* @module @deepseek-ai/dsh-subagent-inprocess
|
|
*/
|
|
|
|
import { randomUUID } from 'node:crypto'
|
|
import type { Context } from 'cordis'
|
|
import { AgentId, type Agent, type AgentHandle, type AgentOptions } from '@deepseek-ai/dsh-agent'
|
|
import { SessionId, type SessionEvent, type TurnEndReason } from '@deepseek-ai/dsh-session'
|
|
import type { ContentBlock } from '@deepseek-ai/dsh-llm'
|
|
import { assertSupportedOutputSchema } from '@deepseek-ai/dsh-tools'
|
|
import type { SubagentResult, SubagentRun, SubagentStartRequest, SubagentStopReason } from '@deepseek-ai/dsh-subagent'
|
|
import {
|
|
attachStructuredRuntime,
|
|
type StructuredAttachment,
|
|
} from './structured.ts'
|
|
|
|
// The runtime itself (attach) is package-internal: runs attach it inside
|
|
// startInProcessRun's setup window, and no other package drives it. Only the
|
|
// model-facing vocabulary is public.
|
|
export {
|
|
STRUCTURED_OUTPUT_TOOL,
|
|
STRUCTURED_OUTPUT_INSTRUCTION,
|
|
} from './structured.ts'
|
|
|
|
declare module '@deepseek-ai/dsh-agent' {
|
|
interface AgentOptions {
|
|
/**
|
|
* The agent's delegation depth in the subagent tree — 0 for a top-level
|
|
* (config/ACP-created) agent, parent depth + 1 for a subagent. Set by the
|
|
* in-process backends on every child they create so a nested spawn reads its
|
|
* parent's depth from `parent.options.subagentDepth` and the `depthLimit`
|
|
* capability can cap the tree. Merge-extensible field (the seam owns it; the
|
|
* loop neither sets nor reads it).
|
|
*/
|
|
subagentDepth?: number
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Read an agent's delegation depth (absent ⇒ a top-level agent, depth 0).
|
|
* @param agent - the agent whose options may carry `subagentDepth`.
|
|
* @returns 0 for a top-level agent, its parent's depth + 1 for a subagent.
|
|
*/
|
|
export function depthOf(agent: Agent): number {
|
|
return agent.options.subagentDepth ?? 0
|
|
}
|
|
|
|
/** Thrown when a spawn would exceed the request's `maxDepth` cap. */
|
|
export class SubagentDepthError extends Error {
|
|
constructor(public readonly attemptedDepth: number, public readonly maxDepth: number) {
|
|
super(`subagent depth ${attemptedDepth} exceeds maxDepth ${maxDepth}`)
|
|
this.name = 'SubagentDepthError'
|
|
}
|
|
}
|
|
|
|
/** Map a session `turn/end` reason to a {@link SubagentStopReason}. */
|
|
function toStopReason(reason: TurnEndReason | undefined): SubagentStopReason {
|
|
switch (reason?.kind) {
|
|
case 'completed':
|
|
return 'completed'
|
|
case 'max-tokens':
|
|
return 'max-tokens'
|
|
case 'aborted':
|
|
return 'aborted'
|
|
// `disposed` (torn down mid-turn) and `interrupted` (crash-closed) both mean
|
|
// the turn did not finish cleanly; surface them as a generic failure rather
|
|
// than a clean completion. A missing reason (no turn ran) is also an error.
|
|
case 'error':
|
|
case 'disposed':
|
|
case 'interrupted':
|
|
default:
|
|
return 'error'
|
|
}
|
|
}
|
|
|
|
/** Extra inputs the spawn/fork backends supply to {@link startInProcessRun}. */
|
|
export interface InProcessRunOptions {
|
|
/** The provider name (`spawn`/`fork`), for error context only. */
|
|
readonly providerName: string
|
|
/**
|
|
* The child session's seed: a balanced, contiguous-from-0 prefix of the
|
|
* parent's log (FORK), or `undefined` for a fresh child (SPAWN).
|
|
*/
|
|
readonly seed?: SessionEvent[]
|
|
}
|
|
|
|
/**
|
|
* Start an in-process child agent for `request` and return a {@link SubagentRun}.
|
|
*
|
|
* Drives the child as a one-shot: `send(prompt)` then `whenIdle()` (the ordering
|
|
* matters — `send` enqueues synchronously, so `whenIdle` observes the queued
|
|
* work and resolves only on the child's `running → idle` transition, never
|
|
* before the turn starts). The final `assistant/message` is the result output,
|
|
* the matching `turn/end.reason` the stop reason. `dispose()` delegates to the
|
|
* factory's {@link AgentHandle.dispose} (stop loop → await quiescence → remove
|
|
* session); `cancel()` cancels the child's in-flight turn.
|
|
*
|
|
* Throws {@link SubagentDepthError} before creating anything when the child's
|
|
* depth (parent depth + 1) would exceed `request.maxDepth`.
|
|
* @param ctx - the context whose `agents` factory creates and owns the child.
|
|
* @param request - the start request (prompt, parent, signal, per-child options).
|
|
* @param options - the backend's inputs: provider name plus the optional seed.
|
|
* @returns the live run handle for the child agent.
|
|
*/
|
|
export function startInProcessRun(
|
|
ctx: Context,
|
|
request: SubagentStartRequest,
|
|
options: InProcessRunOptions,
|
|
): SubagentRun {
|
|
const childDepth = depthOf(request.parent) + 1
|
|
if (request.maxDepth !== undefined && childDepth > request.maxDepth) {
|
|
throw new SubagentDepthError(childDepth, request.maxDepth)
|
|
}
|
|
// Assert, then snapshot, the schema subset BEFORE any child exists (the
|
|
// service has already capability-gated; this rejects a schema outside the
|
|
// enforced subset loud). Assertion comes FIRST so a hostile value fails as
|
|
// OutputSchemaError, never as structuredClone's raw DataCloneError — the
|
|
// asserted subset is plain JSON data, which always clones. The snapshot is
|
|
// load-bearing: the caller keeps its reference, so attaching the ORIGINAL
|
|
// would let a post-start() mutation drift the enforced schema away from the
|
|
// asserted one — the clone (taken synchronously with the assertion, no
|
|
// interleaving possible) pins assertion, the model-visible parameters, and
|
|
// validateStructuredValue to one isolation-immutable value.
|
|
if (request.outputSchema !== undefined) assertSupportedOutputSchema(request.outputSchema)
|
|
const schema = request.outputSchema === undefined ? undefined : structuredClone(request.outputSchema)
|
|
|
|
const childId = AgentId(randomUUID())
|
|
// The child's OWN events begin after the seed (fork seeds the parent's
|
|
// completed-turn prefix; spawn seeds nothing). `readResult` scopes to this
|
|
// boundary so a child that produces no message of its own never returns the
|
|
// SEEDED parent's last assistant message as its result.
|
|
const seedLength = options.seed?.length ?? 0
|
|
const parentHeader = request.parent.session.header
|
|
// Inherit the parent's model by default (a child with no model cannot run);
|
|
// an explicit `request.agentOptions.model` overrides it. The deployment
|
|
// persona needs no inheritance (a context-wide section both render); a
|
|
// per-child `request.persona` becomes a SCOPED section of the same name in
|
|
// the setup below, shadowing the deployment's for this child alone.
|
|
const agentOptions: AgentOptions = {
|
|
...request.parent.options.model !== undefined ? { model: request.parent.options.model } : {},
|
|
...request.agentOptions,
|
|
subagentDepth: childDepth,
|
|
}
|
|
|
|
// The child's scoped world, composed in the factory's setup window (after
|
|
// the child's scope exists and it is registered, before agent/session-start
|
|
// and the first prompt assembly; a throw here unwinds the half-created
|
|
// child inside the factory's rollback boundary):
|
|
// - persona: a scoped `deployment:persona` section shadowing the global one;
|
|
// - toolFilter: a scoped restrict() masking the global tool surface
|
|
// (loud unknown-name validation lives in the registry);
|
|
// - outputSchema: the structured runtime, attached as scoped registrations.
|
|
let structured: StructuredAttachment | undefined
|
|
const setup = (childCtx: Context): void => {
|
|
if (request.persona !== undefined) {
|
|
childCtx.systemPrompt.section({ name: 'deployment:persona', order: 0, text: request.persona })
|
|
}
|
|
if (request.toolFilter !== undefined) {
|
|
childCtx.tools.restrict(request.toolFilter)
|
|
}
|
|
if (schema !== undefined) {
|
|
structured = attachStructuredRuntime(childCtx, schema)
|
|
}
|
|
}
|
|
|
|
const handle: AgentHandle = ctx.agents.create({
|
|
agentId: childId,
|
|
sessionId: SessionId(randomUUID()),
|
|
meta: {
|
|
...parentHeader.cwd !== undefined ? { cwd: parentHeader.cwd } : {},
|
|
parentSession: parentHeader.id,
|
|
// Record the seed boundary so a reload (and a replay harness) can tell the
|
|
// inherited prefix from the child's OWN events. 0 for a fresh spawn.
|
|
...seedLength > 0 ? { seedLength } : {},
|
|
},
|
|
...options.seed !== undefined ? { seed: options.seed } : {},
|
|
agentOptions,
|
|
setup,
|
|
})
|
|
const child = handle.agent
|
|
|
|
// Structured-concurrency link: the child's teardown rides the PARENT's
|
|
// scope, so a disposed parent reaches its whole subtree even if the
|
|
// delegating tool's `finally` never runs — through the MEMOIZED handle, so
|
|
// every path (tool finally, parent teardown, owner unload) observes the
|
|
// same quiescence boundary. Registered AFTER the child exists; if the
|
|
// parent began disposing in between, the registration throws
|
|
// INACTIVE_EFFECT — dispose the fresh child before rethrowing (no orphan).
|
|
// Definite assignment: the catch rethrows, so past this block the unlink
|
|
// disposer always exists.
|
|
let unlink!: () => Promise<void> | void
|
|
try {
|
|
unlink = request.parent.ctx.effect(() => () => handle.dispose())
|
|
} catch (error: unknown) {
|
|
// Fire-and-forget: start() must rethrow synchronously; the child's
|
|
// teardown (stop → unregister → detach) reaches quiescence on its own.
|
|
void handle.dispose()
|
|
throw error
|
|
}
|
|
|
|
// Bridge the request's abort signal to the child (the consumer also bridges
|
|
// its own exec.signal, but a backend-level bridge keeps the contract local).
|
|
// `cancelled` records that a cancel was requested at all, so the pre-turn
|
|
// cancel window — where the child clears the queued prompt before any
|
|
// `turn/end` is logged — settles as `aborted` (honoring the cancel contract)
|
|
// rather than falling through to the no-turn `error` mapping.
|
|
let cancelled = false
|
|
// An accessor, not an inline read: `cancelled` mutates from closures (the
|
|
// abort listener, run.cancel), which control-flow narrowing cannot see — an
|
|
// inline read at the result mapping would narrow to the initializer.
|
|
const isCancelled = (): boolean => cancelled
|
|
const requestCancel = (reason: string): void => {
|
|
cancelled = true
|
|
child.cancel(reason)
|
|
}
|
|
const onAbort = (): void => { requestCancel('subagent cancelled') }
|
|
request.signal?.addEventListener('abort', onAbort, { once: true })
|
|
|
|
const result: Promise<SubagentResult> = (async () => {
|
|
try {
|
|
// A signal already aborted BEFORE the run starts never fires an `abort`
|
|
// event (`addEventListener` only fires on the transition), so the listener
|
|
// above won't catch it — settle `aborted` without running the child rather
|
|
// than completing an already-cancelled request.
|
|
if (request.signal?.aborted) return { output: [], stopReason: 'aborted' }
|
|
child.send(request.prompt)
|
|
await child.whenIdle()
|
|
// Deliberately NO re-prompt when a structured child finishes cleanly
|
|
// without calling structured_output: readResult maps that to `error` —
|
|
// the shortfall goes to the parent instead of buying extra model turns.
|
|
return readResult(child, seedLength, isCancelled(), structured ? { captured: structured.captured() } : undefined)
|
|
} finally {
|
|
request.signal?.removeEventListener('abort', onAbort)
|
|
}
|
|
})()
|
|
|
|
return {
|
|
id: childId,
|
|
result,
|
|
cancel(reason?: string): void {
|
|
requestCancel(reason ?? 'subagent cancelled')
|
|
},
|
|
async dispose(): Promise<void> {
|
|
request.signal?.removeEventListener('abort', onAbort)
|
|
// Through the parent-scope unlink when the parent is still live (one
|
|
// disposal path, and the dead effect leaves the parent's list); the
|
|
// memoized handle keeps a direct dispose equivalent if the parent's
|
|
// teardown already ran the unlink.
|
|
await unlink()
|
|
await handle.dispose()
|
|
},
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Read a settled child's terminal result from its session log, scoped to the
|
|
* child's OWN events (everything at or after `seedLength` — fork seeds the
|
|
* parent's completed-turn prefix, so a child that produced no message of its
|
|
* own must NOT return the seeded parent's last assistant message). The output
|
|
* is the child's last `assistant/message` content (deep-cloned — the log is
|
|
* frozen); the stop reason is the child's last `turn/end` reason mapped to a
|
|
* {@link SubagentStopReason}. When `cancelled` is set but no `turn/end` was
|
|
* logged (a cancel landed in the pre-turn window, before any turn ran), the
|
|
* run settles `aborted` per the {@link SubagentRun.cancel} contract rather than
|
|
* the generic no-turn `error`.
|
|
*
|
|
* A structured run (`structured` present) additionally reports the captured
|
|
* value on {@link SubagentResult.structured}. A structured child that finished
|
|
* CLEANLY without ever capturing (the nudges ran out) settles `error` — a clean
|
|
* finish without the demanded structured result is a failure, not a success
|
|
* with a missing field; a non-`completed` reason keeps its own honest mapping.
|
|
*/
|
|
function readResult(
|
|
child: Agent,
|
|
seedLength: number,
|
|
cancelled: boolean,
|
|
structured?: { captured?: { value: unknown } | undefined },
|
|
): SubagentResult {
|
|
const own = child.session.events.slice(seedLength)
|
|
const lastMessage = own.findLast((e): e is SessionEvent<'assistant/message'> => e.type === 'assistant/message')
|
|
const lastEnd = own.findLast((e): e is SessionEvent<'turn/end'> => e.type === 'turn/end')
|
|
const output: ContentBlock[] = lastMessage ? structuredClone(lastMessage.data.content) : []
|
|
const stopReason: SubagentStopReason = lastEnd === undefined && cancelled
|
|
? 'aborted'
|
|
: toStopReason(lastEnd?.data.reason)
|
|
if (structured) {
|
|
if (structured.captured) return { output, structured: structured.captured.value, stopReason }
|
|
// No capture on a cleanly-completed turn: an ERROR when the run was left
|
|
// to finish (the nudges ran out), but ABORTED when a cancel is why the
|
|
// nudging stopped — the cancel contract outranks the schema shortfall.
|
|
if (stopReason === 'completed') return { output, stopReason: cancelled ? 'aborted' : 'error' }
|
|
}
|
|
return { output, stopReason }
|
|
}
|