Agent Maturity Compass API - v1.2.0
    Preparing search index...

    Interface ToolApiChangeResult

    Detect tool API changes by comparing tool call patterns

    interface ToolApiChangeResult {
        changes: {
            changeType:
                | "new_tool"
                | "removed_tool"
                | "signature_change"
                | "error_rate_spike";
            details: string;
            toolName: string;
        }[];
        changesDetected: boolean;
    }
    Index
    changes: {
        changeType:
            | "new_tool"
            | "removed_tool"
            | "signature_change"
            | "error_rate_spike";
        details: string;
        toolName: string;
    }[]
    changesDetected: boolean