Agent skill
quality-check
Run typecheck, lint, test, and build quality gates
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/other/other/quality-check
SKILL.md
Quality Check
Run the full quality suite for the project.
Steps
Run each check sequentially from apps/web/. Report pass/fail for each:
1. TypeScript
cd apps/web && npm run typecheck
2. ESLint
cd apps/web && npm run lint
3. Vitest
cd apps/web && npm run test
4. Build
cd apps/web && npm run build
Report
After all checks complete, output a summary table:
| Check | Status |
|---|---|
| typecheck | PASS/FAIL |
| lint | PASS/FAIL |
| test | PASS/FAIL |
| build | PASS/FAIL |
If any check fails, show the first 20 lines of errors and suggest fixes.
Notes
- The "close timed out" warning after Vitest is a known nitro issue — ignore it
- Pre-existing type errors in
src/routes/demo/should be ignored
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?