원클릭으로
gh-workflow
Use when creating GitHub issues, organizing milestones, or replying to PR review comments via CLI
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Use when creating GitHub issues, organizing milestones, or replying to PR review comments via CLI
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Drive a running Chrome tab via CDP — list tabs, navigate, snapshot ARIA, eval raw JS with $ref, wait, upload, screenshot. Use when automating a real browser the user can keep using alongside you.
Run a blocking, non-interactive Codex review of the working tree and return findings verbatim. Use when automation (ralph, work, pre-commit gates) needs a one-shot review without the interactive wait-vs-background prompt.
Use when autonomously processing a GitHub milestone, or when running in a loop to iterate through open issues
Use when picking up a GitHub issue to implement, or when asked to work on an issue by number
| name | gh-workflow |
| description | Use when creating GitHub issues, organizing milestones, or replying to PR review comments via CLI |
WHAT and WHY, never HOW.
Issues executed sequentially by number (ascending). Order matters.
gh api repos/{owner}/{repo}/milestones -f title="v0.1" -f description="..."
gh issue create --title "..." --body "..." --milestone "v0.1"
gh issue list --milestone "v0.1" --state open --json number,title --jq 'sort_by(.number)'
# Reply to inline review comment
gh api repos/{owner}/{repo}/pulls/<pr>/comments -f body="..." -F in_reply_to=<comment_id>
# List review comments to find IDs
gh api repos/{owner}/{repo}/pulls/<pr>/comments