ワンクリックで
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 ページを確認してインストールできます。
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
SOC 職業分類に基づく
| 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