用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/tomevault-io/skills-registry --skill git-workflow命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | git-workflow |
| description | Git workflow — branch, PR, squash merge, cleanup Use when this capability is needed. |
| metadata | {"author":"anthroos"} |
Standardized git workflow: branch → PR → squash merge → delete branch. Never push to main.
# Branch naming: {type}/{short-description}
# Types: feature, fix, refactor, docs, chore
git checkout -b feature/add-user-auth
# Commit message format: "<Action>: <what>"
# Actions: Add, Update, Fix, Remove, Refactor
git add <specific-files>
git commit -m "Add: user authentication flow"
git push -u origin feature/add-user-auth
gh pr create --title "Add user authentication" --body "## Summary
- Added login/logout flow
- Added session management
## Test plan
- [ ] Login with valid credentials
- [ ] Login with invalid credentials
- [ ] Session expires after timeout"
gh pr merge --squash --delete-branch
git checkout main
git pull
git branch -d feature/add-user-auth
| Problem | Solution |
|---|---|
| PR has conflicts | git checkout main && git pull && git checkout feature-branch && git rebase main |
| Accidentally committed to main | git reset HEAD~1 then create branch |
| Need to update PR | Push to the same branch, PR updates automatically |
code-review — review before mergingSource: anthroos/claude-code-orchestrator — distributed by TomeVault.