@karmaniverous/jeeves
    Preparing search index...

    Interface MemoryHygieneResult

    Result of memory hygiene analysis.

    interface MemoryHygieneResult {
        budget: number;
        charCount: number;
        exists: boolean;
        overBudget: boolean;
        staleCandidates: number;
        staleSectionNames: string[];
        usage: number;
        warning: boolean;
    }
    Index

    Properties

    budget: number

    Configured budget in characters.

    charCount: number

    Total character count.

    exists: boolean

    Whether MEMORY.md exists.

    overBudget: boolean

    Whether usage exceeds the budget.

    staleCandidates: number

    Number of H2 sections flagged as stale candidates.

    staleSectionNames: string[]

    Names of stale sections.

    usage: number

    Usage as a fraction of budget (0–1+).

    warning: boolean

    Whether usage exceeds the warning threshold.