tzurot-tooling
Installation
SKILL.md
Tooling & CLI Commands
Use this skill when: Adding new CLI commands, creating dev utilities, understanding where scripts belong, or using standardized lint/test commands.
Quick Reference
# Standardized commands (use these!)
pnpm lint # Lint all packages
pnpm lint:errors # Show only errors (no warnings)
pnpm test # Test all packages
pnpm test:failures # Show only failed tests
pnpm typecheck # Typecheck all packages
# Focused commands (changed packages only)
pnpm focus:lint # Lint changed packages
pnpm focus:test # Test changed packages
pnpm focus:typecheck # Typecheck changed packages
pnpm focus:build # Build changed packages