一键导入
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