10x-impl-review

Review implementation against plan for drift, safety issues, and pattern compliance.

Updated May 23, 2026
One-click install
npx skills add https://github.com/BMS-kmusial/bms-stream-monitor --skill 10x-impl-review-bms-kmusial
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: 10x-impl-review
Source: https://github.com/BMS-kmusial/bms-stream-monitor/tree/main/.claude/skills/10x-impl-review
Command: npx skills add https://github.com/BMS-kmusial/bms-stream-monitor --skill 10x-impl-review-bms-kmusial

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve? After implementing a plan, code often drifts from the original intent, introduces security or reliability risks, or breaks existing conventions. This Skill compares actual implementation work against the original plan to catch drift, dangerous decisions, architecture violations, and pattern misuse before they compound. ## Core Features & Use Cases - Plan Drift Detection: Uses parallel sub-agents to verify each planned change matches the actual implementation, flagging missing items, intent mismatches, and unplanned scope creep. - Safety & Quality Scan: Checks changed files for security risks (injection, hardcoded secrets), performance issues (N+1 queries), reliability gaps, and data safety problems, plus pattern consistency against sibling files. - Structured Report & Interactive Triage: Produces a severity-ranked findings report (CRITICAL/WARNING/OBSERVATION) with dimension verdicts and an overall APPROVED/NEEDS ATTENTION/REJECTED verdict, then walks each finding through an interactive fix/skip/record-as-lesson triage loop. - Use Case: After finishing phase 3 of a multi-phase feature plan, run a phase-scoped review to confirm the implementation matches the plan, automated success criteria pass, and no unplanned endpoints were added before moving on. ## Quick Start Ask the AI to review the implementation against the plan at context/changes/my-change/plan.md and triage any findings.

Frequently Asked Questions about 10x-impl-review

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

FAQPage Schema
How do I review code implementation against a plan?

Provide the plan file path or change ID, and the skill loads the plan, detects changed files via git history, and launches parallel sub-agents to compare planned changes against actual code. It reports drift, missing items, and unplanned additions with severity-ranked findings.

How to catch scope creep in a code review?

The review compares the git diff file list against the plan's declared changes. Files changed but not in the plan are flagged as unplanned EXTRA changes, while planned files missing from the diff are flagged as potentially missing implementations.

Can I review only one phase of a multi-phase plan?

Yes, pass a phase number (e.g. "phase 3") to scope the review to that phase's changes only. The review still checks whether that phase's changes broke assumptions from earlier phases, since phases can interact.

Can I resume a saved implementation review later?

Yes, saved reports include an IMPL-REVIEW-REPORT marker and PENDING decision fields. Passing the saved report path resumes triage directly at the remaining undecided findings without re-running the analysis.

What kinds of issues does an implementation review detect?

It detects plan drift, scope creep, security risks like injection and hardcoded secrets, performance issues like N+1 queries, missing error handling, data safety problems, architecture violations, and pattern inconsistencies with existing code conventions.