# Git Safety ## Staging rules - **Stage files by name** — never use `git add -A` or `git add .` - Verify no secrets, saves, or binary blobs are staged - Skip files in `.gitignore` - The `.claude/` directory IS tracked — skills and agents belong in the repo ## Commit conventions Use conventional commits: `(): ` Scopes: `agents`, `skills`, `docs`, `briefings`, `discussions`, `schema`, `db`, `config`, `engine`, `simulation`, `client`, `ui`, `audio`, `assets`, `meta` See `/git-commit` for full commit format, types, CHANGELOG workflow, and examples.