@deskcreate/agentcraft
    Preparing search index...

    Interface AgentTeamSpawnConfig

    interface AgentTeamSpawnConfig {
        executionHint?: "auto" | "parallel" | "sequential" | "pipeline";
        maxAgents?: number;
        maxRevisions?: number;
        maxRounds?: number;
        maxSupervisorReviews?: number;
        memory?: AgentAdapter;
        mode?: "orchestrator" | "planner-executor-reviewer";
        onMemberError?: "retry" | "skip" | "fail";
        roleBudgets?: Record<string, RunBudget>;
        roleHints?: string[];
        rolePolicies?: Record<string, ToolPolicy>;
        root: Agent;
        supervisor?: Agent;
        supervisorRubric?: string;
        workspace?: AgentWorkspaceInstance;
    }
    Index

    Properties

    executionHint?: "auto" | "parallel" | "sequential" | "pipeline"
    maxAgents?: number
    maxRevisions?: number
    maxRounds?: number
    maxSupervisorReviews?: number
    memory?: AgentAdapter
    mode?: "orchestrator" | "planner-executor-reviewer"
    onMemberError?: "retry" | "skip" | "fail"
    roleBudgets?: Record<string, RunBudget>
    roleHints?: string[]
    rolePolicies?: Record<string, ToolPolicy>
    root: Agent
    supervisor?: Agent
    supervisorRubric?: string