From repo-polish
Audit and fix repository hygiene - .gitignore, .env.example, README, LICENSE
npx claudepluginhub sagargupta16/claude-skills --plugin repo-polishAudit the current repository and fix any missing or incomplete hygiene files. Steps: 1. Sync from remote first: `git pull` 2. Detect the project type (Node.js, Python, Unity, academic, etc.) 3. Audit these files: - `.gitignore` -- exists? covers the right patterns for project type? - `.env.example` -- needed? (search for `process.env` or `os.getenv` usage) - `README.md` -- exists? has meaningful content (not just the repo name)? - `LICENSE` -- exists? 4. For each missing/incomplete item: - Generate appropriate content using the repo-polish skill templates - Show what will...
Audit the current repository and fix any missing or incomplete hygiene files.
Steps:
git pull.gitignore -- exists? covers the right patterns for project type?.env.example -- needed? (search for process.env or os.getenv usage)README.md -- exists? has meaningful content (not just the repo name)?LICENSE -- exists?.env files with real valuesgit add .)chore: add missing repo hygiene filesUse the repo-polish skill for all templates and patterns. Never commit .env files with real credentials.