Type Alias: SpawnSubagentRpcRequest
Makaio Framework / contracts / SpawnSubagentRpcRequest
Type Alias: SpawnSubagentRpcRequest
Section titled “Type Alias: SpawnSubagentRpcRequest”SpawnSubagentRpcRequest =
z.infer<typeofSpawnSubagentRpcRequestSchema>
Defined in: ../../../packages/contracts/src/subagent/schemas.ts:187
Type Composition
Section titled “Type Composition”SpawnSubagentRpcRequestz.infer<typeof SpawnSubagentRpcRequestSchema>typeof SpawnSubagentRpcRequestSchema
Resolved Shape
Section titled “Resolved Shape”type SpawnSubagentRpcRequest = { parentSessionId: string; config: { task: string; contextMode: 'fork' | 'fresh'; adapterName?: string | undefined; providerConfigId?: string | undefined; harnessId?: string | undefined; model?: string | undefined; tools?: Array<string> | undefined; disallowedTools?: Array<string> | undefined; systemPrompt?: string | undefined; maxDepth?: number | undefined; responseSchema?: Record<string, unknown> | undefined; executionTargetId?: string | undefined; workstreamId?: string | undefined; }; depth: number; spawningToolCallId?: string | undefined;};