원클릭으로
implement-issue
Use this skill to implement a user story based on a GitHub issue reference.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Use this skill to implement a user story based on a GitHub issue reference.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
Interview the user relentlessly about a plan or design until reaching shared understanding, resolving each branch of the decision tree. Use when user wants to stress-test a plan, get grilled on their design, or mentions "grill me".
Open a pull request from the changes on the branch you are currently working on, with a properly structured description and a computed review-tier assessment. Use this whenever the user says "open a PR", "create a pull request", "raise a PR for this", "ship this branch", or finishes a piece of work and wants it submitted for review. The skill inspects the branch diff, computes the review tier from risk-rules.yml (impact floor + complexity + blast radius), fills the PR body template, and creates the PR with the gh CLI — including tier labels and reviewer requests for changes that need a human. Prefer this over a bare `gh pr create` so the description and tier are never skipped.
SOC 직업 분류 기준
| name | implement-issue |
| description | Use this skill to implement a user story based on a GitHub issue reference. |
Use this skill to implement a user story based on a GitHub issue reference. Make sure to follow the workflow defined below to implement the issue.
This is the standing contract for any coding agent assigned an issue.
The issue is the single source of truth. Do not implement behaviour that is not specified, and do not work outside the declared scope.
Never commit to the default branch. Before writing any code, create a branch whose prefix matches the kind of work:
feat/<task-name> — a feature or taskfix/<bug-name> — a bug fixchore/<chore-name> — maintenance, dependencies, toolingdocs/<improvement-name> - improvement to docsUse a short kebab-case name derived from the issue title (e.g. task/parcel-bay-lookup).
All commits for the issue live on this branch; the PR merges it into the default branch.
When the green step needs new code, walk these rungs top to bottom and apply the last one that matches. Each rung is only reached when the one above it didn't resolve the need.
The Acceptance criteria checklist is the gate. The PR may only be marked ready when:
If any box cannot be checked, the PR is not ready — fix it, or flag the blocker in the issue.
Before marking the PR ready, run the /code-review skill over your own diff and resolve its
findings. This is a required gate, not advisory — do not mark the PR ready while findings are open.
Review-tier assignment is handled separately by a script; do not compute it here.