From 562260cb66d614f6587f9276d8789c6d7e0d3c1e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=8D=9A=E6=83=9F?= Date: Wed, 22 Apr 2026 17:16:24 +0800 Subject: [PATCH] gov: add maintainer --- .agents/skills/commit-conventions/SKILL.md | 36 +++++++++++++++----- .claude/commands/create-pr.md | 23 ++++++++----- .claude/commands/gen-commit-msg.md | 23 ++++++++----- .claude/skills/commit-conventions/SKILL.md | 36 +++++++++++++++----- .github/workflows/pre-commit.yml | 2 +- .opencode/command/create-pr.md | 23 ++++++++----- .opencode/skills/commit-conventions/SKILL.md | 36 +++++++++++++++----- .pre-commit-config.yaml | 1 + AGENTS.md | 4 +-- CLAUDE.md | 4 +-- CONTRIBUTING.md | 2 +- GOVERNANCE.md | 1 + 12 files changed, 131 insertions(+), 60 deletions(-) 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 +``` + ______________________________________________________________________