Fetch all open PRs, compute digest, and return structured daily output. Requires GITHUB_TOKEN.
Run the daily PR check and return a deduplicated digest.
Fetches all open PRs from GitHub, computes status for each, updates repo scores, and assembles the action menu.
Deduplicated daily output with PR digest, capacity, and action menu
If no GitHub token is available
import { runDaily } from '@oss-autopilot/core/commands';const output = await runDaily();console.log(output.briefSummary);console.log(`${output.actionableIssues.length} issues need attention`); Copy
import { runDaily } from '@oss-autopilot/core/commands';const output = await runDaily();console.log(output.briefSummary);console.log(`${output.actionableIssues.length} issues need attention`);
Fetch all open PRs, compute digest, and return structured daily output. Requires GITHUB_TOKEN.