Commit Conventions
Commit Messages
Follow Conventional Commits:Types
Examples
Pull Requests
- One feature or fix per PR
- Include tests for new functionality
- Update relevant documentation
- Ensure CI passes before requesting review
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Git commit message and PR conventions.
<type>(<scope>): <description>
| Type | Description |
|---|---|
feat | New feature |
fix | Bug fix |
refactor | Code refactoring |
docs | Documentation changes |
test | Adding or updating tests |
chore | Maintenance tasks |
perf | Performance improvements |
feat(memory): add knowledge graph visualization
fix(security): patch PII detection false positive
docs(api): update webhook payload examples