← Back to list

git
by do-ops885
Dermatology GOAP Orchestrator
⭐ 0🍴 0📅 Jan 25, 2026
SKILL.md
name: git description: Execute Git commands including status, diff, log, branch, checkout, merge, and stash operations license: MIT compatibility: opencode metadata: audience: developers workflow: version-control
What I do
I execute Git commands to manage source code versioning. I can show repository status, display changes, view commit history, manage branches, merge code, and stash uncommitted work.
When to use me
Use this when:
- You need to check repository status or changes
- You're creating or switching branches
- You need to merge branches or resolve conflicts
- You're staging and committing changes
- You need to stash work temporarily
Common Commands
git status # Show working tree status
git diff # Show unstaged changes
git diff --staged # Show staged changes
git log --oneline # Show commit history
git branch -a # List all branches
git checkout <branch> # Switch to branch
git checkout -b <name> # Create and switch to new branch
git merge <branch> # Merge branch into current
git stash # Stash uncommitted changes
git stash pop # Apply stashed changes
Source Files
.git/directory: Git repository datapackage.json: May contain git-related scripts
Code Patterns
- Always verify current branch before operations
- Use
git statusbefore commit to review changes - Check
git logto understand commit history - Use
git diffto review modifications
Operational Constraints
- Never force push to main/master without explicit user request
- Warn user before destructive operations (reset, clean)
- Follow repository's branch naming conventions
- Use conventional commit message format
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