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

    Interface AvailableCommand

    Information about a command.

    interface AvailableCommand {
        _meta?: { [k: string]: unknown };
        description: string;
        input?: UnstructuredCommandInput | null;
        name: string;
    }
    Index

    Properties

    _meta?: { [k: string]: unknown }

    Extension point for implementations

    description: string

    Human-readable description of what the command does.

    Input for the command if required

    name: string

    Command name (e.g., create_plan, research_codebase).