Skip to content

Latest commit

 

History

History
25 lines (19 loc) · 485 Bytes

File metadata and controls

25 lines (19 loc) · 485 Bytes

Git Workflow

Commit format

  • Use Conventional Commits:
    • feat: ...
    • fix: ...
    • chore: ...
    • docs: ...
    • refactor: ...
    • test: ...
  • Scope is recommended when useful, e.g. feat(api): add mcp auth guard.

Commit quality

  • Keep commits small and single-purpose.
  • Align commit message with why the change exists.

PR expectations

  • Include:
    • what changed
    • why it changed
    • test/verification evidence
    • risk/rollback notes when relevant