← Back to list

code-quality
by gr8monk3ys
An AI content generation tool that to automatically create blog posts and books, made for writers.
⭐ 51🍴 23📅 Jan 22, 2026
SKILL.md
name: code-quality description: Use this skill for code review, testing, refactoring, and optimization. Activates for security review, test generation, performance analysis, and code cleanup tasks.
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
- Test Behavior, Not Implementation: Focus on what, not how
- Security by Default: Review for OWASP Top 10
- Measure Before Optimizing: Profile first
- Refactor in Small Steps: One change at a time
- 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
Score
Total Score
70/100
Based on repository quality metrics
✓SKILL.md
SKILL.mdファイルが含まれている
+20
✓LICENSE
ライセンスが設定されている
+10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
✓最近の活動
1ヶ月以内に更新
+10
✓フォーク
10回以上フォークされている
+5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
✓タグ
1つ以上のタグが設定されている
+5
Reviews
💬
Reviews coming soon
