원클릭으로
start-issue
Start work on a new GitHub issue. Fetches issue details, generates standard branch names, and sets up the branch.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Start work on a new GitHub issue. Fetches issue details, generates standard branch names, and sets up the branch.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Monitor the CI checks status of a Pull Request on GitHub, parse logs on failure, and address any non-passing checks.
Raise a detailed, structured issue on GitHub. Gathers context, builds reproduction steps, expected outcomes, and acceptance criteria.
Generate a detailed pull request body and create/update a PR on GitHub. Gathers workspace changes, updates the PR body dynamically, and posts update comments to capture a historical paper trail.
| name | start-issue |
| description | Start work on a new GitHub issue. Fetches issue details, generates standard branch names, and sets up the branch. |
Standardized procedure to initialize work on a new issue branch.
/start-issue <issue-number>.Sync main and check its CI status:
Sync the local main branch first:
git fetch origin main && git checkout main && git pull origin main
Then check the CI status of the latest completed run on main:
gh run list --branch main --status completed --limit 1 --json conclusion --jq '.[0].conclusion'
If the output is not success, stop immediately, report the failure to the user, and ask for instructions before creating a branch from a broken main.
Look up the issue title dynamically using the GitHub CLI (gh):
gh issue view <issue-number> --repo mrsixw/jeeves --json title --jq .title
Derive a branch name from the issue title:
issue-<N>_<short_description>issue-4_whoami_commandCreate and checkout the branch:
git checkout -b <branch-name>
Confirm to the user: Report the issue title, the derived branch name, and that you are ready to start coding.