🎯

code-review

🎯Skill

from bselee/murp

VibeIndex|
What it does

Conducts thorough code reviews, analyzing quality, security, and best practices across project files with detailed, actionable feedback.

πŸ“¦

Part of

bselee/murp(5 items)

code-review

Installation

npm runRun npm script
npm run dev
npm runRun npm script
npm run build
πŸ“– Extracted from docs: bselee/murp
1Installs
-
AddedFeb 4, 2026

Skill Details

SKILL.md

Review code for quality, security, and best practices. Use when reviewing recent changes, PRs, or checking code quality. Proactively use after significant code modifications.

Overview

# Code Review

Comprehensive code review following project standards.

Review Checklist

Code Quality

  • Clear naming conventions
  • No code duplication
  • Proper error handling with { success, error } pattern
  • TypeScript types explicit (no any)

Project Patterns

  • Uses hooks for Supabase queries (not direct queries in components)
  • Services return { success, data?, error? }
  • AI calls go through aiGatewayService.ts
  • Data transforms follow 4-layer schema (Raw β†’ Parsed β†’ Database β†’ Display)

Security

  • No hardcoded secrets or API keys
  • Input validation on external data
  • SQL injection prevention
  • XSS protection

Testing

  • E2E tests use ?e2e=1 for auth bypass
  • Schema transformers have validation tests

Output Format

For each finding:

  • Severity: Critical / Warning / Suggestion
  • File:Line: Location
  • Issue: Description
  • Fix: Recommended solution

Trigger Phrases

  • "review my changes"
  • "code review"
  • "check this code"
  • "/review"