원클릭으로
git
Git workflow: analyzing changes, chunking commits, conventional commit messages. Use when user asks to commit, create a PR, or says 'git'.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Git workflow: analyzing changes, chunking commits, conventional commit messages. Use when user asks to commit, create a PR, or says 'git'.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
Review the changes since a fixed point (commit, branch, tag, or merge-base) along two axes — Standards (does the code follow this repo's documented coding standards?) and Spec (does the code match what the originating issue/PRD asked for?). Runs both reviews in parallel sub-agents and reports them side by side. Use when the user wants to review a branch, a PR, work-in-progress changes, or asks to "review since X".
Browser-test handoff via a profile-aware file bus between this dev session and a `claude --chrome` session. Use after frontend work is locally testable or on /chrome-test.
Shared vocabulary for designing deep modules. Use when the user wants to design or improve a module's interface, find deepening opportunities, decide where a seam goes, make code more testable or AI-navigable, or when another skill needs the deep-module vocabulary.
Diagnosis loop for hard bugs and performance regressions. Use when the user says "diagnose"/"debug this", or reports something broken/throwing/failing/slow.
Build and sharpen a project's domain model. Use when the user wants to pin down domain terminology or a ubiquitous language, record an architectural decision, or when another skill needs to maintain the domain model.
A relentless interview to sharpen a plan or design.
SOC 직업 분류 기준
| name | git |
| description | Git workflow: analyzing changes, chunking commits, conventional commit messages. Use when user asks to commit, create a PR, or says 'git'. |
| group | process |
When asked to commit, follow this process:
git status
git diff
git diff --cached
Group related changes into small, focused commits. Each commit should represent ONE logical change:
For each logical chunk:
git add <specific files>
git commit -m "#<ticket> type(scope): short description"
#<ticket> type(scope): short description
Co-Authored-By, "Generated with", 🤖, or any model/tool signature to commit messages or PR descriptions (see the no-ai-attribution rule)git branch --show-current
Patterns:
feature/123-description → #123fix/ABC-123-description → #ABC-123123-description → #123feat — new feature or filefix — bug fixrefactor — code restructuring, no behavior changetest — test additions or changesdocs — documentation onlychore — config, tooling, dependenciesstyle — formatting onlyperf — performance improvementDerive from the primary area of change: auth, api, models, ci, install, doctor, etc.
Single commit:
#142 feat(auth): add two-factor authentication via TOTP
Multiple logical chunks from one set of changes:
#89 fix(payments): handle nil amount in refund calculation
#89 test(payments): add specs for refund edge cases