> ## Documentation Index
> Fetch the complete documentation index at: https://docs.myrmagent.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Commit Conventions

> Git commit message and PR conventions.

# Commit Conventions

## Commit Messages

Follow [Conventional Commits](https://www.conventionalcommits.org/):

```
<type>(<scope>): <description>
```

### Types

| 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 |

### 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
