code-review
Perform structured code reviews with checklists, PR feedback, defect categorization, and severity classification.
10 skills in this category.
Perform structured code reviews with checklists, PR feedback, defect categorization, and severity classification.
Test across component boundaries using real databases, HTTP clients, and message queues via Docker containers.
Verify test suite quality by injecting faults (mutants) into the code and checking if tests catch them.
Identify performance bottlenecks through complexity analysis, profiling review, caching strategy evaluation, and resource utilization assessment.
Master workflow for a thorough PR review. Orchestrates code review, security review, and performance review in parallel, then routes the findings into PR management for triage and merge decisioning. No implementation logic.
Perform security-focused code review covering OWASP Top 10, vulnerability scanning, secret detection, and input validation.
Define the testing pyramid for a project: unit, integration, E2E. Set coverage targets and testing conventions.
Define test pyramid structure, coverage analysis, test type selection, and boundary condition identification for comprehensive quality assurance.
Decouple metric collection from pass/fail gating. Pass 1 gathers raw data. Pass 2 applies thresholds. Enables trend analysis without blocking, while still enforcing standards.
Generate unit tests following AAA pattern (Arrange-Act-Assert). Supports Jest, JUnit, Go Test, PyTest, and more.