Back to list
wildwasser

git-commit

by wildwasser

Multi-agent AI development templates for opencode

1🍴 0📅 Jan 20, 2026

SKILL.md


name: git-commit description: Create conventional commit messages. Use when committing changes or writing commit messages.

Conventional Commits Format

<type>(<scope>): <subject>

<body>

<footer>

Types

TypeDescription
featNew feature
fixBug fix
docsDocumentation only
styleFormatting, no code change
refactorCode restructuring, no behavior change
perfPerformance improvement
testAdding/updating tests
buildBuild system or dependencies
ciCI/CD configuration
choreMaintenance tasks
revertReverting previous commit

Rules

Subject Line

  • Max 50 characters
  • Imperative mood ("add" not "added")
  • No period at end
  • Lowercase

Body (optional)

  • Wrap at 72 characters
  • Explain what and why, not how
  • Separate from subject with blank line
  • Reference issues: Closes #123, Fixes #456
  • Breaking changes: BREAKING CHANGE: description

Examples

Simple

feat(auth): add OAuth2 login support

With Body

fix(api): handle null response from payment gateway

The payment gateway occasionally returns null instead of an error
object when the service is degraded. This caused unhandled exceptions.

Added null check and appropriate error handling.

Fixes #789

Breaking Change

refactor(api)!: change user endpoint response format

BREAKING CHANGE: The /api/users endpoint now returns an object
with a `data` wrapper instead of a raw array.

Before: [{ id: 1, name: "John" }]
After: { data: [{ id: 1, name: "John" }], meta: { total: 1 } }

Commands

# Stage and commit
git add .
git commit -m "feat(scope): description"

# Amend last commit
git commit --amend

# Interactive rebase to fix commits
git rebase -i HEAD~3

Score

Total Score

50/100

Based on repository quality metrics

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

0/10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

0/5

Reviews

💬

Reviews coming soon