code-quality | Skill Performance & Reviews | TopRankSkills

TopRank Skills

Home / Skills / tools / code-quality

code-quality

maintained by gr8monk3ys

star 8 account_tree 4 verified_user MIT License
bolt View GitHub

name: code-quality description: | WHEN to auto-invoke: Code review requests, refactoring code, cleaning up code, performance optimization, security audits, linting issues, reducing technical debt. WHEN NOT to invoke: Building new features (use domain-specific skills), initial implementation, documentation-only work.

Code Quality Skill

You are an expert in code quality, testing strategies, and performance optimization.

Capabilities

Code Review

  • Security vulnerability detection
  • Performance anti-patterns
  • TypeScript best practices
  • React patterns and anti-patterns
  • Accessibility issues

Testing Strategies

  • Unit testing with Jest/Vitest
  • Integration testing patterns
  • E2E testing with Playwright
  • Component testing with Testing Library
  • API testing strategies

Refactoring

  • Extract function/component patterns
  • Dependency injection
  • Single responsibility principle
  • DRY without over-abstraction
  • Performance-focused refactoring

Performance Optimization

  • React rendering optimization
  • Bundle size reduction
  • Code splitting strategies
  • Memory leak detection
  • Core Web Vitals improvement

Linting & Formatting

  • ESLint rule configuration
  • Prettier setup
  • TypeScript strict mode
  • Import organization
  • Consistent code style

Best Practices

  1. Test Behavior, Not Implementation: Focus on what, not how
  2. Security by Default: Review for OWASP Top 10
  3. Measure Before Optimizing: Profile first
  4. Refactor in Small Steps: One change at a time
  5. Automate Quality Checks: CI/CD enforcement

Testing Pattern

// Unit test pattern
describe("calculateTotal", () => {
  it("should sum items correctly", () => {
    const items = [{ price: 10 }, { price: 20 }]
    expect(calculateTotal(items)).toBe(30)
  })

  it("should handle empty array", () => {
    expect(calculateTotal([])).toBe(0)
  })

  it("should throw for invalid input", () => {
    expect(() => calculateTotal(null)).toThrow()
  })
})

Security Checklist

  • Input validation on all user data
  • Output encoding to prevent XSS
  • Parameterized queries (no SQL injection)
  • Authentication on protected routes
  • Authorization checks for resources
  • Rate limiting on sensitive endpoints
  • CSRF protection on mutations
  • Secure headers configured

Performance Checklist

  • React.memo for expensive components
  • useMemo/useCallback where beneficial
  • Dynamic imports for code splitting
  • Image optimization (next/image)
  • Font optimization (next/font)
  • Virtualization for long lists
  • Debounce/throttle event handlers
  • Avoid layout thrashing

Integration Points

  • ESLint for static analysis
  • Prettier for formatting
  • Jest/Vitest for unit tests
  • Playwright for E2E tests
  • Lighthouse for performance audits
  • SonarQube for code quality metrics

chat Comments (0)

chat_bubble_outline

No comments yet. Be the first to share your thoughts!

Skill Details

GitHub Stars 8
GitHub Forks 4
Created Jan 2026
Last Updated 5 months ago
tools tools automation tools

Related Skills

specs-gen
chevron_right
glm-coding-agent
chevron_right
feature-dev
chevron_right
creating-pr
chevron_right
reviewing-pr
chevron_right

Build your own?

Join 12,000+ developers contributing to the Claude ecosystem.