Gaunt Sloth Assistant - v1.5.6
    Preparing search index...

    gth pr command configuration.

    Declared as a named interface (rather than inline in GthConfig) so that downstream packages can extend it with their own command features via TypeScript module augmentation (declare module '@gaunt-sloth/core/config.js'), keeping those features' types out of core. For example, the assistant package merges its PR discovery config (discovery) into this interface.

    interface PrCommandConfig {
        allowedTools?: string[];
        binaryFormats?: false | BinaryFormatConfig[];
        builtInTools?: string[];
        contentProvider?: string;
        contentSource?: string;
        customTools?: false | CustomToolsConfig;
        filesystem?: string[] | "none" | "all" | "read";
        logWorkForReviewInSeconds?: number;
        rating?: RatingConfig;
        requirementSource?: string;
        requirementsProvider?: string;
    }
    Index

    Properties

    allowedTools?: string[]

    See GthConfig.allowedTools. Empty array disables all tools for gth pr's review agent.

    binaryFormats?: false | BinaryFormatConfig[]
    builtInTools?: string[]
    contentProvider?: string

    Use contentSource instead

    contentSource?: string
    customTools?: false | CustomToolsConfig
    filesystem?: string[] | "none" | "all" | "read"
    logWorkForReviewInSeconds?: number
    rating?: RatingConfig
    requirementSource?: string
    requirementsProvider?: string

    Use requirementSource instead