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

    Interface MarkDoneOutput

    Mark an issue line in a curated list as done with strikethrough + Done sub-bullet (#1299).

    interface MarkDoneOutput {
        filePath: string;
        marked: boolean;
        reason?: string;
        remainingUnderRepo: number;
        repoHeadingStruck: boolean;
        url: string;
    }
    Index

    Properties

    filePath: string

    Fully-resolved file path that was inspected.

    marked: boolean

    True if the line was found and updated. False on already-marked or not-found.

    reason?: string

    Human-readable explanation when marked is false.

    remainingUnderRepo: number

    Issue lines under the same repo heading that are still open after the update.

    repoHeadingStruck: boolean

    True if the parent ### repo/name heading was also struck through this run.

    url: string

    The issue URL that was searched for.