원클릭으로
commit-push-pr
Commit all changes, push to remote, and open a pull request in one shot. The most common inner-loop workflow.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Commit all changes, push to remote, and open a pull request in one shot. The most common inner-loop workflow.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Clean start for a new task. Saves important decisions, clears context, and re-reads project config.
Resume work from a previous session. Reads MEMORY.md and continues autonomously.
Adversarial code review — stress-tests recent changes by hunting for bugs, edge cases, security holes, and design flaws. Spawns parallel attack agents, consolidates into a severity-rated report.
Debug and investigate issues — trace symptoms to root cause. Use when something is broken, a test fails mysteriously, or behavior is unexpected.
Prove that the current implementation works. Runs tests, diffs behavior, validates correctness. Use after implementing a feature or fix to verify before marking complete.
Post-task retrospective — capture lessons learned and store them for future sessions. Builds cumulative intelligence across sessions.
| name | commit-push-pr |
| description | Commit all changes, push to remote, and open a pull request in one shot. The most common inner-loop workflow. |
| user_invocable | true |
| tools | Read, Bash, Glob, Grep |
| model | inherit |
Execute the full commit-push-PR workflow in a single invocation.
git status and git diff --stat to understand what's being committedgit add -A). Skip .env, secrets, credentials, .pem, .key files.feat:, fix:, refactor:, test:, docs:, ci:, security:). Focus on why not what. End with Co-Authored-By: Claude <noreply@anthropic.com>-u flag if no upstream is set. Create a new branch from current if on main/master.gh pr create with:
## Summary (1-3 bullets), ## Test plan (checklist), and Generated with Claude Code footer.env*, secrets/, credentials*, *.pem, *.keygh CLI is not available, commit and push but skip PR creation and tell the userIf creating a new branch, use: claude/<type>/<short-description>
claude/feat/add-verification-hookclaude/fix/ocsp-response-parsing