feat(commit-message): add commit-message skill and agent config

- Add SKILL.md with workflow and guidelines for generating Conventional Commits messages
- Add agent config (.kiro/agents/commit-message.json) with tool permissions and skill resource
- Add evals (evals.json) with 3 test cases covering feat/fix/refactor scenarios
- Add Conventional Commits 1.0.0 reference documentation
- Add compiled skill bundle (commit-message.skill)
This commit is contained in:
Team
2026-04-18 13:06:47 +08:00
parent 264dacf157
commit 72f16d26b8
5 changed files with 123 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
{
"name": "commit-message",
"description": "Agent specializing in generating Conventional Commits messages.",
"prompt": "You are an expert at generating git commit messages following the Conventional Commits 1.0.0 specification. Your goal is to analyze staged changes and provide a high-quality, professional commit message. Always use the `commit-message` skill for guidance.",
"tools": ["fs_read", "execute_bash", "grep", "glob"],
"allowedTools": ["fs_read", "execute_bash", "grep", "glob"],
"resources": [
"skill://skills/commit-message/SKILL.md"
]
}