--- name: git-conventions description: Branch naming and commit message conventions for git workflow metadata: node_type: memory type: feedback originSessionId: ca09fbe4-9226-4ad9-874f-04df90840eef --- **Never commit directly to the default branch (`main`/`master`).** Always create a branch first and work there, even for a one-line fix; if a commit ends up on main, move it to a branch and reset main back to `origin/`. This is a hard rule. **Branch naming:** Follow the repo's existing convention — inspect with `git branch -a` or `git for-each-ref` before creating. Prefer Conventional Commits prefixes (`feat/`, `fix/`, `chore/`, `docs/`, `refactor/`). Format: `/-`. Only ask if no convention is discoverable. **Commit messages:** Conventional Commits. Subject line: `(): ` — ticket ID as the scope. Use additional `-m` flags for rationale/body. Commit at logical checkpoints, not one giant final commit. **Why:** Lyra's standard workflow for traceability and clean history. **How to apply:** Whenever creating a branch or committing in any repo. Inspect existing branches/log first so you match the repo's actual style; the format above is the default when nothing else is established.