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 المهني
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
| 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.