10x-impl-review-ci

Reviews pull requests against their implementation plans in GitHub Actions CI.

Updated May 20, 2026
One-click install
npx skills add https://github.com/ZawilecxD/trAInR --skill 10x-impl-review-ci-zawilecxd
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: 10x-impl-review-ci
Source: https://github.com/ZawilecxD/trAInR/tree/main/.cursor/skills/10x-impl-review-ci
Command: npx skills add https://github.com/ZawilecxD/trAInR --skill 10x-impl-review-ci-zawilecxd

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve? Verifying that a pull request actually implements what its plan promised is slow and error-prone when done manually, especially for plan-driven development workflows. This Skill automates that comparison inside GitHub Actions, producing a committed audit report and PR comments without any human in the loop. ## Core Features & Use Cases - Plan-vs-implementation review: Discovers the plan file under context/changes/<change-id>/plan.md, computes the merge-base diff, and grades seven dimensions (plan adherence, scope discipline, safety, architecture, patterns, test coverage, success criteria) with an APPROVED / NEEDS ATTENTION / REJECTED verdict. - Parallel evidence gathering: Spawns three subagents covering plan drift, safety/quality/pattern compliance, and test coverage, then runs the plan's non-test automated checks (lint, build, typecheck). - CI-native publishing: Commits a structured impl-review.md report to the PR branch with [skip ci], posts inline review comments anchored to diff lines via an MCP tool, and posts a deduplicated summary PR comment. - Use Case: A team using plan-driven development labels a PR with impl-review; the workflow reviews the diff against the plan, commits the report, and gates the merge on a REJECTED verdict unless an impl-review-override label is present. ## Quick Start Ask your AI coding assistant to run the 10x-impl-review-ci skill on the current pull request to review it against its plan and post the verdict.

Frequently Asked Questions about 10x-impl-review-ci

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I automatically review a pull request against its implementation plan in CI?

Run this skill inside GitHub Actions on a pull request. It discovers the plan file under context/changes, diffs the PR against its merge base, grades seven review dimensions, commits a report to the branch, and posts inline plus summary PR comments.

How does automated PR review detect plan drift and scope creep?

It cross-references changed files against the plan's declared file list. Files in the diff but not in the plan are flagged as scope creep unless explicitly excluded, and planned files missing from the diff are flagged as missing implementations.

What happens when a pull request has no plan file?

The skill posts a neutral comment explaining that no plan was detected and exits with status 0, so the workflow does not fail. You can enable review by adding a Plan: context/changes/<change-id>/plan.md line to the PR description.

Can the CI review block a pull request from merging?

Yes, but only through the workflow, not the skill itself. A REJECTED verdict in the committed report causes the workflow's verdict-check step to fail the check, unless the PR carries the impl-review-override label to bypass the gate.

Why does the review commit include a [skip ci] marker?

The marker prevents the bot's own push from retriggering the same workflow, which would cause an infinite recursion loop. The skill verifies the marker exists on the commit before pushing and aborts loudly if it is missing.

Does the automated reviewer edit source code or approve PRs?

No. The skill only reads, analyzes, writes one report file, and posts comments. It never edits source code and never submits formal approve or request-changes review decisions; gating is handled separately by the workflow.