@adcp/client API Reference - v3.3.3
    Preparing search index...

    Interface AgentCapabilities

    Agent capabilities for caching

    interface AgentCapabilities {
        agentId: string;
        supportedTasks: string[];
        taskSchemas?: Record<string, any>;
        metadata?: {
            version?: string;
            description?: string;
            lastUpdated?: string;
            [key: string]: any;
        };
        cachedAt: string;
        expiresAt?: string;
    }
    Index

    Properties

    agentId: string

    Agent ID

    supportedTasks: string[]

    Supported task names

    taskSchemas?: Record<string, any>

    Task schemas/definitions

    metadata?: {
        version?: string;
        description?: string;
        lastUpdated?: string;
        [key: string]: any;
    }

    Agent metadata

    cachedAt: string

    When capabilities were cached

    expiresAt?: string

    Cache expiration time