# Development
mise run dev # Start dev server
mise run build # Build for production
mise run start # Start production server
# Code Quality
mise run check-all # Lint + format + type-check
mise run lint # Run linter only
mise run fmt # Format code
mise run type-check # TypeScript check
# Security (⚡ NEW!)
mise run security # All security scans
mise run audit # Full audit (security + quality)
# Quality (⚡ NEW!)
mise run spellcheck # Check for typos (FAST!)
mise run shellcheck # Lint shell scripts
mise run actionlint # Lint GitHub workflowsmise install # Install all tools
mise upgrade # Update all tools
mise ls # List installed tools# Individual security scans
mise run security-trufflehog # Find leaked secrets
mise run security-snyk # Check vulnerabilities
mise run security-semgrep # SAST analysis
mise run security-dotenv # Lint .env files# Cleaning
mise run clean # Clean build artifacts
mise run clean-cache # Clear caches
mise run clean-all # Nuclear clean + reinstall
# Analysis
mise run analyze # Bundle size analysis- typos checks entire codebase in < 100ms
- oxlint is 50-100x faster than ESLint
- turbo caches tasks intelligently
- mise runs tasks in parallel
# Automatic (via git hooks)
git commit -m "feat: ..."
# Manual check before commit
mise run check-all
mise run spellcheckmise run check-all && mise run spellcheckmise run auditmise run clean:cache
mise run security
mise run check-all
mise run buildSee DEV_TOOLS.md for complete documentation.