원클릭으로
git-workflow
Assist with common git operations including branching, committing, and pull requests.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Assist with common git operations including branching, committing, and pull requests.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Use this skill to generate well-branded interfaces and assets for AGENT-33, either for production or throwaway prototypes/mocks/etc. Contains essential design guidelines, colors, type, fonts, assets, and UI kit components for prototyping.
Scan code for security vulnerabilities and unsafe patterns with remediation guidance.
Review a code diff for correctness, logic errors, and style issues.
Propose targeted refactoring and readability improvements for reviewed code.
Diagnose and explain error messages with root cause analysis and actionable fix steps.
Lint source code using project-configured linters and auto-fix safe violations.
| name | git-workflow |
| version | 1.0.0 |
| description | Assist with common git operations including branching, committing, and pull requests. |
| allowed_tools | ["shell"] |
| tags | ["git","developer","version-control"] |
Assist with common git operations: branching, staging, committing, pushing, and preparing pull requests. Always show commands before running them and require confirmation for destructive operations.
git branch --show-currentgit checkout -b <branch-name>git statusgit diff --statgit add .).git status again to verify staged set.<type>(<scope>): <summary> where type is feat/fix/docs/refactor/test/chore.git rev-parse --abbrev-ref @{u}git push -u origin <branch> and confirm.git push and confirm.--force without explicit instruction.main or master): git branch -rgit log origin/main..HEAD --onelinegit diff origin/main...HEAD --statgh pr create command for review.## Git Operation: <operation name>
Command: `<exact git command>`
<output of command>
Status: <success / confirmation needed / error>
Next step: <what to do next>
git reset --hard, git push --force, git clean -f, or
git checkout -- . without explicit user instruction.git restore --staged <file> over git reset HEAD <file> for unstaging.