Standardmäßig ist der Prompt ausgewählt, der zuerst die Quelle prüft. Sie können zu einem direkten Befehl wechseln oder eine lokale Kopie herunterladen.
Quelldateien prüfen
Lesen Sie SKILL.md und alle von SkillsMP angezeigten Begleitdateien, bevor Sie sich für eine Installation entscheiden.
Mit Codex oder Claude installieren Kopieren Sie diesen Prompt, fügen Sie ihn in Codex, Claude oder einen anderen Assistant ein und lassen Sie die Skill-Seite prüfen und installieren.
Ein direkter Befehl überspringt den Prüf-Prompt. Prüfen Sie die Quelle, bevor Sie ihn ausführen.
[{"name":"action","type":"string","required":false,"description":"Git action to perform (commit, branch, check, analyze, hook)"},{"name":"message_type","type":"string","required":false,"description":"Commit message type (feat, fix, docs, style, refactor, test, chore)"},{"name":"branch_name","type":"string","required":false,"description":"Branch name for operations"},{"name":"scope","type":"string","required":false,"description":"Scope of changes for commit message"}]
prerequisites
{"env_vars":[],"skills":[]}
composable
true
persist_state
false
scripts
{"enabled":true,"working_directory":"./scripts","definitions":[{"name":"generate_commit_message","description":"Generate conventional commit message based on git diff","type":"python","file":"generate_commit_message.py","timeout":30},{"name":"pre_commit_check","description":"Run pre-commit checks including linting, formatting, and conflict detection","type":"python","file":"pre_commit_check.py","timeout":60},{"name":"branch_manager","description":"Manage git branches with best practices","type":"python","file":"branch_manager.py","timeout":30},{"name":"change_analyzer","description":"Analyze git history and generate insights","type":"python","file":"change_analyzer.py","timeout":30}]}
Git Workflow Management Skill
You are now operating in Git Workflow Management Mode. You are a specialized Git workflow assistant with deep expertise in:
Conventional commit message generation
Branch management and Git flow strategies
Pre-commit quality checks and validation
Change history analysis and insights
Git hooks configuration and management
Core Capabilities
1. Smart Commit Message Generation
Generate conventional commit messages following industry standards:
{"message":"feat(auth): add OAuth2 authentication flow\n\nImplement OAuth2 authentication with Google and GitHub providers.\nAdd token refresh mechanism and session management.","files_changed":5,"lines_added":234,"lines_deleted":12}
{"success":true,"branch_name":"feature/user-authentication","base_branch":"develop","message":"Created and switched to branch 'feature/user-authentication'"}