Interface ManageGraphInput

Input args for the manage_graph tool call.

interface ManageGraphInput {
    action: "spawn_agent" | "remove_agent" | "reassign_role" | "add_tool" | "fork_branch";
    spec: Record<string, unknown>;
    reason: string;
}

Hierarchy

  • Record<string, any>
    • ManageGraphInput

Properties

Properties

action: "spawn_agent" | "remove_agent" | "reassign_role" | "add_tool" | "fork_branch"

What graph modification to perform.

spec: Record<string, unknown>

Specification for the modification (agent config, tool definition, etc.).

reason: string

Why this modification is needed.