一键导入
gitflow-branching
Use when starting any new work that requires creating a git branch
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Use when starting any new work that requires creating a git branch
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | gitflow-branching |
| description | Use when starting any new work that requires creating a git branch |
Trunk-based development: main → feature branch → main
| Branch | Purpose | From | Merges to |
|---|---|---|---|
main | Production-ready | - | - |
feature/* | New features | main | main |
bugfix/* | Bug fixes | main | main |
feature/<ticket-id>-<description>bugfix/<ticket-id>-<description>git checkout main && git pull origin main
git checkout -b feature/<ticket-id>-<description>
git checkout main && git pull origin main
git checkout -b bugfix/<ticket-id>-<description>
git push -u origin feature/<ticket-id>-<description>
# Create PR to main
main — never from another feature branchmain — never to develop or other branchesdevelop branch — it does not exist in this workflowUse when the user asks for a daily summary, standup, or wants to know what they did today — e.g. "daily summary", "standup", "what did I do today", "summary for slack", "daily update".
Use when the user says "let's discuss", "lets discuss", "I want to discuss", "can we discuss", "let's brainstorm", "lets brainstorm", "I want to brainstorm", or any variation asking to discuss/talk through/brainstorm an idea before coding — this takes priority over other requests in the same message. Also use before any creative work to discuss features, designs, or behavior changes through collaborative dialogue before writing code
Use when a plan's PR is ready to merge — marks the plan completed, checks PR status, merges to main, and syncs local main
Use when you have a written implementation plan to execute
Use when a feature or change needs an implementation plan with concrete tasks, file paths, and test steps before coding begins
Audits and optimizes GitHub profile pages — profile README, metadata fields, pinned repositories, stats widgets, and contribution visibility. Use this skill whenever the user asks to improve, create, review, or optimize their GitHub profile, or mentions "profile README", "GitHub bio", "pinned repos", "GitHub stats", "contribution graph", or "GitHub presence". Also trigger when someone says things like "make my GitHub look good", "I want a better GitHub profile", "help me stand out on GitHub", "set up my GitHub page", or "optimize my developer profile". Works for both personal profiles and organization profile pages.