Ship · Code review

Code review

The code review tools a solo builder reaches for in the Ship phase - every AI-coding skill, MCP server and workflow Skillselion tracks for code review, ranked by community signal so you can pick the right one fast.

815 shown of 823
TypeDescription
1Web Design GuidelinesFrontend & Designvercel-labs/agent-skillsskillRun a fresh, Vercel-aligned UI and accessibility review on specific frontend files before you ship or merge polish work.
374k27.7k
2Azure ValidateMonitoring & Cloudmicrosoft/azure-skillsskillRun pre-deploy Azure readiness checks on azure.yaml, Bicep or Terraform, RBAC, managed identity, and Functions or Container Apps
374k1.2k
3Caveman ReviewTesting & Reviewjuliusbrussee/cavemanskillProduce terse, line-scoped PR review comments with optional severity tags instead of verbose feedback.
139k70k
4Requesting Code ReviewTesting & Reviewobra/superpowersskillDispatch a subagent with a senior code-reviewer prompt, your plan, and a git SHA range so finished work is checked before you merge or stack more changes.
119k221k
5Verification Before CompletionTesting & Reviewobra/superpowersskillInstall this when you want your coding agent to prove tests, lint, and builds actually pass before it says a task is done or opens a PR.
100k221k
6Receiving Code ReviewTesting & Reviewobra/superpowersskillTurn messy or authoritative review comments into verified, incremental code changes without performative agreement.
96.2k221k
7Finishing A Development BranchDev Toolsobra/superpowersskillAfter implementation and green tests, choose merge locally, open a PR, keep the branch, or discard work—with cleanup matched to normal repo vs worktree layout.
91.4k221k
8Request Refactor PlanTesting & Reviewmattpocock/skillsskillTurn a messy refactor idea into a scoped GitHub issue full of tiny, test-aware commits before anyone touches production code.
30.5k121k
9Setup Pre CommitDev Toolsmattpocock/skillsskillAdd Husky pre-commit hooks with lint-staged Prettier, plus typecheck and tests so bad commits never land on main.
25.5k121k
10AccessibilityTesting & Reviewaddyosmani/web-quality-skillsskillRun WCAG 2.2–aligned accessibility audits and get concrete HTML/CSS/ARIA fixes before you ship a solo-built web UI.
25k2.2k
11ReviewTesting & Reviewmattpocock/skillsskillRun a parallel Standards-and-Spec diff review from a fixed git point through HEAD before you merge or ship a branch.
24.4k121k
12Code Review ExcellenceTesting & Reviewwshobson/agentsskillRun structured, constructive PR and architecture reviews that catch bugs early and teach standards without slowing the team.
21.7k36.5k
13Swiftui ProTesting & Reviewtwostraws/swiftui-agent-skillskillRun a structured SwiftUI and Swift review for deprecated APIs, data flow, navigation, HIG, accessibility, and performance before merge or release.
19.1k4.1k
14RefactorTesting & Reviewgithub/awesome-copilotskillImprove maintainability of existing code through small, behavior-preserving refactors when structure blocks features or reviews surface smells.
17.8k34.6k
15Web Design GuidelinesTesting & Reviewantfu/skillsskillAudit UI code against live Vercel Web Interface Guidelines with terse file:line findings.
14.1k5.2k
16Workers Best PracticesMonitoring & Cloudcloudflare/skillsskillReview Cloudflare Workers handlers, bindings, and wrangler config against current types and schema before you ship edge code.
13.8k1.7k
17Karpathy GuidelinesTesting & Reviewforrestchang/andrej-karpathy-skillsskillKeep agent-written code minimal, explicit, and verifiable whenever you implement, review, or refactor.
13.8k171k
18Conventional CommitDev Toolsgithub/awesome-copilotskillStandardize git commit messages to the Conventional Commits spec and execute git commit from a structured agent workflow.
12.6k34.6k
19Git Advanced WorkflowsDev Toolswshobson/agentsskillApply interactive rebase, cherry-pick hotfixes, bisect regressions, and git worktrees when shipping features and keeping branch history review-ready.
12.5k36.5k
20Fixing AccessibilityTesting & Reviewibelick/ui-skillsskillAudit and minimally fix HTML accessibility—ARIA, keyboard paths, focus, contrast, and forms—when you add interactive UI or need WCAG-oriented review before ship.
12.1k2.1k
21AntfuTesting & Reviewantfu/skillsskillAdopt Anthony Fu’s ESLint flat config so a solo repo gets unified lint plus formatting without Prettier across TS, Vue, React, and related stacks.
11.4k5.2k
22Web Design ReviewerFrontend & Designgithub/awesome-copilotskillVisually inspect a running site in the browser, flag responsive, accessibility, and layout issues, then patch the source in your repo.
11.3k34.6k
23Refactor PlanTesting & Reviewgithub/awesome-copilotskillSequence a safe multi-file refactor with investigation, phased steps, verification, and rollback—without editing code until you confirm the plan.
11.1k34.6k
24Sql Code ReviewTesting & Reviewgithub/awesome-copilotskillReview SQL in your repo for injection risk, permissions, and maintainability before you ship database-backed features.
11.1k34.6k
25Postgresql Code ReviewBackend & Datagithub/awesome-copilotskillReview PostgreSQL SQL, schemas, and functions for JSONB, arrays, RLS, and Postgres-specific anti-patterns before merge or release.
10.5k34.6k
26Dotnet Design Pattern ReviewDev Toolsgithub/awesome-copilotskillGet a read-only agent review of selected C#/.NET code against Command, Factory, DI, Repository, Provider, and Resource patterns before you merge or refactor.
10.1k34.6k
27Review And RefactorTesting & Reviewgithub/awesome-copilotskillHave the agent read your repo’s Copilot instruction files, review the codebase, and refactor in place to match those standards without splitting files.
10.1k34.6k
28SimplifyTesting & Reviewbrianlovin/claude-configskillPolish code you just wrote so it matches project conventions and reads clearly without changing behavior.
10k349
29My Pull RequestsDev Toolsgithub/awesome-copilotskillGet a personal digest of pull requests assigned to you in the current repo, including review blockers, failed checks, and optional Copilot review offers.
9.8k34.6k
30React DoctorTesting & Reviewmillionco/react-doctorskillRun React Doctor before commit to catch regressions in lint, accessibility, bundle size, and architecture with a 0–100 score.
9.2k12.4k
31Refactor Method Complexity ReduceTesting & Reviewgithub/awesome-copilotskillShrink a named method’s cognitive complexity at or below a threshold by extracting focused helper methods.
9.2k34.6k
32Python Code StyleDev Toolswshobson/agentsskillKeep Python repos consistent with ruff, mypy or pyright, PEP 8 naming, and maintained docstrings across writes and reviews.
9.1k36.5k
33Create Github Pull Request From SpecificationDev Toolsgithub/awesome-copilotskillOpen a single, review-ready GitHub pull request whose title and body match your repo PR template and the feature specification.
9k34.6k
34Java Refactoring Extract MethodDev Toolsgithub/awesome-copilotskillApply the Extract Method refactor in Java with before-and-after patterns so long methods become smaller, named units your agent can change safely.
8.8k34.6k
35Code Exemplars Blueprint GeneratorTesting & Reviewgithub/awesome-copilotskillGenerate a tailored AI prompt so your agent scans the repo and writes an exemplars.md of on-pattern code for team standards.
8.6k34.6k
36Bigquery Pipeline AuditBackend & Datagithub/awesome-copilotskillReview Python BigQuery jobs for runaway cost, weak idempotency, and silent failures before production runs.
8.5k34.6k
37Web Quality AuditFrontend & Designaddyosmani/web-quality-skillsskillRun a read-only HTML quality pass on a file or directory and get structured JSON findings for doctype, viewport, charset, and related baseline checks before ship.
8k2.2k
38Frontend Code ReviewTesting & Reviewlanggenius/difyskillRun a structured frontend review on pending changes or named `.tsx`/`.ts`/`.js` files before commit or release.
7.8k144k
39Python Anti PatternsTesting & Reviewwshobson/agentsskillRun a Python anti-pattern checklist before merge or when debugging flaky behavior caused by duplicated retries, poor error handling, or other known bad habits.
7.8k36.5k
40Clean CodeTesting & Reviewsickn33/antigravity-awesome-skillsskillApply Uncle Bob Clean Code rules while writing, reviewing, or refactoring so agents and humans produce readable, maintainable code.
7.5k40.1k
41HallmarkFrontend & Designnutlope/hallmarkskillRun a named anti-pattern audit on landing pages and marketing UI so shipped interfaces do not read as generic AI-generated slop.
7.5k3k
42Typescript React ReviewerTesting & Reviewdotneet/claude-code-marketplaceskillRun structured TypeScript and React 19 code review on PRs and local changes, with merge-blocking rules for hooks, effects, and types.
7.3k1
43Code ReviewerTesting & Reviewgoogle-gemini/gemini-cliskillRun a structured agent-led review on local staged/unstaged diffs or a remote GitHub PR before merge, with optional preflight checks.
7.1k105k
44Shellcheck ConfigurationTesting & Reviewwshobson/agentsskillConfigure ShellCheck project-wide so bash and POSIX deploy scripts get consistent static analysis in editors and CI before merge.
7k36.5k
45CheckTesting & Reviewtw93/wazaskillRun diff-grounded code review, merge/release gates, and project-wide quality scorecards before you ship or publish.
6.6k5.6k
46HealthAI & Agentstw93/wazaskillAudit your Claude Code workspace—CLAUDE.md, rules/, and skills—for executable instructions, trigger clarity, and tier-appropriate rigor before you rely on the agent for real shipping work.
6.5k5.6k
47Code Review And QualityTesting & Reviewaddyosmani/agent-skillsskillRun a structured five-axis review with merge gates before any PR or agent-generated change lands.
6.3k49.1k
48Multi Reviewer PatternsTesting & Reviewwshobson/agentsskillRun parallel agent-driven code review with dimension-specific checklists (security, performance, and more) so findings are structured instead of one vague pass.
5.9k36.5k
49Swift Concurrency ProTesting & Reviewtwostraws/swift-concurrency-agent-skillskillRun a structured Swift 6 concurrency review on async/await, actors, and cancellation before merge or release.
5.7k450
50M15 Anti PatternTesting & Reviewzhanghandong/rust-skillsskillRun Rust-specific code review that spots idiomatic mistakes (clone spam, unwrap in prod, ownership fights) and maps each smell to a better pattern.
5.5k1.2k
51Code ReviewTesting & Reviewanthropics/knowledge-work-pluginsskillRun a structured pre-merge review on a PR URL, diff, or file path for security, performance, correctness, and maintainability before you merge solo-shipped code.
5.4k19.6k
52Code ReviewTesting & Reviewcoderabbitai/skillsskillRun CodeRabbit CLI reviews on staged or branch diffs so your agent finds bugs and security issues before you merge or ship.
5.2k112
53Cpp Coding StandardsTesting & Reviewaffaan-m/everything-claude-codeskillApply C++ Core Guidelines when writing, reviewing, or refactoring modern C++ so agents enforce RAII, const-correctness, and type-safe idioms.
5.2k210k
54Code SimplifierTesting & Reviewgetsentry/skillsskillRefactor recently touched code for clarity and project conventions while keeping behavior identical before merge or release.
5.2k776
55GithubDev Toolscallstackincubator/agent-skillsskillSquash-merge a stack of dependent GitHub PRs onto main as separate commits using gh CLI and rebase --onto.
4.9k1.4k
56Swiftdata ProFrontend & Designtwostraws/swiftdata-agent-skillskillInstall when your agent should audit SwiftData models, queries, and persistence code against current Apple best practices before you ship an iOS or macOS build.
4.8k338
57Agentation Self DrivingFrontend & Designbenjitaylor/agentationskillRun a two-terminal self-driving UI critique: one agent annotates the live page in a headed browser while another watches MCP and applies fixes.
4.5k3.9k
58Writing GuidelinesDocs & Planningvercel-labs/agent-skillsskillAudit docs and marketing prose against Vercel’s live writing handbook before you ship pages or publish changelog copy.
4.4k27.7k
59Plankton Code QualityTesting & Reviewaffaan-m/everything-claude-codeskillEnforce formatters and linters on every agent file edit via PostToolUse hooks, with delegated fixes when violations remain.
4.4k210k
60Code SimplificationTesting & Reviewaddyosmani/agent-skillsskillRefactor working code for clarity and maintainability after tests pass, without changing behavior or chasing line-count vanity.
4.3k49.1k
Explore more

This week for builders

Five minutes, every Monday — the tools, releases and tactics for shipping solo.

unsubscribe anytime.