Skip to main content

Commit Conventions

Commit Messages

Follow Conventional Commits:
<type>(<scope>): <description>

Types

TypeDescription
featNew feature
fixBug fix
refactorCode refactoring
docsDocumentation changes
testAdding or updating tests
choreMaintenance tasks
perfPerformance improvements

Examples

feat(memory): add knowledge graph visualization
fix(security): patch PII detection false positive
docs(api): update webhook payload examples

Pull Requests

  • One feature or fix per PR
  • Include tests for new functionality
  • Update relevant documentation
  • Ensure CI passes before requesting review