원클릭으로
issue
Implement a GitHub issue end-to-end — branch, code, test, docs, and commit.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Implement a GitHub issue end-to-end — branch, code, test, docs, and commit.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
| name | issue |
| description | Implement a GitHub issue end-to-end — branch, code, test, docs, and commit. |
| argument-hint | <issue-number> |
| allowed-tools | Agent Bash(git *) Bash(gh *) Bash(cd *) Bash(make *) Bash(npm *) Bash(uv *) Bash(python *) Bash(cat *) Bash(ls *) Bash(mkdir *) Bash(cp *) Read Edit Write Grep Glob TaskCreate TaskUpdate TaskGet TaskList |
Implement a GitHub issue end-to-end: fetch the issue, create a feature branch, implement all requirements, test, update docs, and commit.
$ARGUMENTS must be a GitHub issue number (e.g. 78). If missing or non-numeric, ask the user for the issue number.
Run gh issue view $ARGUMENTS --json title,body,labels to get the issue details.
Also check if a matching markdown file exists under tmp/issues/ by looking for files that start with a zero-padded version of the issue number (e.g. issue 78 maps to a file starting with 078-). If the file exists, read it for additional context.
Display the issue title and a brief summary to the user.
Determine the branch name from the matching issue markdown filename under tmp/issues/, but without the .md extension. For example, if the file is 078-my-feature.md, the branch name is 078-my-feature.
If no matching file exists, derive the branch name from the issue number and title: zero-pad the issue number to 3 digits, kebab-case the title, and join with a hyphen (e.g. 078-my-feature-title).
Create and switch to the feature branch: git checkout -b <branch-name>.
Read the full issue body and any linked markdown file. Identify all discrete requirements.
Create a task list using TaskCreate for each requirement so progress can be tracked.
Before writing any code, present the implementation plan to the user and wait for confirmation.
Use an agent team to parallelize independent work where possible:
backend/ following project conventions (Python, FastAPI, type hints, SQLAlchemy).frontend/ following project conventions (TypeScript, ESM, shadcn, Tailwind, Vite).iac/ following AWS SAM / CloudFormation conventions.agents/ with isolated virtual environments.Update TaskUpdate as each requirement is completed.
Run existing tests to check for regressions:
cd backend && make test (or the appropriate makefile target)cd frontend && npm test (if test scripts exist)If the issue specifies new test cases, implement and run them.
All tests must pass before proceeding.
Update the following documentation files to reflect the new changes:
Run the full test suite one more time to confirm nothing was broken during documentation updates.
Review all changes with git diff to verify correctness and ensure no secrets or credentials are included.
Stage and commit all changes locally using semantic commit messages. Group related changes into logical commits:
feat: for new featuresfix: for bug fixesdocs: for documentation updatestest: for test additionsrefactor: for code restructuringchore: for build/config changesDo NOT push to remote. Only commit locally.
Append Co-Authored-By: Claude <noreply@anthropic.com> to each commit message.
Report a summary of all commits created.