| name | paper-rerun |
| description | Re-run a single step of the paper-review pipeline against an existing slug. Replaces the old paper-archive / paper-repolish skills. |
| argument-hint | <step-number> <slug> |
| allowed-tools | Read,Write,Bash,Glob,Grep,Agent,Skill |
/paper-review:rerun — Re-run one step
Usage:
/paper-review:rerun 7 majestic-book # re-polish (regenerate final.md from draft.md)
/paper-review:rerun 8 majestic-book # re-archive (move + update style + angles)
/paper-review:rerun 5 majestic-book # re-aggregate critiques.md
/paper-review:rerun 2 majestic-book # re-run literature.md (02-literature.md)
/paper-review:rerun 2b majestic-book # rewrite summary.md (02b-consensus.md)
How it works
- Read
.claude/skills/paper-review/<step>-*.md for the requested step (e.g. 2 → 02-literature.md, 2b → 02b-consensus.md, 7 → 07-polish.md). Match the step token exactly — 2 must not pick up 02b-*.
- Execute that step's playbook against
ongoing/<slug>/ (or archived/YYMMDD/<slug>/ if the slug is already archived — glob-match archived/*/<slug>/ to find it; in that case any new output is written next to the old with a .<timestamp> suffix, never overwriting the archive).
- Steps 7 and 8 are the common cases; steps 1–6 work too but should be rare.
Convenience aliases
| Old call | Now |
|---|
/paper-review:archive <slug> | /paper-review:rerun 8 <slug> |
/paper-review:repolish <slug> | /paper-review:rerun 7 <slug> |
Hard rules
- Reruns against
archived/YYMMDD/<slug>/ never overwrite the existing snapshot; suffix outputs with a timestamp.
- For step 7 specifically: enforce plain-text output (see
07-polish.md).
- For step 8: dedup + rolling caps still apply.