pr-review
Conduct comprehensive pull request reviews with security, architecture, and quality checks. Use when user wants to review a PR.
What this skill does
# /pr-review - Pull Request Review Conducts comprehensive code review of a pull request using the `git-pr-reviewer` agent. ## Workflow ### 1. Identify PR to Review If user provided PR number/URL: ```bash gh pr view <number> --json title,body,author,files ``` If no argument provided: ```bash # Find PR for current branch gh pr list --head $(git branch --show-current) ``` If no PR found: Error and suggest using `/push` first. ### 2. Launch git-pr-reviewer Agent Use the Task tool to launch `git-pr-reviewer` agent with the PR number. ### 3. The Agent Will Fetch PR details and diff: ```bash gh pr view <number> --json title,body,author,files,additions,deletions gh pr diff <number> ``` Analyze changes for: - **Security**: secrets, SQL injection, XSS, authentication gaps - **Correctness**: null safety, error handling, edge cases - **Performance**: N+1 queries, complexity, memory leaks - **Maintainability**: readability, naming, DRY violations - **Test coverage**: adequate tests for changes Generate structured review: - Critical issues (must fix) - Major concerns (should address) - Minor suggestions (nice to have) - Positive observations (good practices) Post review to GitHub (with permission). ### 4. After Review Provide: - Summary of findings - Review status (Approve/Request Changes/Comment) - Suggested next steps ## Usage ``` /pr-review # Review PR for current branch /pr-review 123 # Review specific PR number /pr-review #456 # Review specific PR ``` ## Review Categories ### Critical Issues - Security vulnerabilities - Data loss risks - Authentication/authorization gaps - Breaking changes ### Major Concerns - Logic errors - Missing error handling - Performance problems - Incomplete implementation ### Minor Suggestions - Code style improvements - Refactoring opportunities - Documentation gaps - Test coverage ### Positive Observations - Clean code patterns - Good error handling - Comprehensive tests - Clear documentation
Related in Security
mac-ops
IncludedComprehensive macOS workstation operations — diagnose kernel panics, identify failing drives, audit launchd startup items, decode wake reasons, triage TCC permission denials, manage APFS snapshots, recover from no-boot. Use for: Mac is slow, slow bootup, won't boot, kernel panic, kernel_task hot, mds_stores CPU, photoanalysisd, cloudd, login loop, gray screen, sleep wake failure, drive failing, IO errors, APFS snapshots eating space, Time Machine local snapshots, Spotlight indexing, launchd, LaunchAgent, LaunchDaemon, login items, TCC permissions, Full Disk Access, Screen Recording denied, Gatekeeper, quarantine, com.apple.quarantine, app is damaged, helper tool, /Library/PrivilegedHelperTools, pmset, wake reasons, dark wake, sysdiagnose, panic.ips, DiagnosticReports, configuration profile, MDM profile, remote diagnostics over SSH.
a11y-audit
IncludedRun accessibility audits on web projects combining automated scanning (axe-core, Lighthouse) with WCAG 2.1 AA compliance mapping, manual check guidance, and structured reporting. Output is configurable: markdown report only, markdown plus machine-readable JSON, or markdown plus issue tracker integration. Use this skill whenever the user mentions "accessibility audit", "a11y audit", "WCAG audit", "accessibility check", "compliance scan", or asks to check a web project for accessibility issues. Also trigger when the user wants to verify WCAG conformance or map findings to a specific standard (CAN-ASC-6.2, EN 301 549, ADA/AODA).
erpclaw
IncludedAI-native ERP system with self-extending OS. Full accounting, invoicing, inventory, purchasing, tax, billing, HR, payroll, advanced accounting (ASC 606/842, intercompany, consolidation), and financial reporting. 413 actions across 14 domains, 43 expansion modules. Constitutional guardrails, adversarial audit, schema migration. Double-entry GL, immutable audit trail, US GAAP.
assess
IncludedAssesses and rates quality 0-10 across multiple dimensions (correctness, maintainability, security, performance, testability, simplicity) with pros/cons analysis. Compares against project conventions and prior decisions from memory. Produces structured evaluation reports with actionable improvement suggestions. Use when evaluating code, designs, architectures, or comparing alternative approaches.
spring-boot-security-jwt
IncludedProvides JWT authentication and authorization patterns for Spring Boot 3.5.x covering token generation with JJWT, Bearer/cookie authentication, database/OAuth2 integration, and RBAC/permission-based access control using Spring Security 6.x. Use when implementing authentication or authorization in Spring Boot applications.
code-hardcode-audit
IncludedDetect hardcoded values, magic numbers, and leaked secrets. TRIGGERS - hardcode audit, magic numbers, PLR2004, secret scanning.