Agent Client Protocol - v0.12.0
    Preparing search index...

    Type Alias 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

    type PlanEntry = {
        _meta?: { [key: string]: unknown } | null;
        content: string;
        priority: PlanEntryPriority;
        status: PlanEntryStatus;
    }
    Index

    Properties

    _meta?: { [key: string]: unknown } | null

    The _meta property is reserved by ACP to allow clients and agents to attach additional metadata to their interactions. Implementations MUST NOT make assumptions about values at these keys.

    See protocol docs: Extensibility

    content: string

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

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

    Current execution status of this task.