用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/tomevault-io/skills-registry --skill git-workflow命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
基于 SOC 职业分类
| name | git-workflow |
| description | Git workflow patterns and best practices Use when this capability is needed. |
| metadata | {"author":"besync-labs"} |
Purpose: Apply professional Git workflows and conventions
This skill provides Git workflow patterns for professional software development teams.
main ──●────────────────●──────────●──→
↑ ↑
release ──●─┘ ●─┘
↑ ↑
develop ──●──●──●──●──●──●──●──●──●──→
↑ ↑
feature ───●─────●
main ──●──●──●──●──●──●──●──●──→
↑ ↑
short ───● ● (< 1 day)
feature
feature/ABC-123-add-user-auth
bugfix/ABC-456-fix-login-error
hotfix/ABC-789-critical-security-patch
release/v1.2.0
chore/update-dependencies
<type>(<scope>): <description>
[optional body]
[optional footer(s)]
| Type | Usage |
|---|---|
feat | New feature |
fix | Bug fix |
docs | Documentation |
style | Formatting |
refactor | Code restructure |
test | Adding tests |
chore | Maintenance |
perf | Performance |
ci | CI/CD changes |
feat(auth): add JWT refresh token support
fix(api): handle null user in profile endpoint
Closes #123
docs(readme): add installation instructions
chore(deps): update dependencies to latest versions
## Description
Brief description of changes
## Type of Change
- [ ] Bug fix
- [ ] New feature
- [ ] Breaking change
- [ ] Documentation update
## Checklist
- [ ] Tests pass locally
- [ ] Code follows style guidelines
- [ ] Self-reviewed my code
- [ ] Added necessary documentation
- [ ] No new warnings
## Testing
How to test these changes
# Create feature branch
git checkout -b feature/ABC-123-new-feature
# Stage and commit
git add -p # Interactive staging
git commit -m "feat: add..."
# Rebase on main
git fetch origin
git rebase origin/main
# Squash commits
git rebase -i HEAD~3
# Push feature branch
git push origin feature/ABC-123-new-feature
| Command | Usage |
|---|---|
git log --oneline -10 | Recent commits |
git diff --staged | Staged changes |
git stash | Temporary storage |
git cherry-pick <sha> | Pick specific commit |
git bisect | Find bad commit |
git reflog | Recovery tool |
Source: besync-labs/antigravity-ai-kit — distributed by TomeVault.