| name | conventions |
| description | Use when you need to check or reference the project's coding conventions. |
| argument-hint | [domain-name] |
| user-invocable | true |
Conventions Skill
Quick reference for project coding conventions. For full details, see .claude/rules/.
Critical Rules
| Rule | Description |
|---|
| 1. Read-only skill | This skill only displays conventions; it must never create, edit, or delete any files. |
| 2. Show file paths for full details | Always display the .claude/rules/<domain>.md path so the user can read the full convention file. |
| 3. Match domain to rules files | When a domain argument is given, resolve it to the corresponding .claude/rules/ file; report an error if no match exists. |
Usage
/conventions
/conventions <domain>
Quick Reference
| Domain | Full Details |
|---|
| Git | .claude/rules/git-protocol.md |
Universal Rules (Always Apply)
- Only stage files YOU touched -- use
git add <specific-files>, not git add .
- Read files BEFORE modifying them
- Match existing code style and patterns
- Add tests for new functionality