Agent skill
TypeScript Build Checker
Check TypeScript compilation errors, run build commands, and validate the codebase. Use when the user mentions TypeScript errors, build issues, compilation problems, or wants to verify code integrity.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/data/typescript-build-checker
SKILL.md
TypeScript Build Checker
Check TypeScript compilation status and build the project.
Quick Start
Check for TypeScript errors
cd /home/gianfiorenzo/Documents/Vs\ Code/babylon_fp
npx tsc --noEmit
Build the project
cd /home/gianfiorenzo/Documents/Vs\ Code/babylon_fp
npm run build
Run development server
cd /home/gianfiorenzo/Documents/Vs\ Code/babylon_fp
npm run dev
Common Commands
Full type check with detailed output
cd /home/gianfiorenzo/Documents/Vs\ Code/babylon_fp
npx tsc --noEmit --pretty
Watch mode for continuous compilation
cd /home/gianfiorenzo/Documents/Vs\ Code/babylon_fp
npx tsc --watch --noEmit
Check specific file
cd /home/gianfiorenzo/Documents/Vs\ Code/babylon_fp
npx tsc --noEmit <filename>
Interpreting Results
- Exit code 0: No errors, compilation successful
- Exit code 1: Errors found, check output for details
- Look for error patterns like:
error TS2345: Type mismatcherror TS2339: Property doesn't existerror TS2322: Type not assignableerror TS2304: Cannot find name/type
Best Practices
- Always check TypeScript errors before committing code
- Fix errors from top to bottom (earlier errors may cause later ones)
- Use
--noEmitflag to check without generating files - Run full build after fixing errors to ensure no runtime issues
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?