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

    Type Alias StartNesRequest

    Request to start an NES session.

    type StartNesRequest = {
        _meta?: { [key: string]: unknown } | null;
        repository?: NesRepository | null;
        workspaceFolders?: WorkspaceFolder[] | null;
        workspaceUri?: string | null;
    }
    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

    repository?: NesRepository | null

    Repository metadata, if the workspace is a git repository.

    workspaceFolders?: WorkspaceFolder[] | null

    The workspace folders.

    workspaceUri?: string | null

    The root URI of the workspace.