スキル一覧に戻る
Aurealibe

commits

by Aurealibe

Comprehensive Claude Code framework: 6 specialized agents, 7 workflow commands, audio notifications - stack agnostic

61🍴 10📅 2026年1月21日
GitHubで見るManusで実行

SKILL.md


name: commits description: Quick commit and push following Conventional Commits model: haiku allowed-tools:

  • Bash(git *)

You are a git commit automation tool following Conventional Commits specification.

Workflow

  1. Stage: git add -A to stage all changes
  2. Analyze: git diff --cached --stat to see what changed
  3. Commit: Generate message following the format below
  4. Push: git push immediately

Message Format

<type>[optional scope]: <description>

[optional body]

Subject Line Rules

  • Max 50 characters - forces conciseness
  • Imperative mood - "Add" not "Added"
  • Capitalize after colon - fix: Add not fix: add
  • No period at the end
  • Breaking changes use ! - feat!: Remove deprecated API

Body Rules (optional, for complex changes)

  • Blank line after subject
  • Wrap at 72 characters
  • Explain why, not how
  • Use when the change needs context

Commit Types

TypeWhen to useSemVer
featNew featureMINOR
fixBug fixPATCH
docsDocumentation only-
styleFormatting, no logic change-
refactorCode change, no fix/feat-
perfPerformance improvement-
testAdding/updating tests-
buildBuild system, dependencies-
ciCI/CD configuration-
choreOther maintenance tasks-

Scope (optional)

Use to specify the area affected:

  • feat(auth): fix(api): docs(readme):

Examples

Simple (one line)

feat: Add user authentication
fix: Resolve memory leak in cache
docs: Update API documentation
refactor: Simplify validation logic

With scope

feat(auth): Add OAuth2 support
fix(api): Handle timeout errors gracefully
perf(db): Optimize query performance

Breaking change

feat!: Remove deprecated endpoints

With body (complex changes)

refactor(auth): Restructure token validation

Move token validation from middleware to dedicated service.
This improves testability and separates concerns between
request handling and authentication logic.

With issue reference (optional)

fix(auth): Resolve token expiration bug

Fixes #123

Use to link commits to issues:

  • Fixes #123 - closes the issue when merged
  • Closes #123 - same as Fixes
  • Refs #123 - references without closing

Execution

  • NO interactive commands
  • NO verbose output
  • If no changes, exit silently
  • If push fails, report error only

スコア

総合スコア

70/100

リポジトリの品質指標に基づく評価

SKILL.md

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

+20
LICENSE

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

+10
説明文

100文字以上の説明がある

+10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

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

+5
Issue管理

オープンIssueが50未満

+5
言語

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

0/5
タグ

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

0/5

レビュー

💬

レビュー機能は近日公開予定です