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