Validate Frontend Skill
CLAUDE: When this skill is invoked with /validate-frontend, run these commands in sequence:
cd frontend && bun run type-check && bun run lint && bun run test -- --run
Purpose
Validates the web frontend codebase (Vite + React + TypeScript) for type safety, lint compliance, and test correctness.
Usage
/validate-frontend
What It Validates
Tier 0: TypeScript (fastest feedback)
cd frontend && bun run type-check
- Catches type errors before runtime
- Validates all
.tsand.tsxfiles - Uses
tsconfig.jsonconfiguration
Tier 1: ESLint
cd frontend && bun run lint
- React hooks rules
- React refresh compliance
- Import ordering
- Code style consistency
Tier 2: Unit Tests
cd frontend && bun run test -- --run
- Runs Vitest in single-run mode
- Tests components, hooks, and utilities
- Uses Testing Library for React
Full Validation Command
cd frontend && bun run type-check && bun run lint && bun run test -- --run
Additional Commands
E2E Tests (requires browser, run before PR)
cd frontend && bun run test:e2e
Integration Tests
cd frontend && bun run test:integration
Coverage Report
cd frontend && bun run test:coverage
Interactive Test UI
cd frontend && bun run test:ui
Success Criteria
- All TypeScript files compile without errors
- Zero ESLint violations
- All unit tests pass
- No type regressions
Related Skills
frontend-design- Design system complianceaccessibility-check- WCAG compliance auditdesign-review- Visual consistency review