10x-impl-review

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

Updated May 24, 2026
One-click install
npx skills add https://github.com/DevMachaj/Projekt-certyfikacyjny --skill 10x-impl-review-devmachaj
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: 10x-impl-review
Source: https://github.com/DevMachaj/Projekt-certyfikacyjny/tree/main/.claude/skills/10x-impl-review
Command: npx skills add https://github.com/DevMachaj/Projekt-certyfikacyjny --skill 10x-impl-review-devmachaj

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve? After implementing a plan, code often drifts from what was specified — unplanned changes sneak in, planned items get skipped, and security or pattern violations go unnoticed until they compound. This Skill systematically compares actual implementation work against the original plan to catch drift, dangerous decisions, and convention violations before they become expensive. ## Core Features & Use Cases - Plan Drift Detection: Uses parallel sub-agents to verify each planned change matches the actual code, flagging MISSING, DRIFT, and EXTRA (unplanned) changes via git diff analysis. - 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 Findings Report: Produces a severity-ranked report (CRITICAL/WARNING/OBSERVATION) with per-dimension verdicts, an overall APPROVED/NEEDS ATTENTION/REJECTED verdict, and concrete fix options with tradeoffs. - Interactive Triage: Walks through each finding to apply fixes, skip, or record recurring issues as lessons in context/foundation/lessons.md; supports resuming from a saved report. - Use Case: After finishing phase 3 of a multi-phase feature plan, run the review to confirm the phase's changes match the plan, automated success criteria pass, and no unplanned endpoints were added — then triage the two warnings it finds. ## Quick Start Ask the AI to review the implementation against the plan at context/changes/my-feature/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 path (or a change ID whose plan.md exists) and the Skill diffs git history against planned changes, then launches sub-agents to verify intent match and scan for safety issues. You get a severity-ranked findings report with an overall verdict.

How to review only one phase of a multi-phase plan?

Pass the plan path plus a phase number, for example 'phase 3'. The review scopes drift detection, safety scanning, and success-criteria verification to that phase's changes only, while still checking it didn't break earlier phases' assumptions.

Can I resume a saved implementation review later?

Yes. Saved reports contain an IMPL-REVIEW-REPORT marker and per-finding Decision fields. Passing the saved report path skips analysis and jumps straight into triage of findings still marked PENDING.

What kinds of issues does an implementation review catch?

It catches plan drift (missing or differently implemented changes), unplanned scope additions, security risks like injection and hardcoded secrets, performance problems like N+1 queries, missing error handling, and naming or structural inconsistencies with existing code patterns.

When should I not run an implementation review?

Do not run it on archived plans — the Skill refuses plans under context/archive/. It is also a review-only tool by default, so it only edits code when you explicitly choose to apply a fix during triage.