issue_tree
    Preparing search index...

    Interface ScanCommand

    Parsed scan invocation.

    interface ScanCommand {
        cachePath: string;
        flagToken: string | undefined;
        force: boolean;
        quiet: boolean;
        repos: string[];
        subcommand: "scan";
        wait: boolean;
    }
    Index

    Properties

    cachePath: string

    Cache file path. Defaults to ./issue-tree-cache.json when --cache is omitted.

    flagToken: string | undefined

    Raw --token value, or undefined when not provided (falls back to env/gh).

    force: boolean

    When true, discard any existing cache file before scanning.

    quiet: boolean

    When true, suppress per-page and per-issue progress output.

    repos: string[]

    Target repositories ("owner/repo") to scan, from repeated --repo flags.

    subcommand: "scan"

    Discriminator: identifies this as a scan command.

    wait: boolean

    When true, sleep through rate-limit pauses instead of stopping.