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

# 提交规范

> Git 提交信息与 PR 约定。

# 提交规范

## 提交信息

遵循 [Conventional Commits](https://www.conventionalcommits.org/)：

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

### 类型

| 类型         | 说明     |
| ---------- | ------ |
| `feat`     | 新功能    |
| `fix`      | Bug 修复 |
| `refactor` | 重构     |
| `docs`     | 文档变更   |
| `test`     | 测试增改   |
| `chore`    | 维护任务   |
| `perf`     | 性能优化   |

### 示例

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

## Pull Request

* 每个 PR 一个功能或修复
* 新功能需附测试
* 更新相关文档
* CI 通过后再请求 Review
