validating-project
Installation
SKILL.md
Validating Project
Auto-detect project tooling and run validation steps in the correct order.
Process
- Check
./CLAUDE.mdfor validation tools and project permissions - Auto-detect project type if needed (package.json, pyproject.toml, Cargo.toml, Makefile, go.mod)
- Run validation pipeline: Format -> Lint -> Type Check -> Test
- Stop immediately on failures
- Report results
Tool Commands by Project Type
Make-based (check first -- overrides everything)
make format && make lint && make typecheck && make test