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

# 커밋 규칙

## 커밋 메시지

[기존 커밋](https://www.conventionalcommits.org/)을 따르세요.

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

## 풀 요청

* PR당 하나의 기능 또는 수정 사항
* 새로운 기능에 대한 테스트 포함
* 관련 문서 업데이트
* 검토를 요청하기 전에 CI 통과 여부를 확인하세요.
