Browse 138,453 skills across 70 categories. Mirrored from majiayu000/claude-skill-registry.
Security audit worker (L3). Scans codebase for hardcoded secrets, SQL injection, XSS, insecure dependencies, missing inp...
Checks hardcoded secrets, SQL injection, XSS, insecure deps, input validation. Use when auditing security.
Checks compiler/linter errors, deprecation warnings, type errors, failed tests, build config issues. Use when auditing b...
Architecture audit worker (L3). Checks DRY (7 types), KISS/YAGNI, layer breaks, error handling, DI patterns. Returns fin...
Code principles audit worker (L3). Checks DRY (7 types), KISS/YAGNI, TODOs, error handling, DI patterns. Returns finding...
Checks DRY, KISS/YAGNI, error handling, DI patterns. Use when auditing code principles compliance.
Code principles audit worker (L3). Checks DRY (10 types), KISS/YAGNI, error handling, DI patterns. Returns findings with...
Code quality audit worker (L3). Checks cyclomatic complexity, deep nesting, long methods, god classes, O(n²) algorithms,...
Checks cyclomatic complexity, nesting, long methods, god classes, O(n2), N+1 queries, constants management. Use when aud...
Code quality audit worker (L3). Checks cyclomatic complexity, deep nesting, long methods, god classes, method signature...
Dependencies and reuse audit worker (L3). Checks outdated packages, unused dependencies, reinvented wheels, custom imple...
Checks outdated packages, unused deps, reinvented wheels, CVE/CVSS vulnerability scan. Use when auditing dependencies.
Checks unreachable code, unused imports/variables/functions, commented-out code, deprecated patterns. Use when auditing...
Dead code & legacy audit worker (L3). Checks unreachable code, unused imports/variables/functions, commented-out code, b...
Observability audit worker (L3). Checks structured logging, health check endpoints, metrics collection, request tracing,...
Checks structured logging, health checks, metrics collection, request tracing, log levels. Use when auditing observabili...
Concurrency audit worker (L3). Checks race conditions, missing async/await, resource contention, thread safety, deadlock...
Checks async races, thread safety, TOCTOU, deadlocks, blocking I/O, resource contention. Use when auditing concurrency s...
Application lifecycle audit worker (L3). Checks bootstrap initialization order, graceful shutdown, resource cleanup, sig...
Checks bootstrap initialization, graceful shutdown, resource cleanup, signal handling, liveness/readiness probes. Use wh...
Test suite audit coordinator (L2). Delegates to 5 workers (Business Logic, E2E, Value, Coverage, Isolation). Aggregates...
Business Logic Focus audit worker (L3). Detects tests that validate framework/library behavior (Prisma, Express, bcrypt,...
E2E Critical Coverage audit worker (L3). Validates E2E coverage for critical paths (Money 20+, Security 20+, Data 15+)....
Risk-Based Value audit worker (L3). Calculates Usefulness Score = Impact (1-5) × Probability (1-5) for each test. Return...
Coverage Gaps audit worker (L3). Identifies missing tests for critical paths (Money 20+, Security 20+, Data Integrity 15...
Test Isolation + Anti-Patterns audit worker (L3). Checks isolation (APIs/DB/FS/Time/Random/Network), determinism (flaky,...
L2 Coordinator that analyzes implemented architectural patterns against current best practices, tracks evolution over ti...
Use when auditing architectural patterns through the evaluation platform with mandatory best-practice research, coordina...
Audits architectural patterns against best practices, maintains patterns catalog with compliance scores. Use when auditi...
L3 Worker. Analyzes single pattern implementation, calculates 4 scores (compliance, completeness, quality, implementatio...
Analyzes single pattern implementation, calculates compliance/completeness/quality scores, identifies gaps. Use when aud...
Checks layer boundary violations, transaction boundaries, session ownership, cross-layer consistency. Use when auditing...
Checks layer leakage in method signatures, missing DTOs, entity leakage to API, inconsistent error contracts. Use when a...
Builds dependency graph, detects cycles, validates boundary rules, calculates coupling metrics (Ca/Ce/I). Use when audit...
Discovers custom modules replaceable by OSS, evaluates alternatives (stars, license, CVE), generates migration plan. Use...
Checks file hygiene, ignore files, framework conventions, domain/layer organization, naming. Use when auditing project s...
L3 Worker. Audits project physical structure: file hygiene, ignore file quality, framework convention compliance, domain...
Checks env var config sync, missing defaults, naming conventions, startup validation. Use when auditing environment conf...
Coordinates persistence and performance audit across queries, transactions, runtime, and resource lifecycle. Use when au...
Coordinates 3 specialized audit workers (query efficiency, transaction correctness, runtime performance). Researches DB/...
Use when auditing persistence and runtime performance through the evaluation platform with mandatory research, coordinat...
Checks redundant fetches, N+1 loops, over-fetching, missing bulk operations, wrong caching scope. Use when auditing quer...
Checks transaction scope, missing rollback handling, long-held transactions, trigger/notify interaction. Use when auditi...
Checks blocking IO in async, unnecessary allocations, sync sleep, string concat in loops, redundant copies. Use when aud...
Checks session scope mismatch, missing cleanup, pool config, error path leaks, resource holding. Use when auditing resou...
Orchestrates full project bootstrap from Replit export to production-ready structure
Bootstraps projects to production-ready structure. Use when creating new or transforming existing projects.
Universal project bootstrapper: CREATE new or TRANSFORM existing project to production-ready structure
Coordinates dependency upgrades across all detected package managers
Upgrades npm/yarn/pnpm dependencies with breaking change handling
Upgrades .NET NuGet packages with breaking change handling
Upgrades Python pip/poetry/pipenv dependencies with breaking change handling
Coordinates project structure migration to Clean Architecture
Scaffolds new or restructures existing projects to Clean Architecture. Use when setting up project structure.
Coordinates project structure: SCAFFOLD new or RESTRUCTURE existing to Clean Architecture
Restructures React frontend from monolith to component-based architecture
Scaffolds new React projects or restructures monoliths to component-based architecture. Use when setting up frontend str...
Generates .NET Clean Architecture backend structure from entity definitions. Use when bootstrapping .NET backend project...
Generates .NET Clean Architecture backend structure from entity definitions
Migrates mock data from Drizzle ORM schemas to C# MockData classes