diff --git a/.agents/skills/commit-conventions/SKILL.md b/.agents/skills/commit-conventions/SKILL.md index 2e356537b9..4dceb4868a 100644 --- a/.agents/skills/commit-conventions/SKILL.md +++ b/.agents/skills/commit-conventions/SKILL.md @@ -33,15 +33,20 @@ Refs: #123, #456 ## Type Selection -| Type | When to Use | -| ---------- | ------------------------------- | -| `feat` | New feature or capability | -| `fix` | Bug fix | -| `docs` | Documentation only | -| `refactor` | Code change without feature/fix | -| `test` | Adding or fixing tests | -| `chore` | Build, deps, config changes | -| `perf` | Performance improvement | +| Type | When to Use | +| ---------- | -------------------------------- | +| `feat` | New feature or capability | +| `fix` | Bug fix | +| `docs` | Documentation only | +| `gov` | Governance or maintainer changes | +| `style` | Formatting/style-only changes | +| `refactor` | Code change without feature/fix | +| `perf` | Performance improvement | +| `test` | Adding or fixing tests | +| `build` | Build system or dependencies | +| `ci` | CI pipeline or workflow changes | +| `chore` | Build, deps, config changes | +| `revert` | Revert a previous commit | ## Scope Inference @@ -119,6 +124,19 @@ Key changes: - Add expert subagent consultation patterns ``` +**Governance/maintainer changes:** + +``` +gov(agents): add maintainer ownership for service modules + +Update CODEOWNERS and maintainer references to reflect +current governance responsibilities. + +Key changes: +- Add maintainers for agent_service and infra ownership +- Align governance docs with updated reviewer responsibilities +``` + ______________________________________________________________________