git-workflow-general
Git workflow: branch naming, conventional commits, PR conventions, and merge strategies
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Git workflow: branch naming, conventional commits, PR conventions, and merge strategies
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | git-workflow-general |
| description | Git workflow: branch naming, conventional commits, PR conventions, and merge strategies |
<type>/<short-description>
| Type | Use for |
|---|---|
feat | New functionality |
fix | Bug fixes |
chore | Tooling, deps, config |
refactor | Code improvements, no behavior change |
docs | Documentation only |
test | Adding or fixing tests |
hotfix | Urgent production fix |
Examples: feat/user-auth, fix/login-redirect, chore/upgrade-node
<type>(<scope>): <subject>
[body — explain why, not what]
[footer — Closes #123, breaking changes]
feat(auth): add JWT refresh token support
Adds sliding window refresh to prevent session expiry during active use.
Tokens expire after 7 days of inactivity. Refresh endpoint is POST /auth/refresh.
Closes #142
main.main or develop..env files, secrets, or credentials..env.example with placeholder values.Architecture decisions: layering, design patterns, microservices trade-offs, and domain-driven design
Python architecture: PEP-8, type hints, clean layering, dependency injection, and testing strategy
General code review process: priority ordering, what to block on, how to give actionable feedback
Python data science: notebook structure, data validation, reproducibility, and model documentation
TypeScript refactoring: SOLID principles, DRY, type safety improvements, and eliminating code smells
Security checklist: OWASP top 10, secret scanning, input validation, and auth patterns