一键导入
work
Use when picking up a GitHub issue to implement, or when asked to work on an issue by number
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Use when picking up a GitHub issue to implement, or when asked to work on an issue by number
用 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 creating GitHub issues, organizing milestones, or replying to PR review comments via CLI
基于 SOC 职业分类
| name | work |
| description | Use when picking up a GitHub issue to implement, or when asked to work on an issue by number |
| argument-hint | [issue-number] |
| allowed-tools | Bash, Read, Write, Edit, Grep, Glob, Task, Skill, AskUserQuestion |
Issue -> branch -> implement -> review -> PR. Minimal user interaction.
Branch: !git branch --show-current Uncommitted changes: !git status --porcelain
$ARGUMENTS
Pre-flight:
main branch (ask if not)If no issue in $ARGUMENTS, list open issues and let user pick:
gh issue list --state open --json number,title,labels --limit 20
Read issue including comments (earlier work leaves context):
gh issue view <number> --comments
Create branch: <number>-<short-kebab-description>
TDD (RED-GREEN-REFACTOR) for logic. Skip for types/config/wiring.
Validate frequently: deno task ci
Do NOT commit until after review.
deno task ci
git add .
Invoke the codex-review skill (Skill tool, skill=codex-review). It blocks, runs a Codex review
of the working tree, and prints findings verbatim. Each review is a paid Codex call — never re-run
on an unchanged tree and cap at 2 paid reviews per issue.
superpowers:receiving-code-review skill (Skill tool,
skill=superpowers:receiving-code-review). Verify each finding against the code before acting,
and push back with technical reasoning when a finding is wrong. Do not reflexively fix every
finding — external reviewers lack full context and some findings will be wrong.deno task ci and re-review once more (max 2 paid reviews per
issue). After the 2nd review: apply what you still agree with, proceed — no further reviews.If implementation blocks on a non-trivial bug or design question, delegate to the
codex:codex-rescue subagent (Agent tool, subagent_type=codex:codex-rescue) rather than spinning.
Rescue is not a replacement for review — use it only when actually blocked.
Commit:
git add .
git commit -m "$(cat <<'EOF'
<issue-title>
<brief description>
Closes #<number>
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
EOF
)"
deno task ci
Create PR:
git push -u origin <branch>
gh pr create --title "<title>" --body "$(cat <<'EOF'
## Summary
<2-3 bullets>
Closes #<number>
## Test Plan
- [ ] `deno task ci` passes
- [ ] Codex review passed
Generated with [Claude Code](https://claude.com/claude-code)
EOF
)"
Comment on issue with PR URL, then ask user: merge / leave / keep working.
Merge:
gh pr merge <pr> --squash --delete-branch
git checkout main && git pull origin main