원클릭으로
pr
Create a feature branch, commit changes, push, and open a PR to main.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Create a feature branch, commit changes, push, and open a PR to main.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Bump version, generate changelog draft, tag, and deploy a release.
Check docs/ai/ spec files and ADRs for inconsistencies with the actual codebase. Report only, no modifications.
Check docs/ai/ spec files and ADRs for inconsistencies with the codebase, then fix all discrepancies.
Scan the codebase for security vulnerabilities. Check OWASP top 10, input validation, auth, crypto, and known BACKLOG security items.
Scan the project for refactoring opportunities, then fix them. No behavior/visual changes.
Create a new Architecture Decision Record (ADR) for a proposed feature or design change.
| name | pr |
| description | Create a feature branch, commit changes, push, and open a PR to main. |
| allowed-tools | Bash(git *), Bash(gh *), Read, Edit, Write, AskUserQuestion |
Create a feature branch from current changes, commit, push, and open a pull request.
/pr
git diff, git diff --cached, git status -u to see all changes.feat/xxx, fix/xxx, docs/xxx, refactor/xxx, chore/xxx). If already on a feature branch (not main), skip branch creation.git checkout -b {branch} (from main)./commit — analyze changes, draft message, stage specific files, commit with Co-Authored-By.git push -u origin {branch}gh pr create with title and body.
type: short summary (under 72 chars)
feat, fix, refactor, style, docs, choreCo-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>## Summary
<1-3 bullet points>
## Test plan
<bulleted checklist>
🤖 Generated with [Claude Code](https://claude.com/claude-code)
If already on a feature branch with an open PR:
git add -A — always add specific files