This commit is contained in:
2026-04-12 01:06:31 +07:00
commit 10d660cbcb
1066 changed files with 228596 additions and 0 deletions

View File

@@ -0,0 +1,46 @@
# Commit Message Standards
## Format
```
type(scope): description
```
## Types (priority order)
- `feat`: New feature
- `fix`: Bug fix
- `docs`: Documentation only
- `style`: Formatting (no logic change)
- `refactor`: Restructure without behavior change
- `test`: Tests
- `chore`: Maintenance, deps, config
- `perf`: Performance
- `build`: Build system
- `ci`: CI/CD
## Rules
- **<72 characters**
- **Present tense, imperative** ("add" not "added")
- **No period at end**
- **Scope optional but recommended**
- **Focus on WHAT, not HOW**
- Only use `feat`, `fix`, or `perf` prefixes for files in `.claude` directory (do not use `docs`).
## NEVER Include AI Attribution
- "Generated with Claude"
- "Co-Authored-By: Claude"
- Any AI reference
## Good Examples
- `feat(auth): add login validation`
- `fix(api): resolve query timeout`
- `docs(readme): update install guide`
- `refactor(utils): simplify date logic`
## Bad Examples
- `Updated files` (not descriptive)
- `feat(auth): added login using bcrypt with salt` (too long, describes HOW)
- `Fix bug` (not specific)
## Special Cases
- `.opencode/` skill updates: `perf(skill): improve token efficiency`
- `.opencode/` new skills: `feat(skill): add database-optimizer`