← Back to list

github-commit
by do-ops885
Dermatology GOAP Orchestrator
⭐ 0🍴 0📅 Jan 25, 2026
SKILL.md
name: github-commit description: Create, amend, and manage Git commits with gh CLI including status checks and commit message validation license: MIT compatibility: opencode metadata: audience: developers workflow: version-control
What I do
I create and manage Git commits using the GitHub CLI (gh). I stage changes, draft commit messages, validate against conventions, and push commits to remote repositories.
When to use me
Use this when:
- You're ready to commit staged changes
- You need to amend a commit you just made
- You want to validate commit messages before committing
- You're pushing commits to GitHub
Common Workflow
git status # Review changes first
git diff --staged # Verify staged changes
git commit -m "type(scope): description" # Commit
git push # Push to remote
Key Concepts
- Commit Message Format:
<type>(<scope>): <description> - Types: feat, fix, docs, style, refactor, test, chore
- Scope: Optional component or file area
- Body/Footer: For detailed descriptions and breaking changes
Source Files
.github/directory: May contain commit templatespackage.json: May contain commit-related scripts
Code Patterns
- Always review
git statusandgit diffbefore committing - Use conventional commit format
- Include issue numbers in footer (e.g., Fixes #123)
- Push after successful commit
Operational Constraints
- Never commit without reviewing changes first
- Don't amend pushed commits (unless explicitly requested)
- Use clear, descriptive commit messages
- Follow repository's commit conventions
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