Agent Client Protocol - v1.2.1
    Preparing search index...

    Type Alias NesSearchAndReplaceSuggestion

    A search-and-replace suggestion.

    type NesSearchAndReplaceSuggestion = {
        id: NesSuggestionId;
        uri: string;
        search: string;
        replace: string;
        isRegex?: boolean | null;
        _meta?: { [key: string]: unknown } | null;
    }
    Index

    Unique identifier for accept/reject tracking.

    uri: string

    The file URI to search within.

    search: string

    The text or pattern to find.

    replace: string

    The replacement text.

    isRegex?: boolean | null

    Whether search is a regular expression. Defaults to false.

    _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