Files
Team 72f16d26b8 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)
2026-04-18 13:06:47 +08:00

21 lines
736 B
JSON

{
"skill_name": "commit-message",
"evals": [
{
"id": 1,
"prompt": "Commit the changes in src/auth.ts where I added JWT logic.",
"expected_output": "Suggests a feat(auth) or similar Conventional Commit message, uses imperative mood (e.g., 'add JWT authentication logic')."
},
{
"id": 2,
"prompt": "What's the commit message for fixing a typo in the README?",
"expected_output": "Suggests 'docs: fix typo in README' or similar."
},
{
"id": 3,
"prompt": "I refactored the database connection pool. What's a good commit message?",
"expected_output": "Suggests 'refactor: refactor database connection pool' or similar, mentions it's a refactor type."
}
]
}