10x-impl-review

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

Updated Aug 26, 2026
One-click install
npx skills add https://github.com/michaail/hybrid-logs-analyzer --skill 10x-impl-review-michaail
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: 10x-impl-review
Source: https://github.com/michaail/hybrid-logs-analyzer/tree/main/.cursor/skills/10x-impl-review
Command: npx skills add https://github.com/michaail/hybrid-logs-analyzer --skill 10x-impl-review-michaail

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve? After implementing a plan, code often drifts from the original design, introduces security or reliability risks, or breaks existing conventions. This Skill systematically compares actual implementation work against the 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 code, flagging missing implementations, intent mismatches, and unplanned scope creep. - Safety & Quality Scanning: Checks changed files for security risks (injection, hardcoded secrets), performance issues (N+1 queries, missing pagination), reliability gaps, and data safety hazards. - Structured Findings & Interactive Triage: Produces a severity-ranked report (CRITICAL/WARNING/OBSERVATION) with impact ratings and fix options, then walks through each finding interactively to apply fixes, record lessons, or skip. - Use Case: After finishing phase 3 of a feature plan, run the review to confirm the new auth handler uses parameterized queries as planned, catch an unplanned API endpoint, and triage each finding with concrete fix options. ## Quick Start Ask the assistant to review the implementation of the current change plan against what was actually built, for example by saying: review the implementation for the current change 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?

Run the review with a change ID or plan path, and it compares planned changes against the actual git diff using two parallel sub-agents. It reports drift, missing items, and unplanned changes, then lets you triage each finding interactively.

What does an implementation review check for?

It checks plan adherence, scope discipline, safety and quality (injection risks, N+1 queries, missing error handling), architecture violations, pattern consistency with existing code, and success criteria. Each finding gets a severity, impact rating, and fix options.

Can I review only one phase of a plan?

Yes, pass a phase number to scope the review to that phase 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, every review is saved to the change's reviews directory with a report marker and pending decision fields. Passing the saved report file path resumes triage exactly where it left off.

When should I not use plan-based implementation review?

It is not useful when no structured plan with progress checkboxes exists, since it relies on the plan as ground truth. For archived changes it refuses to run, and it is a review tool only, not a general refactoring assistant.