Run a quick quality check on recent changes or specific files
# Quick Quality Check Perform a fast, focused code quality check on the specified files or scope. **Note**: This is a lightweight check for routine use. For comprehensive full-codebase audits, use `/deep-audit` instead. ## What to Analyze $ARGUMENTS If no specific files are provided, analyze recently modified files (check `git status` and `git diff`). ## Audit Focus Areas 1. **Dead Code** - Unused imports, functions, variables, and code paths 2. **Comment Quality** - Obvious comments, outdated comments, commented-out code 3. **DRY Violations** - Duplicated code that should be abstrac...