Install
openclaw skills install fleet-pr-agentMulti-repo PR monitoring and triage agent. Scans GitHub repos for open PRs, prioritizes by staleness/review status/CI state, and generates a structured Markdown triage summary. Use when managing PRs across multiple repositories.
openclaw skills install fleet-pr-agentMulti-repository pull request monitoring, triage, and summary tool for engineering teams and AI agent fleets managing many repos at once.
gh CLIgh)gh CLI authenticated (gh auth status)# Scan a single repo
python3 scripts/triage.py owner/repo
# Scan multiple repos
python3 scripts/triage.py owner/repo1 owner/repo2 owner/repo3
# Generate triage report to file
python3 scripts/triage.py owner/repo --output report.md
When invoked as /fleet-pr-agent, provide repos:
/fleet-pr-agent owner/repo1 owner/repo2
The agent will:
gh| Priority | Condition |
|---|---|
| P0 - Critical | CI failing + older than 3 days |
| P1 - High | Approved but not merged, or review requested > 2 days ago |
| P2 - Medium | Open > 5 days, no review activity |
| P3 - Low | Draft PRs, recently opened |
## PR Triage Report — 2026-03-27
### P0 — Critical (2)
- [#123 Fix auth middleware](url) — CI failing since Mar 24, 2 approvals
- [#456 DB migration](url) — CI failing since Mar 25, no reviews
### P1 — High (1)
- [#789 Add caching layer](url) — Approved Mar 25, ready to merge
### P2 — Medium (3)
...
### Summary
- Total open PRs: 15
- Needing attention: 6
- Repos scanned: 2
Set env vars to override defaults:
| Variable | Default | Description |
|---|---|---|
FLEET_PR_STALE_DAYS | 5 | Days before a PR is considered stale |
FLEET_PR_CI_WEIGHT | 3 | Weight multiplier for CI-failing PRs |
FLEET_PR_MAX_PRS | 50 | Max PRs to fetch per repo |
scripts/triage.py — Pure Python 3 triage engine (stdlib only)gh pr list --json for all data fetchingMIT