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

    Function runStatus

    Return contribution statistics (merge rate, PR counts, repo breakdown) from local state.

    • Return contribution statistics from local state. No API calls — reads from ~/.oss-autopilot/state.json.

      Parameters

      • options: StatusOptions

        Status options

        • offline

          When true, adds cache freshness metadata

      Returns Promise<
          {
              lastRunAt: string;
              lastUpdated?: string;
              offline?: boolean;
              stats: {
                  activeIssues: number;
                  closedPRs: number;
                  mergedPRs: number;
                  mergeRate: string;
                  needsResponse: number;
                  trustedProjects: number;
              };
              warnings?: {
                  details?: Record<string, unknown>;
                  message: string;
                  operation: string;
                  phase:
                      | "fetch"
                      | "repo-scores"
                      | "analytics"
                      | "scout-sync"
                      | "partition"
                      | "dismiss-filter"
                      | "gist-checkpoint"
                      | "gist-staleness";
                  timestamp?: string;
              }[];
          },
      >

      Contribution stats (merge rate, PR counts, repo breakdown)