@oss-autopilot/core - v3.7.0
    Preparing search index...

    Interface GuidelinesViewOutput

    interface GuidelinesViewOutput {
        byteSize: number;
        content: string | null;
        exists: boolean;
        repo: string;
        storageMode: "gist" | "local-unavailable";
    }
    Index

    Properties

    byteSize: number

    UTF-8 byte size of content, or 0 when content is null.

    content: string | null

    Markdown content, or null when the repo has no guidelines stored.

    exists: boolean

    Whether a guidelines file exists for this repo.

    repo: string
    storageMode: "gist" | "local-unavailable"

    Where the guidelines would be persisted if a write happened now.