
commit-best-practices
by olioapps
Olio Apps' Claude Code plugin marketplace - custom agents, commands, and workflows for enhanced AI-assisted development
SKILL.md
name: commit-best-practices description: Create git commits with AI-generated messages following best practices. Use when the user asks to commit changes, mentions "commit", wants to save work to git, or has made changes ready to be committed. Invokes /git-actions:commit command which analyzes changes, generates concise messages matching repo style, and handles staging/approval workflow. allowed-tools: SlashCommand
Creating Commits with Best Practices
When the user needs to create a git commit, use the /git-actions:commit slash command. This command orchestrates the entire workflow with best practices built-in.
Usage
/git-actions:commit all # Stage all changes and commit
/git-actions:commit staged # Commit only staged changes
/git-actions:commit # Auto-detect (staged if any, else all)
What the Command Does
- Stages files (if needed)
- Analyzes changes using git diff
- Reviews recent commit history to match repository style
- Generates a concise, information-dense commit message
- Presents the message for user approval
- Creates the commit after approval
The commit-writer Agent
The /git-actions:commit command invokes the commit-writer agent, which has commit best practices embedded:
- Concise, information-dense messages (50-char subject limit)
- Imperative mood ("Add" not "Added")
- Explains WHAT and WHY, not HOW
- Adapts to repository commit conventions
- References issues when relevant
- Atomic commits (one logical change)
Custom Instructions
You can pass additional context to override defaults:
/git-actions:commit all use conventional commits format
/git-actions:commit staged keep it under 40 chars
/git-actions:commit all emphasize performance improvements
/git-actions:commit staged no body
Examples
User: "I've updated the authentication logic, can you commit this?"
You: Use /git-actions:commit all to stage all changes and create a commit with a well-crafted message.
User: "Commit my staged files"
You: Use /git-actions:commit staged to commit only the staged changes.
User: "I need a brief commit message for this fix"
You: Use /git-actions:commit all keep it under 40 chars to create a concise commit.
Score
Total Score
Based on repository quality metrics
SKILL.mdファイルが含まれている
ライセンスが設定されている
100文字以上の説明がある
GitHub Stars 100以上
3ヶ月以内に更新がある
10回以上フォークされている
オープンIssueが50未満
プログラミング言語が設定されている
1つ以上のタグが設定されている
Reviews
Reviews coming soon