We use analytics and marketing cookies to understand how Grip OS is discovered and used. No data leaves your device without consent. Cookie Policy

All Recipes

PR Review Summary

Uses GitHub CLI via fleet batch execution to list open PRs, fetch their review decisions and check statuses, and compile a readable summary. Schedule this daily for team leads who need to track PR throughput and review bottlenecks.

beginner
Scheduled (Cron)
2 steps
30 seconds

Steps

1

List open PRs with review status

fleet_batch_execute via gripos-mcp

2

Get detailed view of stale PRs

fleet_batch_execute via gripos-mcp(when pr_list.length > 0)

Recipe JSON

{"schedule":"0 9 * * 1-5","steps":[{"tool":"fleet_batch_execute","args":{"command":"gh pr list --state open --json number,title,reviewDecision,statusCheckRollup"},"output_as":"pr_list"},{"tool":"fleet_batch_execute","args":{"command":"gh pr list --state open --json number,title,createdAt | jq '[.[] | select(.createdAt < (now - 604800 | todate))]'"},"condition":"pr_list.length > 0","output_as":"stale_prs"}]}

Prerequisites

  • GitHub CLI (gh) authenticated

Run this recipe in Grip OS

Copy the JSON above, paste it into your Grip OS config, and it runs on schedule or on demand.