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
1---2name: codebase-audit-pre-push3description: Pre-Push Codebase Audit4---567# Pre-Push Codebase Audit89As 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. 1011## When to Use This Skill 1213- User requests "audit the codebase" or "review before push" 14- Before making the first push to GitHub 15- Before making a repository public 16- Pre-production deployment review 17- User asks to "clean up the code" or "optimize everything" 1819## Your Job 2021Review the entire codebase file by file. Read the code carefully. Fix issues right away. Don't just note problems—make the necessary changes. 2223## Audit Process 2425### 1. Clean Up Junk Files 2627Start by looking for files that shouldn't be on GitHub: 2829**Delete these immediately:** 30- OS files: `.DS_Store`, `Thumbs.db`, `desktop.ini` 31- Logs: `*.log`, `npm-debug.log*`, `yarn-error.log*` 32- Temp files: `*.tmp`, `*.temp`, `*.cache`, `*.swp` 33- Build output: `dist/`, `build/`, `.next/`, `out/`, `.cache/` 34- Dependencies: `node_modules/`, `vendor/`, `__pycache__/`, `*.pyc` 35- IDE files: `.idea/`, `.vscode/` (ask user first), `*.iml`, `.project` 36- Backup files: `*.bak`, `*_old.*`, `*_backup.*`, `*_copy.*` 37- Test artifacts: `coverage/`, `.nyc_output/`, `test-results/` 38- Personal junk: `TODO.txt`, `NOTES.txt`, `scratch.*`, `test123.*` 3940**Critical - Check for secrets:** 41- `.env` files (should never be committed) 42- Files containing: `password`, `api_key`, `token`, `secret`, `private_key` 43- `*.pem`, `*.key`, `*.cert`, `credentials.json`, `serviceAccountKey.json` 4445If you find secrets in the code, mark it as a CRITICAL BLOCKER. 4647### 2. Fix .gitignore 4849Check 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. 5051### 3. Audit Every Source File 5253Look through each code file and check: 5455**Dead Code (remove immediately):** 56- Commented-out code blocks 57- Unused imports/requires 58- Unused variables (declared but never used) 59- Unused functions (defined but never called) 60- Unreachable code (after `return`, inside `if (false)`) 61- Duplicate logic (same code in multiple places—combine) 6263**Code Quality (fix issues as you go):** 64- Vague names: `data`, `info`, `temp`, `thing` → rename to be descriptive 65- Magic numbers: `if (status === 3)` → extract to named constant 66- Debug statements: remove `console.log`, `print()`, `debugger` 67- TODO/FIXME comments: either resolve them or delete them 68- TypeScript `any`: add proper types or explain why `any` is used 69- Use `===` instead of `==` in JavaScript 70- Functions longer than 50 lines: consider splitting 71- Nested code greater than 3 levels: refactor with early returns 7273**Logic Issues (critical):** 74- Missing null/undefined checks 75- Array operations on potentially empty arrays 76- Async functions that are not awaited 77- Promises without `.catch()` or try/catch 78- Possibilities for infinite loops 79- Missing `default` in switch statements 8081### 4. Security Check (Zero Tolerance) 8283**Secrets:** Search for hardcoded passwords, API keys, and tokens. They must be in environment variables. 8485**Injection vulnerabilities:** 86- SQL: No string concatenation in queries—use parameterized queries only 87- Command injection: No `exec()` with user-provided input 88- Path traversal: No file paths from user input without validation 89- XSS: No `innerHTML` or `dangerouslySetInnerHTML` with user data 9091**Auth/Authorization:** 92- Passwords hashed with bcrypt/argon2 (never MD5 or plain text) 93- Protected routes check for authentication 94- Authorization checks on the server side, not just in the UI 95- No IDOR: verify users own the resources they are accessing 9697**Data exposure:** 98- API responses do not leak unnecessary information 99- Error messages do not expose stack traces or database details 100- Pagination is present on list endpoints 101102**Dependencies:** 103- Run `npm audit` or an equivalent tool 104- Flag critically outdated or vulnerable packages 105106### 5. Scalability Check 107108**Database:** 109- N+1 queries: loops with database calls inside → use JOINs or batch queries 110- Missing indexes on WHERE/ORDER BY columns 111- Unbounded queries: add LIMIT or pagination 112- Avoid `SELECT *`: specify columns 113114**API Design:** 115- Heavy operations (like email, reports, file processing) → move to a background queue 116- Rate limiting on public endpoints 117- Caching for data that is read frequently 118- Timeouts on external calls 119120**Code:** 121- No global mutable state 122- Clean up event listeners (to avoid memory leaks) 123- Stream large files instead of loading them into memory 124125### 6. Architecture Check 126127**Organization:** 128- Clear folder structure 129- Files are in logical locations 130- No "misc" or "stuff" folders 131132**Separation of concerns:** 133- UI layer: only responsible for rendering 134- Business logic: pure functions 135- Data layer: isolated