Git Hygiene
Use this skill to inspect local changes without disturbing them.
Steps
- Run
git status --short. - Review diffs for files you changed.
- Do not stage unrelated files.
- Do not rewrite history unless explicitly requested.
- Do not push without explicit permission.
- Summarize changed files and validation.
Notes
If the folder is not a git repository, say so and continue with filesystem checks.