一键导入
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.