mirror of https://github.com/garrytan/gstack.git
feat(pr-prep): pre-PR upstream duplicate audit skill
Walks `git log base..HEAD`, derives search keywords per commit from subject + changed file paths, queries upstream issues + PRs via `gh`, scores each commit against upstream collisions (EXACT_DUP / OVERLAP / SIBLING / CLEAN) on a title-token + file-overlap Jaccard, and refuses to proceed when EXACT_DUP found. Designed to slot into `/ship` as a Step 0 hook (env `GSTACK_FROM_SHIP=1` switches to JSON output + skips interactive prompts). Motivating case (real, 2026-05-26): a contributor branch had 8 commits ready for upstream PRs; 4 of 4 unverified commits would have duplicated already-open upstream issues. pr-prep catches all in ~30-60s of `gh` queries, before any noise PR or reviewer triage round. v0.1.0 ships inline bash in SKILL.md (reviewable in one file). Out of scope: diff-content similarity, cross-repo audit, LLM-judged semantic dup detection, auto-comment on upstream PRs. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
parent
11de390be1
commit
50c474ba72
|
|
@ -52,6 +52,7 @@ Conventions:
|
|||
- [/plan-devex-review](plan-devex-review/SKILL.md): Interactive developer experience plan review.
|
||||
- [/plan-eng-review](plan-eng-review/SKILL.md): Eng manager-mode plan review.
|
||||
- [/plan-tune](plan-tune/SKILL.md): Self-tuning question sensitivity + developer psychographic for gstack (v1: observational).
|
||||
- [/pr-prep](pr-prep/SKILL.md): Pre-PR upstream duplicate audit.
|
||||
- [/qa](qa/SKILL.md): Systematically QA test a web application and fix bugs found.
|
||||
- [/qa-only](qa-only/SKILL.md): Report-only QA testing.
|
||||
- [/retro](retro/SKILL.md): Weekly engineering retrospective.
|
||||
|
|
|
|||
File diff suppressed because it is too large
Load Diff
|
|
@ -0,0 +1,253 @@
|
|||
---
|
||||
name: pr-prep
|
||||
preamble-tier: 4
|
||||
version: 0.1.0
|
||||
description: |
|
||||
Pre-PR upstream duplicate audit. Walks `git log base..HEAD`, derives
|
||||
search keywords from commit subjects + changed file paths, queries
|
||||
upstream issues + PRs via `gh`, scores each commit against upstream
|
||||
collisions (EXACT_DUP / OVERLAP / SIBLING / CLEAN), and refuses to
|
||||
proceed when EXACT_DUP found. Use when asked to "audit my PR",
|
||||
"check for duplicates", "pr-prep", "is this already filed",
|
||||
"upstream check before PR", or "pre-PR audit".
|
||||
Proactively invoke this skill (do NOT skip the audit) before any
|
||||
`gh pr create` against a tracked upstream repo. Hooks into /ship
|
||||
as Step 0. (gstack)
|
||||
allowed-tools:
|
||||
- Bash
|
||||
- Read
|
||||
- Grep
|
||||
- Glob
|
||||
- AskUserQuestion
|
||||
triggers:
|
||||
- pr-prep
|
||||
- audit my PR
|
||||
- check for duplicates
|
||||
- upstream check
|
||||
- pre-PR audit
|
||||
- is this already filed
|
||||
- dup PR check
|
||||
---
|
||||
|
||||
{{PREAMBLE}}
|
||||
|
||||
{{BASE_BRANCH_DETECT}}
|
||||
|
||||
# pr-prep: Pre-PR Upstream Duplicate Audit
|
||||
|
||||
You are running the `/pr-prep` workflow. This is a **read-only audit** that
|
||||
verifies your branch's commits against upstream issues + PRs before you
|
||||
file a duplicate. Refuses to proceed only on hard duplicates; everything
|
||||
else is informational.
|
||||
|
||||
**Why this exists:** every contributor faces the upstream-dup risk.
|
||||
Open issues sit for weeks. Multiple PRs converge on the same surface.
|
||||
Filing a dup wastes reviewer time, contributor goodwill, and your own
|
||||
branch cleanup. This skill catches dups in ~30s of `gh` queries
|
||||
*before* the PR exists.
|
||||
|
||||
**Output:** per-commit collision report with severity buckets +
|
||||
recommended action.
|
||||
|
||||
---
|
||||
|
||||
## Step 1: Pre-flight
|
||||
|
||||
1. Run `git status` (never with `-uall`). Working tree must be clean
|
||||
or have only the commits-being-audited. Abort cleanly if the
|
||||
working tree has unrelated mid-edit state.
|
||||
|
||||
2. Determine the base branch (already set by `{{BASE_BRANCH_DETECT}}`
|
||||
into `$BASE_BRANCH`). Honor `--base <name>` flag override.
|
||||
|
||||
3. Resolve the upstream repo via `gh repo view --json nameWithOwner -q .nameWithOwner`.
|
||||
Default uses `origin`; override via `--repo owner/name`.
|
||||
|
||||
4. Sanity-check: at least 1 commit in `$BASE_BRANCH..HEAD`. If zero,
|
||||
abort with "no commits to audit; you're already on $BASE_BRANCH".
|
||||
|
||||
```bash
|
||||
BASE="${BASE_BRANCH:-main}"
|
||||
REPO=$(gh repo view --json nameWithOwner -q .nameWithOwner 2>/dev/null)
|
||||
COMMITS=$(git log "$BASE"..HEAD --pretty='%H' 2>/dev/null)
|
||||
if [ -z "$COMMITS" ]; then
|
||||
echo "No commits to audit: $(git branch --show-current) is at $BASE."
|
||||
exit 0
|
||||
fi
|
||||
echo "Auditing $(echo "$COMMITS" | wc -l | tr -d ' ') commits against $REPO@$BASE"
|
||||
```
|
||||
|
||||
## Step 2: Walk each commit, extract search signals
|
||||
|
||||
For each commit hash:
|
||||
- **Subject**: `git show -s --format=%s <sha>` — strip conventional-commit
|
||||
prefix (`fix(scope):`, `feat:`, `chore(deps):`, etc).
|
||||
- **Changed files**: `git show --stat --name-only --format= <sha>`.
|
||||
- **Keywords**: from subject, drop stop words + verbs (fix/add/update/
|
||||
bump/remove). Keep 3-6 meaningful tokens.
|
||||
|
||||
Build a search query per commit by joining keywords. Example:
|
||||
- Subject: `fix(synopsis): tail-truncate documentText for small-model chat handlers`
|
||||
- Keywords: `synopsis tail-truncate documentText small-model chat`
|
||||
- Query: `synopsis documentText truncate`
|
||||
|
||||
Cap query to ~5 tokens. Too long → zero matches. Too short → noisy
|
||||
matches.
|
||||
|
||||
## Step 3: Query upstream issues + PRs
|
||||
|
||||
For each commit's query, run:
|
||||
|
||||
```bash
|
||||
# Open issues + PRs (highest collision risk)
|
||||
gh issue list --repo "$REPO" --state open --search "$QUERY" --limit 8 --json number,title,url,labels
|
||||
gh pr list --repo "$REPO" --state open --search "$QUERY" --limit 8 --json number,title,url,headRefName,author
|
||||
|
||||
# Closed in last 90 days (might be unreleased master fix)
|
||||
gh issue list --repo "$REPO" --state closed --search "$QUERY" --limit 5 --json number,title,url,closedAt
|
||||
gh pr list --repo "$REPO" --state merged --search "$QUERY" --limit 5 --json number,title,url,mergedAt
|
||||
```
|
||||
|
||||
Hard guard: skip if the search call returns rate-limit (HTTP 429).
|
||||
Print warning + suggest `gh auth refresh`. Don't false-clear on
|
||||
rate-limit silence.
|
||||
|
||||
## Step 4: Score each upstream hit
|
||||
|
||||
For every issue/PR returned, compute a collision score:
|
||||
|
||||
- **Title token overlap (Jaccard)**: intersect commit-subject keywords
|
||||
with upstream-title keywords. ≥0.5 = strong match.
|
||||
- **File overlap (open PRs only)**: `gh pr diff <number> --name-only`
|
||||
vs the commit's changed files. ≥0.5 = strong match.
|
||||
- **State weighting**:
|
||||
- OPEN PR → 1.0× (highest dup risk)
|
||||
- OPEN issue → 0.7× (someone's tracking it)
|
||||
- MERGED last 14 days → 0.6× (might be unreleased)
|
||||
- CLOSED issue → 0.2× (low risk, but useful context)
|
||||
|
||||
Final severity bucket per commit:
|
||||
|
||||
| Bucket | Trigger |
|
||||
|---|---|
|
||||
| **EXACT_DUP** | Any OPEN PR with title Jaccard ≥0.6 OR file overlap ≥0.6 |
|
||||
| **OVERLAP** | Any OPEN PR/issue with score ≥0.3, or ≥3 OPEN issues |
|
||||
| **SIBLING** | OPEN issues but no PR; or merged-recently with overlap |
|
||||
| **CLEAN** | No hits, or only old closed issues |
|
||||
|
||||
## Step 5: Render report
|
||||
|
||||
Markdown table per commit:
|
||||
|
||||
```
|
||||
## Audit: branch `feat/foo-bar` vs garrytan/gstack@main
|
||||
|
||||
### commit 20ed0eee fix(models): dispatch subcommand reads args[0] not args[1]
|
||||
|
||||
| Severity | # | Title | State | Author | Score |
|
||||
|---|---|---|---|---|---|
|
||||
| CLEAN | — | (no matches above threshold) | — | — | — |
|
||||
|
||||
**Action:** safe to file.
|
||||
|
||||
### commit ac213aa6 feat(synopsis): tail-truncate documentText
|
||||
|
||||
| Severity | # | Title | State | Author | Score |
|
||||
|---|---|---|---|---|---|
|
||||
| EXACT_DUP | #1358 | fix: allow contextual synopsis model env override | OPEN | lost9999 | 0.78 |
|
||||
| OVERLAP | #1356 | fix: classify contextual synopsis transient errors | OPEN | lost9999 | 0.34 |
|
||||
|
||||
**Action:** close mine, comment on #1358 with my angle. DO NOT file new PR.
|
||||
```
|
||||
|
||||
Print summary at end:
|
||||
|
||||
```
|
||||
Summary: 1 EXACT_DUP, 1 CLEAN. 1 commit blocked.
|
||||
```
|
||||
|
||||
## Step 6: Refusal on EXACT_DUP
|
||||
|
||||
If ANY commit is EXACT_DUP and `--force` is NOT set, exit non-zero
|
||||
with a pinpoint message:
|
||||
|
||||
```
|
||||
✗ Blocked: 1 commit duplicates open upstream work.
|
||||
|
||||
- ac213aa6 → #1358 (lost9999, OPEN 14d)
|
||||
|
||||
Resolutions:
|
||||
1. Close your version, comment on #1358 with your angle.
|
||||
2. Cherry-pick the unique parts to a new branch + file separately.
|
||||
3. Override with `/pr-prep --force` if you've coordinated with
|
||||
the existing PR author.
|
||||
```
|
||||
|
||||
Always exit 0 on OVERLAP / SIBLING / CLEAN — those are informational.
|
||||
|
||||
## Step 7: /ship integration
|
||||
|
||||
When invoked by `/ship` (env `GSTACK_FROM_SHIP=1`):
|
||||
- Skip the interactive AskUserQuestion confirmations
|
||||
- Exit 0 on CLEAN/OVERLAP/SIBLING
|
||||
- Exit 1 on EXACT_DUP (blocks /ship)
|
||||
- Print machine-readable JSON to a known path so /ship can render
|
||||
collisions in the PR body
|
||||
|
||||
## Flags
|
||||
|
||||
| Flag | Default | Effect |
|
||||
|---|---|---|
|
||||
| `--base <name>` | `main` | Base branch for commit walk |
|
||||
| `--repo owner/name` | from `gh repo view` | Upstream repo for queries |
|
||||
| `--force` | off | Proceed past EXACT_DUP (still print report) |
|
||||
| `--json` | off | Machine-readable output, no markdown table |
|
||||
| `--limit N` | 8 | Per-query result cap |
|
||||
| `--no-file-diff` | off | Skip `gh pr diff` calls (faster, less accurate) |
|
||||
|
||||
## Cost + speed
|
||||
|
||||
- ~30-60s for a 5-commit branch
|
||||
- 4 `gh` calls per commit (open issues, open PRs, closed issues, merged PRs)
|
||||
- 1 extra `gh pr diff` per OPEN PR hit (capped at 5)
|
||||
- ~25-50 `gh` calls total on a typical branch
|
||||
- gh CLI personal rate limit: 5000/hr authenticated. Safe headroom.
|
||||
|
||||
## Real-world example (motivating case 2026-05-26)
|
||||
|
||||
User's branch on `garrytan/gbrain` had 8 commits ready for upstream
|
||||
PRs. Without pr-prep, 4 of 4 unverified commits would have been
|
||||
duplicates:
|
||||
- `e96332c5` (reindex CLI_ONLY one-char fix) → #913 OPEN 14 days, same fix
|
||||
- `74819cec` (sourceId fallback) → #836 OPEN, threads sourceId
|
||||
- `787da2af` + `829099f9` (synopsis env-override) → #1358 OPEN, same env-override
|
||||
- `e0133d8a` (LM Studio recipe) → #1051 + #1329, crowded space
|
||||
|
||||
Cost avoided: 4 noise PRs, 4 reviewer triage rounds, contributor
|
||||
goodwill hit, 4 branch closures. pr-prep catches all 4 in ~45s.
|
||||
|
||||
---
|
||||
|
||||
## Implementation note for future maintainers
|
||||
|
||||
Two reasonable build modes:
|
||||
1. **Inline bash in SKILL.md** (current) — agent walks the steps,
|
||||
composes `gh` calls, computes Jaccard via `comm` + `wc`. Slower,
|
||||
more transparent.
|
||||
2. **Helper script `bin/gstack-pr-prep`** — bash entry point that
|
||||
does the heavy lifting, agent just orchestrates + renders.
|
||||
Faster, more testable. Migration path when v0.2.0 lands tests.
|
||||
|
||||
v0.1.0 ships mode 1 because it's reviewable in a single file. v0.2.0
|
||||
should move the Jaccard math + report rendering into `bin/`.
|
||||
|
||||
## Out of scope (v0.1.0)
|
||||
|
||||
- Diff-content (not just file-name) similarity scoring. Useful but
|
||||
expensive (`gh pr diff` × N × full body).
|
||||
- Cross-repo audit (e.g., fix in fork A applies to upstream B).
|
||||
- LLM-judged semantic dup detection. Out of scope for a deterministic
|
||||
pre-flight check.
|
||||
- Auto-comment on the upstream PR. Owner must decide what to say.
|
||||
|
||||
These belong in a v0.2+ wave once the deterministic gate proves out.
|
||||
Loading…
Reference in New Issue