Type Alias: SubagentConfig
Makaio Framework / contracts / SubagentConfig
Type Alias: SubagentConfig
Section titled “Type Alias: SubagentConfig”SubagentConfig =
z.infer<typeofSubagentConfigSchema>
Defined in: ../../../packages/contracts/src/subagent/schemas.ts:68
Type Composition
Section titled “Type Composition”SubagentConfigz.infer<typeof SubagentConfigSchema>typeof SubagentConfigSchema
Resolved Shape
Section titled “Resolved Shape”type SubagentConfig = { 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;};