一键导入
speedrun
Run a sequence of pre-scoped tickets back-to-back, each in its own non-interactive Claude sub-session. Triggers on "/speedrun 41-46".
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Run a sequence of pre-scoped tickets back-to-back, each in its own non-interactive Claude sub-session. Triggers on "/speedrun 41-46".
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | speedrun |
| description | Run a sequence of pre-scoped tickets back-to-back, each in its own non-interactive Claude sub-session. Triggers on "/speedrun 41-46". |
| allowed-tools | Bash, Read, Edit |
Drive a sequence of pre-scoped, execution-ready tickets to completion, one after the next. You (the main agent) are the babysitter: set up branches, hand each ticket to a fresh non-interactive sub-session, wait for CI, and merge the result.
Core assumption: these tickets are already scoped and reviewed. This is an execution run, not design. If a ticket turns out to need real exploration, STOP and hand it back to the human.
git checkout -b feature/<slug> && git push -u origin feature/<slug>
Fetch the ticket and read its acceptance criteria:
linear issue view <id>
Branch off the latest feature branch:
git checkout feature/<slug> && git pull
git checkout -b ticket/<id>
Hand the ticket to a non-interactive sub-session. There are no special hooks here, so the prompt itself tells the sub-session to commit and open its own PR:
claude -p --dangerously-skip-permissions "$(cat <<PROMPT
Implement exactly this ticket, no more and no less:
<title, description, and acceptance criteria from Linear>
When the work is done and the project's typecheck and tests pass, commit your
changes, push branch ticket/<id>, and open a PR into feature/<slug>.
Follow CLAUDE.md conventions throughout.
PROMPT
)"
Watch CI, then merge into the feature branch:
gh pr checks <pr> --watch
gh pr merge <pr> --merge
If CI fails on something trivial (a missed import, a lint nit), fix it yourself on the branch and re-push. If it needs real debugging, STOP and hand back to the human.
Report which tickets merged and which are blocked. Do NOT merge the feature branch into main. That is the human's review gate.