mirror of
https://github.com/github/awesome-copilot.git
synced 2026-07-14 01:51:02 +00:00
d47a6c93b7
* Add copilot-pr-autopilot skill Skill that drives any GitHub pull request through repeated rounds of Copilot Code Review until the agent has either resolved every thread or explicitly escalated it to the human. Triggered via GraphQL (no @copilot mention needed), triages every open thread with a fix / decline / escalate rubric, replies and resolves each thread citing the pushed SHA, then re-triggers until HEAD is reviewed with zero threads awaiting the agent's reply. Includes step scripts (01 request-review, 02 check-review-status, 03 list-open-threads, 08 reply-and-resolve, 10 cleanup-outdated), shared library (_lib.ps1) with gh-CLI wrappers (Invoke-Gh, Invoke-GhGraphQL, ConvertFrom-GhJson, Assert-GhReady), reply templates, and reference docs for each step. Repo-agnostic. Requires gh CLI on PATH and repo Triage/Write for full autopilot; external PR authors get single-iteration mode with manual re-trigger via the UI re-request button or a substantive push. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> * Address review: split per-step references + add recap-gate circuit breaker - Fix #1: give steps 1/7/10 their own reference files (01-request-review.md, 07-commit-push.md, 10-cleanup.md); trim the inline bodies out of orchestration.md so it stays cross-cutting only. - Fix #3: add a recurring round-cap & recap gate to 09-convergence.md — default STOP every 10th round, recap all prior rounds, detect drift (out-of-scope / over-engineering / wrong-direction / belongs-in-separate-PR) with CONTINUE / REVERT-AND-SHIP / HAND-OFF verdicts. Agent reasoning, no new script. - Surface the gate from SKILL.md and orchestration.md; regenerate docs/README.skills.md. Markdown-only change; scripts unchanged. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> * docs(copilot-pr-autopilot): surface recap gate in decision pseudo-code; clarify Copilot+human convergence and round definition - Inject the round-cap recap gate into the '## Decision: loop back or exit' pseudo-code else-branch so an agent following the code block (not just the prose) runs the STOP-every-10th-round check before looping. - Broaden the 'never terminal' paragraph: non-convergence is driven by a Copilot finding OR a human review comment (this skill handles both); the loop ends only when there are no new comments from either source AND every open thread (Copilot or human) has an agent reply/escalation. - Define a 'round' explicitly as one execution of step 1 (01-request-review), i.e. one Copilot-review trigger — the cap counts review rounds, not tool calls or fix edits. Markdown-only; no script changes. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> * copilot-pr-autopilot: make recap-gate round count deterministic Add 09-review-round.ps1: counts Copilot Code Review submissions straight from the PR's API history (full GraphQL pagination), so the recap-gate trigger is a derived number, not a fallible agent mental tally. This removes the exact failure mode the skill exists to survive — a count drifting across a long run (the real 156-round case). The script reports Round + RecapDue (Round % RecapInterval == 0) only; it never stops the loop or picks the verdict. CONTINUE / REVERT-AND-SHIP / HAND-OFF stays agent reasoning. 09-convergence.md updated to reference the deterministic count while preserving 'no script stops the loop' and 'non-convergence = Copilot finding OR human comment'. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> * Regenerate docs/README.skills.md for copilot-pr-autopilot (add 09-review-round.ps1) Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --------- Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
139 lines
5.5 KiB
PowerShell
139 lines
5.5 KiB
PowerShell
<#
|
|
.SYNOPSIS
|
|
Deterministically count a PR's Copilot review rounds and flag whether
|
|
the periodic recap gate is due this round. Single-shot, read-only.
|
|
|
|
.DESCRIPTION
|
|
ONE job: compute the round number N for a PR from observable history —
|
|
the count of review submissions authored by the Copilot Code Review
|
|
bot — and report whether the recap circuit-breaker is due.
|
|
|
|
Each top-of-loop trigger (01-request-review.ps1) produces exactly one
|
|
Copilot review submission, so the count of those submissions IS the
|
|
round number. It is read from the GitHub API on every call, so it
|
|
never depends on agent working memory or any on-disk state file. The
|
|
original failure mode this skill was built to survive — an agent
|
|
losing track of the count across a long run, drifting for 156 rounds —
|
|
cannot happen when the count is derived, not remembered.
|
|
|
|
This script does NOT decide anything. It does not stop the loop, does
|
|
not enforce a cap, and does not pick a verdict. It reports two facts;
|
|
the parent agent still owns the recap reasoning and the
|
|
CONTINUE / REVERT-AND-SHIP / HAND-OFF verdict (see
|
|
../references/09-convergence.md). "No script decides the cap" stays
|
|
true — this script only makes the *trigger* (Nth round) deterministic
|
|
instead of a fallible mental tally.
|
|
|
|
Output JSON fields:
|
|
- PrNumber, Owner, Repo
|
|
- Round : count of Copilot Code Review submissions on the PR.
|
|
Full pagination — every Copilot submission, NOT the
|
|
most-recent-100 window 02-check-review-status.ps1
|
|
uses to find the latest review. The count must stay
|
|
correct on exactly the long loops the gate exists
|
|
to catch (a 100-review window would silently
|
|
undercount past round 100).
|
|
- RecapInterval : the recap cadence (default 10; override with
|
|
-RecapInterval).
|
|
- RecapDue : true iff Round > 0 AND Round % RecapInterval == 0 —
|
|
i.e. this is a 10th / 20th / 30th ... round and the
|
|
parent should RUN THE RECAP GATE before looping back
|
|
to step 1.
|
|
|
|
Parsing the JSON (any PowerShell version, 5.1 + 7.x):
|
|
|
|
$snap = pwsh -NoProfile -File 09-review-round.ps1 -PrNumber <n>
|
|
$round = if ($snap -match '"Round":(\d+)') { [int]$Matches[1] } else { 0 }
|
|
$recapDue = ($snap -match '"RecapDue":true')
|
|
|
|
.PARAMETER PrNumber
|
|
The pull request number. The only required parameter.
|
|
|
|
.PARAMETER Owner
|
|
Repository owner. OPTIONAL — auto-resolved from `gh repo view`.
|
|
|
|
.PARAMETER Repo
|
|
Repository name. OPTIONAL — auto-resolved from `gh repo view`.
|
|
|
|
.PARAMETER RecapInterval
|
|
Recap cadence in rounds. Default 10 (stop at 10, 20, 30, ...). Must be
|
|
a positive integer. Exposed as a single named knob so the cadence
|
|
isn't a magic number duplicated in prose, and so the gate boundary is
|
|
testable on a real PR without fabricating review history.
|
|
|
|
.EXAMPLE
|
|
pwsh ./scripts/09-review-round.ps1 -PrNumber 1944
|
|
|
|
# {"PrNumber":1944,"Owner":"github","Repo":"awesome-copilot","Round":154,"RecapInterval":10,"RecapDue":false}
|
|
|
|
.EXAMPLE
|
|
pwsh ./scripts/09-review-round.ps1 -PrNumber 1944 -RecapInterval 7
|
|
|
|
# 154 % 7 == 0 -> {"...","Round":154,"RecapInterval":7,"RecapDue":true}
|
|
#>
|
|
[CmdletBinding()]
|
|
param(
|
|
[Parameter(Mandatory = $true)]
|
|
[int]$PrNumber,
|
|
|
|
[string]$Owner,
|
|
[string]$Repo,
|
|
|
|
[ValidateRange(1, [int]::MaxValue)]
|
|
[int]$RecapInterval = 10
|
|
)
|
|
|
|
$ErrorActionPreference = 'Stop'
|
|
. "$PSScriptRoot/_lib.ps1"
|
|
|
|
$coords = Resolve-RepoCoords -Owner $Owner -Repo $Repo
|
|
$Owner = $coords.Owner
|
|
$Repo = $coords.Repo
|
|
|
|
# Walk ALL reviews (full pagination). 02-check-review-status.ps1 only needs
|
|
# the most-recent-100 window to find the LATEST Copilot review; the round
|
|
# COUNT must include EVERY Copilot submission, because the gate exists
|
|
# precisely for long loops where the count can exceed 100. Counting is
|
|
# order-independent, so forward pagination is sufficient.
|
|
$qReviews = @'
|
|
query($o:String!,$r:String!,$n:Int!,$after:String){
|
|
repository(owner:$o,name:$r){
|
|
pullRequest(number:$n){
|
|
reviews(first:100, after:$after){
|
|
pageInfo{endCursor hasNextPage}
|
|
nodes{author{login}}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
'@
|
|
|
|
$after = $null
|
|
$round = 0
|
|
do {
|
|
$ghArgs = @('-f', "query=$qReviews", '-f', "o=$Owner", '-f', "r=$Repo", '-F', "n=$PrNumber")
|
|
if ($after) { $ghArgs = $ghArgs + @('-f', "after=$after") }
|
|
$resp = Invoke-GhGraphQL -GhArgs $ghArgs -Context "reviews count for $Owner/$Repo PR #$PrNumber"
|
|
$pagePr = $resp.data.repository.pullRequest
|
|
if (-not $pagePr) { throw "PR #$PrNumber not found in $Owner/$Repo (reviews page)." }
|
|
$round += @($pagePr.reviews.nodes | Where-Object {
|
|
$_.author -and $_.author.login -and $_.author.login -match $CopilotReviewerLoginRegex
|
|
}).Count
|
|
$after = $pagePr.reviews.pageInfo.endCursor
|
|
} while ($pagePr.reviews.pageInfo.hasNextPage)
|
|
|
|
# Gate TRIGGER only — not the verdict. RecapDue says "this is an Nth round,
|
|
# run the recap"; the parent agent reads the recap and picks
|
|
# CONTINUE / REVERT-AND-SHIP / HAND-OFF (09-convergence.md).
|
|
$recapDue = ($round -gt 0) -and (($round % $RecapInterval) -eq 0)
|
|
|
|
$result = [ordered]@{
|
|
PrNumber = $PrNumber
|
|
Owner = $Owner
|
|
Repo = $Repo
|
|
Round = $round
|
|
RecapInterval = $RecapInterval
|
|
RecapDue = $recapDue
|
|
}
|
|
$result | ConvertTo-Json -Depth 3 -Compress
|