Fast pre-deployment validation that scans for hardcoded secrets and runs a quick build check without full git status verification. Use when you need quick feedback.
Optional: project-path (defaults to current directory)# Quick Pre-Deployment Check Fast validation for when you need quick feedback before committing. Skips comprehensive git checks to save time. ## What This Check Does 1. **Secret/Credential Scanning** (FAST): Quick search for hardcoded API keys, passwords 2. **Quick Build Check** (FAST): Runs build command and reports errors 3. **Skips**: Full git status, environment variable verification, detailed analysis ## Usage ## What Gets Checked ✓ Hardcoded API keys and tokens ✓ Hardcoded passwords and credentials ✓ Build/TypeScript compilation ✓ Private keys and certificates ## What Gets SK...