Agent Client Protocol - v0.2.0-alpha.8
    Preparing search index...

    Interface PlanEntry

    A single entry in the execution plan.

    Represents a task or goal that the assistant intends to accomplish as part of fulfilling the user's request. See protocol docs: Plan Entries

    interface PlanEntry {
        content: string;
        priority: "high" | "medium" | "low";
        status: "pending" | "in_progress" | "completed";
    }
    Index

    Properties

    content: string

    Human-readable description of what this task aims to accomplish.

    priority: "high" | "medium" | "low"

    The relative importance of this task. Used to indicate which tasks are most critical to the overall goal.

    status: "pending" | "in_progress" | "completed"

    Current execution status of this task.