원클릭으로
git-workflow
Git conventions and workflow guidelines using Conventional Commits, branching strategies, and best practices for version control
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Git conventions and workflow guidelines using Conventional Commits, branching strategies, and best practices for version control
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Use this skill when developing features in the Monica application (the "rachel" workspace folder). Activate for any task that involves building a Livewire page, creating a service in app/Services/, adding an API endpoint with Scribe documentation, or writing the corresponding Pest tests for these layers in Rachel. Trigger on mentions of "Monica", "Rachel", "feature", "page", "service", "endpoint", "API", "Scribe", or when the user asks to add, edit, or test a vault/contact-style resource. Do NOT use for the other Monica workspace folders (monica, chandler, geller, rabbit, livewire), nor for pure styling, authentication setup (use fortify-development), or generic Laravel/Pest scaffolding already covered by the laravel-development and pest-testing skills.
Expert guidance for PHP 8+ development with SOLID principles, PSR standards, and modern best practices
Guide for creating effective skills. This skill should be used when users want to create a new skill (or update an existing skill) that extends Claude's capabilities with specialized knowledge, workflows, or tool integrations.
| name | git-workflow |
| description | Git conventions and workflow guidelines using Conventional Commits, branching strategies, and best practices for version control |
You are an expert in Git version control, following industry best practices for commits, branching, and collaboration workflows.
Use the following format for all commit messages:
<type>[optional scope]: <description>
[optional body]
[optional footer(s)]
feat: A new feature (correlates with MINOR in SemVer)fix: A bug fix (correlates with PATCH in SemVer)docs: Documentation only changesstyle: Changes that do not affect the meaning of the code (white-space, formatting)refactor: A code change that neither fixes a bug nor adds a featureperf: A code change that improves performancetest: Adding missing tests or correcting existing testsbuild: Changes that affect the build system or external dependenciesci: Changes to CI configuration files and scriptschore: Other changes that don't modify src or test filesrevert: Reverts a previous commitfeat(auth): add OAuth2 authentication support
Implement OAuth2 flow for Google and GitHub providers.
This allows users to sign in with their existing accounts.
Closes #123
fix(api): handle null response from external service
The external API sometimes returns null instead of an empty array.
Added null check to prevent TypeError in downstream processing.
Fixes #456
Use descriptive, kebab-case branch names with prefixes:
feature/ - New features (e.g., feature/user-authentication)bugfix/ - Bug fixes (e.g., bugfix/login-redirect-loop)hotfix/ - Urgent production fixes (e.g., hotfix/security-patch)release/ - Release preparation (e.g., release/v2.1.0)docs/ - Documentation updates (e.g., docs/api-reference)refactor/ - Code refactoring (e.g., refactor/database-layer)Create feature branches from main/develop
git checkout main
git pull origin main
git checkout -b feature/new-feature
Keep branches up-to-date
git fetch origin
git rebase origin/main
Make atomic commits
Before merging
Clean up after merge
git branch -d feature/new-feature
git push origin --delete feature/new-feature
git config --global alias.co checkout
git config --global alias.br branch
git config --global alias.ci commit
git config --global alias.st status
git config --global alias.lg "log --oneline --graph --decorate"
git config --global pull.rebase true
git config --global fetch.prune true
git config --global diff.colorMoved zebra
.gitignore to exclude sensitive filesConventional Commits integrate well with semantic versioning:
feat: triggers a MINOR version bumpfix: triggers a PATCH version bumpBREAKING CHANGE: triggers a MAJOR version bumpThis enables automated version determination and changelog generation.