Code Review Depth Pack — Severity + Fix Plan

    1

    Code Review Depth Pack turns a supplied diff or PR into a structured, severity-rated review: correctness, security, performance, reliability, tests, and maintainability.

    $8

    Secure checkout via Stripe

    30-day refund guarantee

    Converts to your local currency at checkout

    0 installsSecurity scanned

    Works with the AI tools you already use

    Claude CodeClaude CodeCursorCursorCodex CLICodex CLIMuseMuseOpenClawOpenClaw+21 more

    Code Review Depth Pack — Severity + Fix Plan

    Example session with this skill installed

    intent: Add password reset token endpoint
    diff_or_files: |

    • router.post('/reset', (req, res) => {
    • const token = crypto.randomBytes(20).toString('hex');
    • db.query(UPDATE users SET token = '${token}' WHERE email = '${req.body.email}');
    • sendEmail(req.body.email, token);
    • res.status(200).send('Sent');
    • });
      language_stack: Node, Express, Postgres
      risk_context: Auth and user data
    • Read your context and instructions
    • Compiled the code review depth

    Code review: Add password reset token endpoint

    Intent: Add password reset token endpoint
    Scope: Express router snippet
    Stack: Node, Express, Postgres
    Risk context: Auth and user data
    Base: Not stated
    Generated: 2023-10-27 · Draft for human verification

    1. Executive readout

    • Merge recommendation: hold
    • Blockers (critical/high): 2 — SQL Injection and lack of token expiration.
    • Notable mediums: 1 — Potential for email enumeration.
    • Confidence in this review: high
    • Biggest unknown: Token expiration logic and database schema details.

    2. Change map

    Area / fileWhat appears to changeNotes
    router.postNew /reset endpointHandles token generation and DB update

    3. Findings

    Critical

    IDLocationIssueEvidenceSuggested fix / verifyConfidence
    C1db.querySQL InjectionWHERE email = '${req.body.email}'Use parameterized queries: WHERE email = $1High

    High

    IDLocationIssueEvidenceSuggested fix / verifyConfidence
    H1UPDATE usersNo Token ExpiryToken is set without a expires_at timestampAdd a timestamp column and check it during resetHigh

    Medium

    IDLocationIssueEvidenceSuggested fix / verifyConfidence
    M1res.sendEmail EnumerationSuccess response sent regardless of user existenceReturn a generic message for all inputsMedium

    4. Lens summary

    LensStatusTop note
    CorrectnessmixedLacks check if user actually exists
    SecurityriskCritical SQL injection vulnerability
    PerformanceclearSingle query operation
    ReliabilityriskNo error handling for db.query or sendEmail
    Tests & observabilitynot assessedNo tests provided
    MaintainabilityclearLogic is simple but unsafe

    6. Merge checklist

    • Critical/high findings addressed (SQL Injection fix required)
    • Secrets not committed
    • New behaviour has meaningful checks
    • Error paths for external calls handled
    • Human reviewer sign-off for Auth changes

    Next steps

    • Refactor the database query to use placeholders to prevent SQL injection.
    • Implement a token_expiry field in the database to prevent permanent reset links.
    • Wrap the database and email operations in a try/catch block for better reliability.

    Connects securely to your tools. The creator never sees your data.

    What you get

    Identify SQL injection and auth flaws before merging to production.Analyze performance bottlenecks like N+1 queries in new database logic.Enforce error handling and reliability patterns across team PRs.Verify test coverage and maintainability for complex refactors.

    About this skill

    Code Review Depth Pack turns a supplied diff or PR into a structured, severity-rated review: correctness, security, performance, reliability, tests, and maintainability. You get evidence-tied findings, suggested fixes, test gaps, and a merge checklist—without fake CVE scores, invented auto-fixes, or “guaranteed safe to merge” claims. Built for developers and small teams who want a sharper first-pass review than a generic chat prompt. Human verification required.

    Built by Cygnix Labs · info@cygnixlabs.com · cygnixlabs.com

    How to install

    Works the same in every agent - Claude, Cursor, Codex, Copilot and 20+ more.

    ~30 seconds
    1. 1

      Download the ZIP

      Free skills download straight away. Paid skills unlock right after purchase.

    2. 2

      Unzip into your skills folder

      Every agent reads skills from one folder on your machine. Drop the unzipped folder in there.

    3. 3

      Ask your agent to use it

      Restart the agent if it was already running. It picks the skill up automatically - no config needed.

    Skills folder by agent

    Click the path to copy it. Create the folder if it does not exist yet.

    Reviews

    No reviews yet

    Be one of the first to try it. Every listed skill passes our trust checks below.

    Security scanned

    Passed our 8-point scan before listing

    Fresh listing

    Recently published to Agensi

    30-day refund

    Not a fit? Get your money back

    Trust & safety

    Security scanned

    Verified clean today

    • Passed all security checks, Safe to install

    Listedtoday

    What's inside

    Frequently Asked Questions