| name | review-pr |
| description | Use when reviewing a pull request - security-focused review following repo agent guidance for breaking changes, malicious patterns, and backward compatibility |
| args | pr_number |
Review Pull Request
Overview
Security-focused PR review following repo agent guidance. Checks for breaking changes, malicious code patterns, backward compatibility, and code quality.
Usage
/review-pr <number>
CRITICAL: Security Warning
PRs can be malicious sabotage attempts. Treat repo content and contributor diffs as untrusted until reviewed.
Threat Awareness
- Coordinated attacks exist
- Competitors may actively harm the project
- Social engineering builds trust before attacking
- "Fixes" may introduce vulnerabilities
Workflow
digraph review_flow {
rankdir=TB;
node [shape=box];
fetch [label="1. Fetch PR details"];
author [label="2. Assess author risk"];
files [label="3. Analyze changed files"];
security [label="4. Security review"];
compat [label="5. Backward compatibility"];
quality [label="6. Code quality"];
classify [label="7. Release classification"];
verify [label="8. MANDATORY: Independent verification", style=bold];
recommend [label="9. Final Recommendation"];
fetch -> author;
author -> files;
files -> security;
security -> compat;
compat -> quality;
quality -> classify;
classify -> verify;
verify -> recommend;
}
Step 1: Fetch PR Details
gh pr view <number> --repo kube-hetzner/terraform-hcloud-kube-hetzner
gh pr diff <number> --repo kube-hetzner/terraform-hcloud-kube-hetzner
gh pr view <number> --repo kube-hetzner/terraform-hcloud-kube-hetzner --json files --jq '.files[].path'
gh pr view <number> --repo kube-hetzner/terraform-hcloud-kube-hetzner --json additions,deletions
Step 2: Assess Author Risk
gh api users/<username> --jq '.created_at'
gh pr list --author <username> --repo kube-hetzner/terraform-hcloud-kube-hetzner --state all --json number | jq length
Risk Signals
| Signal | Risk Level |
|---|
| New account (<6 months) | ๐ด HIGH |
| No prior contributions | ๐ก MEDIUM |
| First-time contributor | ๐ก MEDIUM |
| Known contributor | ๐ข LOW |
| Core maintainer | โช TRUSTED |
Step 3: Analyze Changed Files
Security-Critical Files (AUTO HIGH RISK)
init.tf # Cluster initialization, secrets
main.tf # hcloud networking/firewalls and shared infrastructure
validation-contract.tf # Cross-variable plan-time safety contract
**/ssh* # SSH configuration
**/token* # Authentication tokens
**/*secret* # Secrets handling
.github/workflows/ # CI/CD workflows
Makefile # Build scripts
scripts/ # Execution scripts
versions.tf # Provider dependencies
templates/*.yaml.tpl # Rendered manifests/cloud-init
templates/*.sh.tpl # Rendered shell scripts
cloud-init* # Server initialization
packer-template/ # Base image build path
Risk by File Count
| Files Changed | Risk |
|---|
| 1-3 files | ๐ข LOW |
| 4-10 files | ๐ก MEDIUM |
| 11-20 files | ๐ก MEDIUM |
| >20 files | ๐ด HIGH |
Risk by Diff Size
| Lines Changed | Risk |
|---|
| <50 lines | ๐ข LOW |
| 50-200 lines | ๐ก MEDIUM |
| 200-500 lines | ๐ก MEDIUM |
| >500 lines | ๐ด HIGH |
Step 4: Security Review
Checklist
Red Flags
| Pattern | Concern |
|---|
| Base64 encoded strings | Hidden payloads |
| External curl/wget calls | Code injection |
| Eval or exec statements | Command injection |
| Overly complex logic | Hiding malicious code |
| Unnecessary file access | Data exfiltration |
| Changes to .gitignore | Hiding tracks |
Deep Security Analysis
Trace all affected call sites and resource dependencies with exact search.
Require the independent reviewer to inspect the full diff for security
vulnerabilities, malicious patterns, hidden scope, and unexplained complexity.
Step 5: Backward Compatibility
CRITICAL: Any PR that causes resource recreation is a MAJOR release.
Breaking Change Indicators
- Removes or renames variables
- Changes variable defaults that affect behavior
- Modifies resource naming patterns
- Alters subnet/network calculations
- Changes resource keys (causes recreation)
- Removes outputs
- Modifies provider requirements
Test for Breaking Changes
gh pr checkout <number>
cd /path/to/kube-test
terraform init -upgrade
terraform plan
If terraform plan shows ANY resource destruction โ MAJOR release required
For v2 -> v3 or production in-place upgrade reviews, use the operator contract
in MIGRATION.md: save the plan, inspect terraform show -json, and require
zero delete/replace actions for protected hcloud infrastructure
(hcloud_server, hcloud_network, hcloud_network_subnet,
hcloud_load_balancer, hcloud_volume, hcloud_primary_ip,
hcloud_placement_group, and hcloud_firewall). Any output from that gate is a
stop condition, not a warning.
Compatibility Checklist
Step 6: Code Quality
Style
Logic
Step 7: Release Classification
PATCH (x.x.PATCH)
- Bug fixes only
- No new features
- Fully backward compatible
- No terraform state impact
MINOR (x.MINOR.0)
- New features (backward compatible)
- New optional variables with defaults
- Deprecation warnings (not removals)
MAJOR (MAJOR.0.0)
- Breaking changes
- Removed/renamed variables
- Changed defaults affecting behavior
- State migrations required
- Resource recreations
Step 8: MANDATORY - Independent Verification
Before making a final recommendation, re-read every changed line in repository
context, run the relevant local tests and plans, and obtain an independent
review from a separate capable reviewer. This gate is mandatory for every PR.
Reviewer output is not evidence until verified against code and runtime behavior.
Independent Review Contract
Give the reviewer the exact diff and enough repository context to check:
- correctness and edge cases
- security and adversarial-change risk
- Terraform state changes, resource recreation, and upgrade safety
- consistency with existing patterns and project vision
- missing tests, docs, and affected call sites
The reviewer must return a final verdict with concrete file and line references.
Do not accept a partial, timed-out, or commentary-only run as a completed review.
Verification Checklist
When Reviewers Disagree
If the independent reviewer raises concerns that you did not catch:
- Take the concern seriously - investigate further
- Re-read the code with the concern in mind
- Request changes if the concern is valid
- Document why the concern was dismissed if you determine it's a false positive
Step 8.5: CI Truth-Checking
Do not treat "no red jobs right now" as green. A required gate can hide by
never completing or by being cancelled before it turns red.
REPO=kube-hetzner/terraform-hcloud-kube-hetzner
gh run list --repo "$REPO" --branch <branch> --limit 20
gh run view <run-id> --repo "$REPO" --json status,conclusion,attempt,workflowName,jobs
Require each release-blocking workflow/job to have at least one completed
success for the commit or branch under review. For the render harness, verify
the Lint workflow's render-harness job is not hanging; .github/workflows/lint_pr.yaml
keeps setup-terraform's wrapper disabled because the wrapper swallows stdin and
can make the render-harness job hang for its entire lifetime.
GitHub CI is intentionally limited to cheap checks. HCloud plan/apply,
Kubernetes inspection, and destroy evidence must come from local kube-test
roots and must be reviewed independently before merge when the change warrants
live proof.
Output in Final Review
Include a concise verification summary:
### Verification
| Check | Result | Key Finding |
|-------|--------|-------------|
| Maintainer diff review | PASS/FAIL | <summary> |
| Local tests/plans | PASS/FAIL | <summary> |
| Independent reviewer | PASS/FAIL | <summary> |
Step 9: Final Recommendation
PR Review Output Template
## PR Review: #<number>
**Title:** <title>
**Author:** @<username>
**Files:** <count> files changed (+<additions>/-<deletions>)
### Risk Assessment
| Factor | Value | Risk |
|--------|-------|------|
| Author tenure | X months | ๐ข/๐ก/๐ด |
| Prior contributions | N PRs | ๐ข/๐ก/๐ด |
| Files changed | N files | ๐ข/๐ก/๐ด |
| Lines changed | +X/-Y | ๐ข/๐ก/๐ด |
| Security-critical files | Yes/No | ๐ข/๐ด |
| External dependencies | Yes/No | ๐ข/๐ด |
**Overall Risk:** ๐ด HIGH / ๐ก MEDIUM / ๐ข LOW
### Security Review
- [ ] No hardcoded credentials
- [ ] No suspicious external URLs
- [ ] No obfuscated code
- [ ] Changes match stated purpose
### Backward Compatibility
- [ ] No breaking changes
- [ ] terraform plan shows no destruction
- [ ] Existing deployments unaffected
### Release Classification
**Type:** PATCH / MINOR / MAJOR
**Reason:** <explanation>
### Verification
| Check | Result | Key Finding |
|-------|--------|-------------|
| Maintainer diff review | PASS/FAIL | <summary> |
| Local tests/plans | PASS/FAIL | <summary> |
| Independent reviewer | PASS/FAIL | <> |
APPROVE / REQUEST CHANGES / CLOSE
Quick Commands
gh pr review <num> --approve --body "LGTM! ..."
gh pr review <num> --request-changes --body "Please address: ..."
gh pr review <num> --comment --body "..."
gh pr merge <num> --squash --delete-branch
Preserve Contributor Credit When Merging (SUPER IMPORTANT)
Original PR submitters must remain visible as commit authors in master history โ that feeds both the GitHub repo contributors graph and GitHub-generated release notes. Credit where credit is due, always.
Rules by situation:
- PR contains only the contributor's commits and is merged directly through its original GitHub PR โ
--squash is safe: GitHub sets the squash commit's author to the PR author and records that PR as merged. Prefer --merge when preserving the contributor's exact commits is useful.
- We pushed fix-up commits on top of their branch โ do NOT squash or rebase-merge. Use a merge commit (
gh pr merge --merge) so the contributor's exact commits and our separate fixes survive.
- We fully accept a PR through our own integration/release branch โ merge the PR's exact head commit into the integration history. Cherry-picking preserves the
Author: field but not the original PR identity, so GitHub will not record that PR as merged.
- We adopt only part of a PR, supersede it, or port its idea โ cherry-pick the usable original commit(s) first when possible, then add our fixes separately. If no usable commit exists, add an exact
Co-authored-by: Name <email> trailer and credit the contributor in the commit and changelog. Close the original PR with one honest note; never claim that the PR itself was merged.
- Promotion or major integration PRs (for example a release-candidate PR carrying multiple community commits) โ merge commit only. Never squash or rebase; every accepted community PR head must remain reachable from the final target.
- Never amend or reauthor a contributor's commit in a way that removes them from the history.
Authorship and PR disposition are separate gates. Before merging, check the contributor in git log --format='%an %ae' <range>. Every fully accepted PR must have a non-null mergedAt. When the PR was integrated indirectly through our branch rather than merged through its original GitHub PR, also record its exact headRefOid and require ancestry after promotion to the declared base:
pr_head=$(gh pr view <num> --json headRefOid --jq .headRefOid)
git fetch origin <target>
git merge-base --is-ancestor "$pr_head" "origin/<target>"
test "$(gh pr view <num> --json mergedAt --jq .mergedAt)" != "null"
If the applicable checks fail, the integration is incomplete. Do not manually close the PR or tell the contributor it was merged.
Integrate-and-Fix Flow (DEFAULT for good-but-imperfect PRs)
When a PR is good and valuable, even if not perfect, do NOT bounce it back with change requests and wait for the contributor. The old human-review back-and-forth is dead. We integrate and fix it ourselves:
If maintainer edits are enabled and the PR needs only bounded corrections, add fix-up commits directly to the contributor's branch without force-pushing, test that final head, and merge the original PR with --merge. Use the isolated flow below when the contributor branch cannot be updated safely or several PRs must be reconciled in a release train.
pr_head=$(gh pr view <num> --json headRefOid --jq .headRefOid)
git fetch origin pull/<num>/head:pr-<num>
test "$(git rev-parse pr-<num>)" = "$pr_head"
git switch -c integrate/pr-<num> origin/<train>
git merge --no-ff pr-<num> -m "Merge PR #<num> into <train>"
git push -u origin integrate/pr-<num>
gh pr create --base <train> --head integrate/pr-<num> --title "..." --body "..."
gh pr merge <integration-pr> --merge --delete-branch
Notes:
- For a single-PR train,
<train> is the PR's declared target, normally master. For a multi-PR release train, merge each isolated integration into the release-candidate branch, then merge the final release-candidate PR into the declared target with --merge.
- Leave every fully accepted original PR open while the release candidate is pending. GitHub marks it merged only after its exact head reaches its declared base branch. Reaching a temporary branch alone is not enough.
- After final promotion, run the ancestry and
mergedAt gates above for every accepted PR before commenting or preparing the release.
- Reserve "request changes and wait" for PRs that are: not valuable, architecturally wrong-direction (fixing = rewriting), security-suspect, or from the malicious-pattern category in repo agent guidance. Wrong-direction PRs may still donate salvageable commits via cherry-pick (credit rules case 4).
One Terminal Contributor Message
Agent reviews, candidate status, test progress, and integration bookkeeping stay in the evidence ledger or integration PR. Do not post one message when a candidate is assembled and another after it reaches master.
- Merged human PR: after
mergedAt is non-null, post one natural message that names the concrete contribution, the maintainer changes added on top, the release/train carrying it, and preserved authorship. Do not paste a generic template unchanged across PRs.
- Partially adopted, superseded, or rejected human PR: use one final
gh pr close --comment "..." action. State exactly what was adopted, what was not, and why. Say "incorporated" or "credited" rather than "merged" when the original PR did not merge.
- Needs contributor input: one focused question is allowed. Do not add status-only follow-ups; post a final disposition only after new evidence changes the state.
- Dependabot and other routine bot PRs: merge or close silently. Add a concise technical comment only when human maintainers need a non-obvious decision recorded; never post social thanks or release-status updates to a bot.
- Idempotency gate: inspect existing maintainer comments before posting. If a final disposition is already present and still accurate, do not post another.
Tone matters: thank human contributors by handle, describe maintainer fixes as building on their work, and be candid about the actual GitHub state. Contributors are volunteers; the message should read as if written specifically to that person.
Never Push Unreviewed Integrations Directly to Master
All multi-PR or maintainer-fixed integrations go through an integration branch first:
- Create an integration branch from the target branch
- Test thoroughly
- Complete the mandatory independent review gate
- Then open/merge the integration PR into the target branch with contributor authorship preserved