Pre-Push Codebase Audit
As a senior engineer, you're doing the final review before pushing this code to GitHub. Check everything carefully and fix problems as you find them.
When to Use This Skill
- User requests "audit the codebase" or "review before push"
- Before making the first push to GitHub
- Before making a repository public
- Pre-production deployment review
- User asks to "clean up the code" or "optimize everything"
Your Job
Review the entire codebase file by file. Read the code carefully. Fix issues right away. Don't just note problems—make the necessary changes.
Audit Process
1. Clean Up Junk Files
Start by looking for files that shouldn't be on GitHub:
Delete these immediately:
- OS files:
.DS_Store, Thumbs.db, desktop.ini
- Logs:
*.log, npm-debug.log*, yarn-error.log*
- Temp files:
*.tmp, *.temp, *.cache, *.swp
- Build output:
dist/, build/, .next/, out/, .cache/
- Dependencies:
node_modules/, vendor/, __pycache__/, *.pyc
- IDE files:
.idea/, .vscode/ (ask user first), *.iml, .project
- Backup files:
*.bak, *_old.*, *_backup.*, *_copy.*
- Test artifacts:
coverage/, .nyc_output/, test-results/
- Personal junk:
TODO.txt, NOTES.txt, scratch.*, test123.*
Critical - Check for secrets:
.env files (should never be committed)
- Files containing:
password, api_key, token, secret, private_key
*.pem, *.key, *.cert, credentials.json, serviceAccountKey.json
If you find secrets in the code, mark it as a CRITICAL BLOCKER.
2. Fix .gitignore
Check if the .gitignore file exists and is thorough. If it’s missing or not complete, update it to include all junk file patterns above. Ensure that .env.example exists with keys but no values.
3. Audit Every Source File
Look through each code file and check:
Dead Code (remove immediately):
- Commented-out code blocks
- Unused imports/requires
- Unused variables (declared but never used)
- Unused functions (defined but never called)
- Unreachable code (after
return, inside if (false))
- Duplicate logic (same code in multiple places—combine)
Code Quality (fix issues as you go):
- Vague names:
data, info, temp, thing → rename to be descriptive
- Magic numbers:
if (status === 3) → extract to named constant
- Debug statements: remove
console.log, print(), debugger
- TODO/FIXME comments: either resolve them or delete them
- TypeScript
any: add proper types or explain why any is used
- Use
=== instead of == in JavaScript
- Functions longer than 50 lines: consider splitting
- Nested code greater than 3 levels: refactor with early returns
Logic Issues (critical):
- Missing null/undefined checks
- Array operations on potentially empty arrays
- Async functions that are not awaited
- Promises without
.catch() or try/catch
- Possibilities for infinite loops
- Missing
default in switch statements
4. Security Check (Zero Tolerance)
Secrets: Search for hardcoded passwords, API keys, and tokens. They must be in environment variables.
Injection vulnerabilities:
- SQL: No string concatenation in queries—use parameterized queries only
- Command injection: No
exec() with user-provided input
- Path traversal: No file paths from user input without validation
- XSS: No
innerHTML or dangerouslySetInnerHTML with user data
Auth/Authorization:
- Passwords hashed with bcrypt/argon2 (never MD5 or plain text)
- Protected routes check for authentication
- Authorization checks on the server side, not just in the UI
- No IDOR: verify users own the resources they are accessing
Data exposure:
- API responses do not leak unnecessary information
- Error messages do not expose stack traces or database details
- Pagination is present on list endpoints
Dependencies:
- Run
npm audit or an equivalent tool
- Flag critically outdated or vulnerable packages
5. Scalability Check
Database:
- N+1 queries: loops with database calls inside → use JOINs or batch queries
- Missing indexes on WHERE/ORDER BY columns
- Unbounded queries: add LIMIT or pagination
- Avoid
SELECT *: specify columns
API Design:
- Heavy operations (like email, reports, file processing) → move to a background queue
- Rate limiting on public endpoints
- Caching for data that is read frequently
- Timeouts on external calls
Code:
- No global mutable state
- Clean up event listeners (to avoid memory leaks)
- Stream large files instead of loading them into memory
6. Architecture Check
Organization:
- Clear folder structure
- Files are in logical locations
- No "misc" or "stuff" folders
Separation of concerns:
- UI layer: only responsible for rendering
- Business logic: pure functions
- Data layer: isolated database queries
- No 500+ line "god files"
Reusability:
- Duplicate code → extract to shared utilities
- Constants defined once and imported
- Types/interfaces reused, not redefined
7. Performance
Backend:
- Expensive operations do not block requests
- Batch database calls when possible
- Set cache headers correctly
Frontend (if applicable):
- Implement code splitting
- Optimize images
- Avoid massive dependencies for small utilities
- Use lazy loading for heavy components
8. Documentation
README.md must include:
- Description of what the project does
- Instructions for installation and execution
- Required environment variables
- Guidance on running tests
Code comments:
- Explain WHY, not WHAT
- Provide explanations for complex logic
- Avoid comments that merely repeat the code
9. Testing
- Critical paths should have tests (auth, payments, core features)
- No
test.only or fdescribe should remain in the code
- Avoid
test.skip without an explanation
- Tests should verify behavior, not implementation details
10. Final Verification
After making all changes, run the app. Ensure nothing is broken. Check that:
- The app starts without errors
- Main features work
- Tests pass (if they exist)
- No regressions have been introduced
Output Format
After auditing, provide a report:
CODEBASE AUDIT COMPLETE
FILES REMOVED:
- node_modules/ (build artifact)
- .env (contained secrets)
- old_backup.js (unused duplicate)
CODE CHANGES:
[src/api/users.js]
✂ Removed unused import: lodash
✂ Removed dead function: formatOldWay()
🔧 Renamed 'data' → 'userData' for clarity
🛡 Added try/catch around API call (line 47)
[src/db/queries.js]
⚡ Fixed N+1 query: now uses JOIN instead of loop
SECURITY ISSUES:
🚨 CRITICAL: Hardcoded API key in config.js (line 12) → moved to .env
⚠️ HIGH: SQL injection risk in search.js (line 34) → fixed with parameterized query
SCALABILITY:
⚡ Added pagination to /api/users endpoint
⚡ Added index on users.email column
FINAL STATUS:
✅ CLEAN - Ready to push to GitHub
Scores:
Security: 9/10 (one minor header missing)
Code Quality: 10/10
Scalability: 9/10
Overall: 9/10
Key Principles
- Read the code thoroughly, don't skim
- Fix issues immediately, don’t just document them
- If uncertain about removing something, ask the user
- Test after making changes
- Be thorough but practical—focus on real problems
- Security issues are blockers—nothing should ship with critical vulnerabilities
Related Skills
@security-auditor - Deeper security review
@systematic-debugging - Investigate specific issues
@git-pushing - Push code after audit
1---2name: codebase-audit-pre-push3description: Deep audit before GitHub push: removes junk files, dead code, security holes, and optimization issues. Checks every file line-by-line for production readiness.4---56# Pre-Push Codebase Audit78As a senior engineer, you're doing the final review before pushing this code to GitHub. Check everything carefully and fix problems as you find them. 910## When to Use This Skill 1112- User requests "audit the codebase" or "review before push" 13- Before making the first push to GitHub 14- Before making a repository public 15- Pre-production deployment review 16- User asks to "clean up the code" or "optimize everything" 1718## Your Job 1920Review the entire codebase file by file. Read the code carefully. Fix issues right away. Don't just note problems—make the necessary changes. 2122## Audit Process 2324### 1. Clean Up Junk Files 2526Start by looking for files that shouldn't be on GitHub: 2728**Delete these immediately:** 29- OS files: `.DS_Store`, `Thumbs.db`, `desktop.ini` 30- Logs: `*.log`, `npm-debug.log*`, `yarn-error.log*` 31- Temp files: `*.tmp`, `*.temp`, `*.cache`, `*.swp` 32- Build output: `dist/`, `build/`, `.next/`, `out/`, `.cache/` 33- Dependencies: `node_modules/`, `vendor/`, `__pycache__/`, `*.pyc` 34- IDE files: `.idea/`, `.vscode/` (ask user first), `*.iml`, `.project` 35- Backup files: `*.bak`, `*_old.*`, `*_backup.*`, `*_copy.*` 36- Test artifacts: `coverage/`, `.nyc_output/`, `test-results/` 37- Personal junk: `TODO.txt`, `NOTES.txt`, `scratch.*`, `test123.*` 3839**Critical - Check for secrets:** 40- `.env` files (should never be committed) 41- Files containing: `password`, `api_key`, `token`, `secret`, `private_key` 42- `*.pem`, `*.key`, `*.cert`, `credentials.json`, `serviceAccountKey.json` 4344If you find secrets in the code, mark it as a CRITICAL BLOCKER. 4546### 2. Fix .gitignore 4748Check if the `.gitignore` file exists and is thorough. If it’s missing or not complete, update it to include all junk file patterns above. Ensure that `.env.example` exists with keys but no values. 4950### 3. Audit Every Source File 5152Look through each code file and check: 5354**Dead Code (remove immediately):** 55- Commented-out code blocks 56- Unused imports/requires 57- Unused variables (declared but never used) 58- Unused functions (defined but never called) 59- Unreachable code (after `return`, inside `if (false)`) 60- Duplicate logic (same code in multiple places—combine) 6162**Code Quality (fix issues as you go):** 63- Vague names: `data`, `info`, `temp`, `thing` → rename to be descriptive 64- Magic numbers: `if (status === 3)` → extract to named constant 65- Debug statements: remove `console.log`, `print()`, `debugger` 66- TODO/FIXME comments: either resolve them or delete them 67- TypeScript `any`: add proper types or explain why `any` is used 68- Use `===` instead of `==` in JavaScript 69- Functions longer than 50 lines: consider splitting 70- Nested code greater than 3 levels: refactor with early returns 7172**Logic Issues (critical):** 73- Missing null/undefined checks 74- Array operations on potentially empty arrays 75- Async functions that are not awaited 76- Promises without `.catch()` or try/catch 77- Possibilities for infinite loops 78- Missing `default` in switch statements 7980### 4. Security Check (Zero Tolerance) 8182**Secrets:** Search for hardcoded passwords, API keys, and tokens. They must be in environment variables. 8384**Injection vulnerabilities:** 85- SQL: No string concatenation in queries—use parameterized queries only 86- Command injection: No `exec()` with user-provided input 87- Path traversal: No file paths from user input without validation 88- XSS: No `innerHTML` or `dangerouslySetInnerHTML` with user data 8990**Auth/Authorization:** 91- Passwords hashed with bcrypt/argon2 (never MD5 or plain text) 92- Protected routes check for authentication 93- Authorization checks on the server side, not just in the UI 94- No IDOR: verify users own the resources they are accessing 9596**Data exposure:** 97- API responses do not leak unnecessary information 98- Error messages do not expose stack traces or database details 99- Pagination is present on list endpoints 100101**Dependencies:** 102- Run `npm audit` or an equivalent tool 103- Flag critically outdated or vulnerable packages 104105### 5. Scalability Check 106107**Database:** 108- N+1 queries: loops with database calls inside → use JOINs or batch queries 109- Missing indexes on WHERE/ORDER BY columns 110- Unbounded queries: add LIMIT or pagination 111- Avoid `SELECT *`: specify columns 112113**API Design:** 114- Heavy operations (like email, reports, file processing) → move to a background queue 115- Rate limiting on public endpoints 116- Caching for data that is read frequently 117- Timeouts on external calls 118119**Code:** 120- No global mutable state 121- Clean up event listeners (to avoid memory leaks) 122- Stream large files instead of loading them into memory 123124### 6. Architecture Check 125126**Organization:** 127- Clear folder structure 128- Files are in logical locations 129- No "misc" or "stuff" folders 130131**Separation of concerns:** 132- UI layer: only responsible for rendering 133- Business logic: pure functions 134- Data layer: isolated database queries 135- No 500+ line "god files" 136137**Reusability:** 138- Duplicate code → extract to shared utilities 139- Constants defined once and imported 140- Types/interfaces reused, not redefined 141142### 7. Performance 143144**Backend:** 145- Expensive operations do not block requests 146- Batch database calls when possible 147- Set cache headers correctly 148149**Frontend (if applicable):** 150- Implement code splitting 151- Optimize images 152- Avoid massive dependencies for small utilities 153- Use lazy loading for heavy components 154155### 8. Documentation 156157**README.md must include:** 158- Description of what the project does 159- Instructions for installation and execution 160- Required environment variables 161- Guidance on running tests 162163**Code comments:** 164- Explain WHY, not WHAT 165- Provide explanations for complex logic 166- Avoid comments that merely repeat the code 167168### 9. Testing 169170- Critical paths should have tests (auth, payments, core features) 171- No `test.only` or `fdescribe` should remain in the code 172- Avoid `test.skip` without an explanation 173- Tests should verify behavior, not implementation details 174175### 10. Final Verification 176177After making all changes, run the app. Ensure nothing is broken. Check that: 178- The app starts without errors 179- Main features work 180- Tests pass (if they exist) 181- No regressions have been introduced 182183## Output Format 184185After auditing, provide a report: 186187```188CODEBASE AUDIT COMPLETE 189190FILES REMOVED: 191- node_modules/ (build artifact) 192- .env (contained secrets) 193- old_backup.js (unused duplicate) 194195CODE CHANGES: 196[src/api/users.js] 197 ✂ Removed unused import: lodash 198 ✂ Removed dead function: formatOldWay() 199 🔧 Renamed 'data' → 'userData' for clarity 200 🛡 Added try/catch around API call (line 47) 201202[src/db/queries.js] 203 ⚡ Fixed N+1 query: now uses JOIN instead of loop 204205SECURITY ISSUES: 206🚨 CRITICAL: Hardcoded API key in config.js (line 12) → moved to .env 207⚠️ HIGH: SQL injection risk in search.js (line 34) → fixed with parameterized query 208209SCALABILITY: 210⚡ Added pagination to /api/users endpoint 211⚡ Added index on users.email column 212213FINAL STATUS: 214✅ CLEAN - Ready to push to GitHub 215216Scores: 217Security: 9/10 (one minor header missing) 218Code Quality: 10/10 219Scalability: 9/10 220Overall: 9/10 221``` 222223## Key Principles 224225- Read the code thoroughly, don't skim 226- Fix issues immediately, don’t just document them 227- If uncertain about removing something, ask the user 228- Test after making changes 229- Be thorough but practical—focus on real problems 230- Security issues are blockers—nothing should ship with critical vulnerabilities 231232## Related Skills 233234- `@security-auditor` - Deeper security review 235- `@systematic-debugging` - Investigate specific issues 236- `@git-pushing` - Push code after audit 237