re-review-local-plan-artifact-grounding
Prevent stale adversarial re-reviews by forcing Codex/Gemini to review the exact revised local plan artifact instead of stale GitHub issue text or default-branch content.
Best use case
re-review-local-plan-artifact-grounding is best used when you need a repeatable AI agent workflow instead of a one-off prompt.
Prevent stale adversarial re-reviews by forcing Codex/Gemini to review the exact revised local plan artifact instead of stale GitHub issue text or default-branch content.
Teams using re-review-local-plan-artifact-grounding should expect a more consistent output, faster repeated execution, less prompt rewriting.
When to use this skill
- You want a reusable workflow that can be run more than once with consistent structure.
When not to use this skill
- You only need a quick one-off answer and do not need a reusable workflow.
- You cannot install or maintain the underlying files, dependencies, or repository context.
Installation
Claude Code / Cursor / Codex
Manual Installation
- Download SKILL.md from GitHub
- Place it in
.claude/skills/re-review-local-plan-artifact-grounding/SKILL.mdinside your project - Restart your AI agent — it will auto-discover the skill
How re-review-local-plan-artifact-grounding Compares
| Feature / Agent | re-review-local-plan-artifact-grounding | Standard Approach |
|---|---|---|
| Platform Support | Not specified | Limited / Varies |
| Context Awareness | High | Baseline |
| Installation Complexity | Unknown | N/A |
Frequently Asked Questions
What does this skill do?
Prevent stale adversarial re-reviews by forcing Codex/Gemini to review the exact revised local plan artifact instead of stale GitHub issue text or default-branch content.
Where can I find the source code?
You can find the source code on GitHub using the link provided at the top of the page.
Related Guides
AI Agents for Coding
Browse AI agent skills for coding, debugging, testing, refactoring, code review, and developer workflows across Claude, Cursor, and Codex.
Cursor vs Codex for AI Workflows
Compare Cursor and Codex for AI coding workflows, repository assistance, debugging, refactoring, and reusable developer skills.
SKILL.md Source
# Re-review Local Plan Artifact Grounding Use this when: - a GitHub issue plan was revised locally after earlier review findings - you are rerunning Codex/Gemini adversarial review - there is any risk the reviewer will re-ground on stale issue text or `main` branch content ## Problem this solves A real failure mode in plan re-review is that the provider ignores or underweights the latest local plan edits and instead reviews: - the stale GitHub issue body - older review artifacts - the default branch version of the plan This can produce a false fresh `MAJOR` against problems that were already removed locally. ## Reliable pattern 1. Save the revised local plan first. 2. Do NOT trust a compact summary-only rerun when the earlier review already drifted to stale remote/main content. 3. Build a review prompt that embeds the exact revised sections inline. 4. Tell the reviewer explicitly: - review ONLY the exact inline artifact below - do NOT substitute remote/default-branch/GitHub issue content 5. Keep the inline artifact focused on the changed approval-critical sections: - Deliverable - Scope Boundaries - Linkage Strategy - Downstream Integration Surface - Pseudocode - Files to Change - TDD Test List - Acceptance Criteria 6. If helpful, prepend a short list of already-fixed prior blockers so the reviewer evaluates only the real residual risk. 7. Save raw logs and canonical review artifacts separately. 8. If the rerun still cites stale elements already removed locally, treat that first as a packaging failure and rerun before accepting the verdict. Important lesson from live use: - A compact prompt that merely summarizes the revised plan can still let Codex re-ground on stale GitHub/main-branch content and return false MAJOR findings. - Switching to an artifact-inline prompt that embeds the exact revised local sections can flip the same review from false MAJOR to the real residual verdict (for example MINOR). ## Suggested prompt contract Use wording like: ```text Review ONLY the exact inline artifact below. Do not substitute any remote/main-branch version of the plan. The local plan was revised after the earlier review. ``` Then list the already-addressed prior blockers so the reviewer evaluates the real residual risk instead of re-litigating old scope. ## Good compact rerun structure - `.planning/quick/review-<issue>-artifact-inline-prompt.md` - `.planning/quick/review-<issue>-artifact-inline-codex.out` - `.planning/quick/review-<issue>-artifact-inline-gemini.out` - `scripts/review/results/YYYY-MM-DD-plan-<issue>-codex.md` - `scripts/review/results/YYYY-MM-DD-plan-<issue>-gemini.md` ## Decision rule If the provider returns findings against content that is not present in the inline artifact: - classify the run as stale-grounding / packaging failure - do not accept the verdict yet - rerun with a tighter inline artifact prompt ## Typical signs of stale grounding - Reviewer complains about package-root exports that were already removed locally - Reviewer cites helper APIs that are now explicitly out of scope - Reviewer references older issue text instead of the narrowed v1 plan - Reviewer claims the plan still uses a generic field that the local artifact replaced ## When this matters most This matters most after narrowing a plan in response to earlier MAJOR review findings. In those cases, the difference between stale and correctly grounded re-review can be the difference between: - false `MAJOR` - real `MINOR` or `APPROVE` ## Minimal workflow 1. revise local plan 2. create artifact-inline prompt 3. run Codex/Gemini 4. inspect whether findings match the inline artifact 5. only then synthesize verdicts into the GitHub issue
Related Skills
plan-review-prompt-refresh-after-plan-edits
Refresh reviewer prompt files from the latest on-disk plan before every adversarial re-review. Prevents Codex/Gemini from critiquing stale plan text after local edits.
workspace-hub-overnight-plan-monitor
Monitor and reconcile workspace-hub overnight planning or implementation batches, including process status, result artifacts, issue/commit verification, and controlled failed-lane recovery.
plan-gated-issue-execution-wave
Execute a multi-issue architecture/planning wave in a plan-gated repo, then safely transition approved issues into implementation with file-based Codex prompts, local approval markers, subprocess monitoring, and cleanup handling for sandbox/hook edge cases.
mixed-ops-vs-repo-fix-plan-boundary
Plan mixed operational-vs-repo remediation issues by proving live-state classification first, then only proposing code changes for confirmed repo-owned failure paths.
wave-based-parallel-plan-execution
Orchestrate phase execution by discovering dependencies, grouping into waves, spawning subagents, and collecting results with optional wave filtering
tdd-verification-and-adversarial-review
Verify pre-written TDD tests pass, conduct adversarial code review on committed diffs, and route findings to existing issues
plan-gated-issue-validation-workflow
Systematic validation pattern for plan-approved GitHub issues with pre-existing deliverables
plan-gated-issue-implementation
Workflow for executing pre-approved GitHub issues with mandatory validation checkpoints
multi-role-agent-contract-review-pipeline
Execute a 4-role agent team (Planner/Architect/Reviewer/Integrator) pipeline for self-reviewing knowledge artifacts before delivery
gsd-adversarial-review-pattern
Catch hidden test failures by running adversarial review on sparse-data edge cases before final push
evaluate-local-commits-via-cherry-pick-dry-run
Technique to identify which ahead commits contain real changes vs. already-merged or ephemeral content
adversarial-code-review-tdd
Systematic adversarial review pattern to identify breaking assumptions in already-passing test suites