enquire-mcp API reference - v3.9.0-rc.4
    Preparing search index...

    Interface OpenQuestion

    One open question / TODO marker surfaced by getOpenQuestions.

    context_heading is the nearest preceding heading (any level) — useful for context-locating the question without reading the surrounding note. age_days is computed from the note's mtime, so it surfaces questions that have aged without being touched.

    interface OpenQuestion {
        age_days: number;
        context_heading: string | null;
        line: number;
        mtime: string;
        question: string;
        source_path: string;
        source_title: string;
    }
    Index

    Properties

    age_days: number

    Rounded days since the source note was last modified.

    context_heading: string | null

    Nearest preceding heading, or null if at top of file.

    line: number

    1-based line number where the question appears.

    mtime: string

    ISO-8601 mtime of the source note.

    question: string

    Trimmed text of the question (capture group of the matcher).

    source_path: string

    Vault-relative path of the source note.

    source_title: string

    .md-stripped basename for display.