@squidcloud/client
    Preparing search index...

    Interface AiAgentSourceCodeIntegrationOptions

    Configures source-code analysis for an AI agent integration.

    interface AiAgentSourceCodeIntegrationOptions {
        analyzerInstructions?: string;
        analyzerModel?: "claude-code" | "codex";
        analyzerModelId?: string;
        analyzerReasoningEffort?: CanonicalReasoningEffort;
        codeAnalysisEnabled: boolean;
    }
    Index
    analyzerInstructions?: string

    Provides supplemental code-analysis instructions.

    analyzerModel?: "claude-code" | "codex"

    Selects the CLI provider used for code analysis.

    analyzerModelId?: string

    Selects a concrete model from the analyzer provider's CLI registry.

    analyzerReasoningEffort?: CanonicalReasoningEffort

    Selects the reasoning effort used by the analyzer CLI.

    codeAnalysisEnabled: boolean

    Enables repository-backed code analysis.