Orchestrate Paper
The conductor. The author brings a technical idea, their experiments, and a
target — a venue, or "help me pick one." This skill sets the goal
("submission-ready for venue X by deadline D") and runs a
goal → plan → execute → verify → reflect loop across the whole lifecycle:
it plans which sub-skills run and in what order, invokes them, checkpoints
with the author at every stage gate, and uses external, measurable signals —
not its own say-so — to confirm each stage actually moved the paper forward
before going on.
It does not write the paper for the author and it never submits anything. It
coordinates the specialists (each of which is its own skill) and keeps a
durable, reviewable record in paper-workspace/ so the author can pause,
inspect, reject, and resume at any point.
This skill follows a few non-negotiable working principles at every checkpoint:
name assumptions, show competing readings, surface tradeoffs, stop when
confused, verify live, and keep the author the author.
When to use
- "Take my idea + results to a submission-ready paper for VENUE." / "Run the
whole pipeline." / "Be my copilot from idea to submission."
- "What's the plan from here?" / "What's done, what's next, what's blocking me?"
- Mid-cycle coordination: "I just got reviews back — what now?" or "we were
accepted; drive camera-ready + artifacts."
- The author has many skills available and wants one entry point that sequences
them instead of running ~20 by hand.
When NOT to use
- A single, well-scoped task ("polish this paragraph", "check my citations").
Call that one skill directly — the orchestration overhead isn't worth it.
- The author wants the text written for them with no review. That is not what
this is; it is a copilot, and the author authors.
Inputs
- The idea + experiments — what the paper claims and the evidence the
author already has. The orchestrator never invents results to fill gaps; a
missing experiment is surfaced as a blocker, not fabricated.
- The target — a venue+track, or
help me pick (routes through
select-venue first). Either way, the live CFP is re-verified, never trusted
from a cached profile.
- Whatever draft exists — from a blank idea to a near-final
.tex. The
plan adapts to the current state (see the state script below).
.paper-memory/ — positioning (profile.yml), accumulated
lessons.md, and decisions.md following the
paper-memory-convention.md
pattern. Read at start.
The loop
For the full stage → skill → exit-criterion → checkpoint-question table, read
references/pipeline-map.md. The loop per stage:
GOAL. State the goal in one sentence and the current target
(venue+track+deadline). If the target is unset, run select-venue, record
the choice in .paper-memory/decisions.md, and confirm with the author
before treating it as fixed (principle #1, #6).
PLAN. Produce a reviewable, up-front plan — which sub-skills will run,
in what order, and why — from the pipeline map, adapted to the draft's
current state. Plan-then-execute beats reactive step-by-step here: the author
gets a roadmap to approve. Show it; do not start executing a multi-stage plan
silently.
EXECUTE. Run the stage's sub-skill(s). Each writes its artifact to the
right paper-workspace/<stage>/ folder and appends to INDEX.md. The
orchestrator does not re-implement a specialist; it invokes it.
VERIFY — on external signals, never self-judgment. Confirm the stage met
its exit criterion using a measurable check, because a model's
self-reflection validates its own hallucinations (see
references/verification-signals.md).
Signals are concrete: latexmk/compile exit code, page count vs the live
venue limit, anonymization linter, a BibTeX entry resolving to a real DOI via
verify-citations, a claim tracing to a real result via verify-claims, the
reported numbers reproducing from the artifact via verify-results, a
checklist-presence grep, a script's pass/fail. If no external oracle exists
for a step (a judgment call), say so and escalate to the author rather than
letting the model grade itself.
REFLECT — did it measurably improve? Run reflect-and-improve against
the stage goal and the before/after measurable target. Accept the stage only
if the signal improved (or held while another did). Never accept a change
that lowers a measurable score. Respect stop conditions (below) so the loop
can't spin.
CHECKPOINT. Present at the stage gate: what was done, the tradeoffs, the
competing interpretations where they exist, and the one checkpoint question
from the pipeline map. Wait for author sign-off before the next stage.
This is the durable pause point — state is on disk, so the author can leave
and resume.
Run the state script at any time to see where things stand:
python3 scripts/pipeline_state.py status --workspace paper-workspace
It reads paper-workspace/INDEX.md (and an optional pipeline-state.json) and
prints what's done / what's next / blocked-on plus the current goal and the
pending checkpoint. Other subcommands: init, set-goal, next, advance,
block, checkpoint, and signoff (the author clears a raised checkpoint so
the loop can advance). Run python3 scripts/pipeline_state.py --help.
Worked example (one loop, end to end)
Author: "Take my idea + results to a submission-ready paper for NeurIPS 2026."
# GOAL — record the target and open the durable log
python3 scripts/pipeline_state.py init --workspace paper-workspace
python3 scripts/pipeline_state.py set-goal --workspace paper-workspace \
--goal "submission-ready for NeurIPS 2026 main track" \
--venue "NeurIPS 2026" --track main --deadline "2026-05-15 AoE"
Lock requirements first (hard stop). Before planning, run parse-cfp on the
live CFP — never the cached venues/conferences/neurips-2026.yml. Suppose it
returns a 9-page limit and double-blind review, each carrying a source URL + the
date fetched. Raise the checkpoint and wait:
python3 scripts/pipeline_state.py checkpoint --workspace paper-workspace \
--stage parse-cfp \
--question "9pp, double-blind, NeurIPS checklist required, AoE deadline — confirm before we build on these?"
The author confirms. Now PLAN: show the stage list from the pipeline map
adapted to the draft's state (a half-written .tex, no related work yet), get
approval, then EXECUTE one stage — say preflight-check. VERIFY on an
external signal, not the model's say-so: check_sections.py exits 0 and the
PDF is 9 pages against the 9-page live limit. REFLECT: the desk-reject count
went 2 → 0, an improvement, so accept. Record it and raise the next checkpoint:
python3 scripts/pipeline_state.py advance --workspace paper-workspace \
--stage preflight-check --signal "check_sections.py exit 0; 9pp <= 9 live limit; anonymizer clean"
python3 scripts/pipeline_state.py status --workspace paper-workspace # done / next / blocked
If a later stage exposes a gap — e.g. simulate-reviewers predicts R2 will ask
for an ablation the author doesn't have — that is a blocker, not something to
fabricate: block --stage simulate-reviewers --on "missing ablation R2 will ask for",
surface it, and let the author decide. Submission is never the orchestrator's
action: it hands over a ready package and stops.
Stop conditions (so the loop can't spin forever)
Configurable, but always present — the loop must terminate:
- Stage exit met — the measurable criterion in the pipeline map passes.
- Diminishing returns — a reflect pass improves the metric by less than a
small delta (e.g. prose-lint delta < N); stop polishing.
- Hard iteration cap — at most ~3 refine passes per stage, then escalate.
- Budget cap — stop and report when a token/time budget is hit.
- Escalate to author — when an unverified assumption gates the next step,
the request has more than one reading, or the model is genuinely confused
(principles #1, #2, #4). Escalation is a first-class outcome, not a failure.
Live verification is mandatory
Venue rules change every cycle and the model's memory of them is stale by
construction. Before any
stage relies on a deadline, page limit, blinding level, template, checklist, or
artifact-badge rule, re-fetch it from the live CFP via parse-cfp and prefer
that over any venues/conferences/*.yml cached profile. Every venue fact the
orchestrator carries into a checkpoint must keep its source URL and the date it
was fetched, so the author can click through and confirm. Overconfidence is
highest right after a fetch, so re-check the fetched fact against the
primary source before acting on it. Never hardcode a venue rule into this skill.
Output
- A running plan + per-stage artifacts under
paper-workspace/, each logged in
INDEX.md — the durable, reviewable record.
- A live what's-done / what's-next / blocked-on view from
pipeline_state.py.
- A short narrative at each checkpoint: done, tradeoffs, the decision the author
needs to make. Never a draft presented as finished-and-submitted.
Adapt to your discipline
The pipeline map includes common conference and journal rails. Fork it: reorder
stages for a journal (revise-and-resubmit instead of rebuttal), swap citation
norms, and adjust which checklists, ethics statements, data policies, or
artifact tracks apply in your field. Keep the stage gates; change what runs
inside them.
Guardrails
- Copilot, never pilot. It plans and coordinates; it never fabricates
results or citations, never claims acceptance or predicts a decision, and
never submits to any system on the author's behalf.
- Verify on external signals, not self-reflection. The completion signal is
always a compile/lint/DOI-resolve/checklist/human-sign-off — never the model
grading its own output (see
references/verification-signals.md).
- Stop at every stage gate. Author sign-off is required between stages; high-
stakes transitions (treating a CFP card as ground truth, sending a rebuttal,
camera-ready) are hard stops.
- Durable checkpoints. Persist each stage artifact +
INDEX.md before
advancing, so a pause/restart never re-runs prior skills (avoiding duplicate
API calls against the key-free search stack).
- Don't double-deadline. Track the artifact-evaluation / camera-ready track
as a separate post-acceptance deadline, not folded into the paper deadline.
- One file under 500 lines;
references/ one level deep; scripts stdlib-only
with --help and clean nonzero exits.
Memory
Uses the shared .paper-memory/ convention described by
paper-memory-convention.md.
- At start: read
profile.yml (positioning), lessons.md (recurring
habits to watch for across stages), and decisions.md (prior venue/track
choices) so the plan is personalized and consistent with earlier decisions.
- At end of each stage: append a dated entry via
reflect-and-improve/scripts/reflect_log.py —
date · orchestrate-paper · stage advanced / blocked, on what signal — and
log any venue/track decision to decisions.md.
- Create
.paper-memory/ on demand; offer to add it to .gitignore; local
only, never uploaded.
1---2name: orchestrate-paper3description: Goal-driven conductor for the whole idea-to-published-paper lifecycle. Takes a research idea plus experiments and a target ("submit to NeurIPS 2026", or "help me pick a venue") and runs a goal->plan->execute->verify->reflect loop. It plans the stages, invokes the right lifecycle skills in order (literature-review, write-abstract, preflight-check, simulate-reviewers, and the rest), checkpoints with the author before each stage, and re-verifies the live CFP via parse-cfp rather than trusting a cached profile. Use when a researcher says "take my idea to a submitted paper", "run the whole pipeline", "orchestrate the paper for venue X", "what's the plan from here", or "what's done and what's next". Copilot, not autonomous author. It stops to ask at every stage gate, never fabricates results or citations, and never submits. Trigger words - orchestrate, pipeline, end to end, whole paper, idea to submission.4---56# Orchestrate Paper78The **conductor**. The author brings a technical idea, their experiments, and a9target — a venue, or "help me pick one." This skill sets the **goal**10("submission-ready for venue X by deadline D") and runs a11**goal → plan → execute → verify → reflect** loop across the whole lifecycle:12it plans which sub-skills run and in what order, invokes them, **checkpoints13with the author at every stage gate**, and uses external, measurable signals —14not its own say-so — to confirm each stage actually moved the paper forward15before going on.1617It does not write the paper *for* the author and it never submits anything. It18**coordinates the specialists** (each of which is its own skill) and keeps a19durable, reviewable record in `paper-workspace/` so the author can pause,20inspect, reject, and resume at any point.2122This skill follows a few non-negotiable working principles at every checkpoint:23name assumptions, show competing readings, surface tradeoffs, stop when24confused, verify live, and keep the author the author.2526## When to use2728- "Take my idea + results to a submission-ready paper for VENUE." / "Run the29 whole pipeline." / "Be my copilot from idea to submission."30- "What's the plan from here?" / "What's done, what's next, what's blocking me?"31- Mid-cycle coordination: "I just got reviews back — what now?" or "we were32 accepted; drive camera-ready + artifacts."33- The author has many skills available and wants one entry point that sequences34 them instead of running ~20 by hand.3536## When NOT to use3738- A single, well-scoped task ("polish this paragraph", "check my citations").39 Call that one skill directly — the orchestration overhead isn't worth it.40- The author wants the *text written for them* with no review. That is not what41 this is; it is a copilot, and the author authors.4243## Inputs44451. **The idea + experiments** — what the paper claims and the evidence the46 author already has. The orchestrator never invents results to fill gaps; a47 missing experiment is surfaced as a blocker, not fabricated.482. **The target** — a venue+track, or `help me pick` (routes through49 `select-venue` first). Either way, the live CFP is re-verified, never trusted50 from a cached profile.513. **Whatever draft exists** — from a blank idea to a near-final `.tex`. The52 plan adapts to the current state (see the state script below).534. **`.paper-memory/`** — positioning (`profile.yml`), accumulated54 `lessons.md`, and `decisions.md` following the55 [`paper-memory-convention.md`](../paper-profile/references/paper-memory-convention.md)56 pattern. Read at start.5758## The loop5960For the full stage → skill → exit-criterion → checkpoint-question table, read61[`references/pipeline-map.md`](references/pipeline-map.md). The loop per stage:62631. **GOAL.** State the goal in one sentence and the current target64 (venue+track+deadline). If the target is unset, run `select-venue`, record65 the choice in `.paper-memory/decisions.md`, and confirm with the author66 before treating it as fixed (principle #1, #6).67682. **PLAN.** Produce a reviewable, up-front plan — *which* sub-skills will run,69 in *what* order, and why — from the pipeline map, adapted to the draft's70 current state. Plan-then-execute beats reactive step-by-step here: the author71 gets a roadmap to approve. Show it; do not start executing a multi-stage plan72 silently.73743. **EXECUTE.** Run the stage's sub-skill(s). Each writes its artifact to the75 right `paper-workspace/<stage>/` folder and appends to `INDEX.md`. The76 orchestrator does not re-implement a specialist; it invokes it.77784. **VERIFY — on external signals, never self-judgment.** Confirm the stage met79 its exit criterion using a *measurable* check, because a model's80 self-reflection validates its own hallucinations (see81 [`references/verification-signals.md`](references/verification-signals.md)).82 Signals are concrete: `latexmk`/compile exit code, page count vs the live83 venue limit, anonymization linter, a BibTeX entry resolving to a real DOI via84 `verify-citations`, a claim tracing to a real result via `verify-claims`, the85 reported numbers reproducing from the artifact via `verify-results`, a86 checklist-presence grep, a script's pass/fail. If no external oracle exists87 for a step (a judgment call), say so and escalate to the author rather than88 letting the model grade itself.89905. **REFLECT — did it measurably improve?** Run `reflect-and-improve` against91 the stage goal and the before/after measurable target. Accept the stage only92 if the signal improved (or held while another did). **Never** accept a change93 that lowers a measurable score. Respect stop conditions (below) so the loop94 can't spin.95966. **CHECKPOINT.** Present at the stage gate: what was done, the tradeoffs, the97 competing interpretations where they exist, and the one checkpoint question98 from the pipeline map. **Wait for author sign-off** before the next stage.99 This is the durable pause point — state is on disk, so the author can leave100 and resume.101102Run the state script at any time to see where things stand:103104```105python3 scripts/pipeline_state.py status --workspace paper-workspace106```107108It reads `paper-workspace/INDEX.md` (and an optional `pipeline-state.json`) and109prints **what's done / what's next / blocked-on** plus the current goal and the110pending checkpoint. Other subcommands: `init`, `set-goal`, `next`, `advance`,111`block`, `checkpoint`, and `signoff` (the author clears a raised checkpoint so112the loop can advance). Run `python3 scripts/pipeline_state.py --help`.113114## Worked example (one loop, end to end)115116Author: *"Take my idea + results to a submission-ready paper for NeurIPS 2026."*117118```119# GOAL — record the target and open the durable log120python3 scripts/pipeline_state.py init --workspace paper-workspace121python3 scripts/pipeline_state.py set-goal --workspace paper-workspace \122 --goal "submission-ready for NeurIPS 2026 main track" \123 --venue "NeurIPS 2026" --track main --deadline "2026-05-15 AoE"124```125126**Lock requirements first (hard stop).** Before planning, run `parse-cfp` on the127live CFP — never the cached `venues/conferences/neurips-2026.yml`. Suppose it128returns a 9-page limit and double-blind review, each carrying a source URL + the129date fetched. Raise the checkpoint and wait:130131```132python3 scripts/pipeline_state.py checkpoint --workspace paper-workspace \133 --stage parse-cfp \134 --question "9pp, double-blind, NeurIPS checklist required, AoE deadline — confirm before we build on these?"135```136137The author confirms. Now **PLAN**: show the stage list from the pipeline map138adapted to the draft's state (a half-written `.tex`, no related work yet), get139approval, then **EXECUTE** one stage — say `preflight-check`. **VERIFY on an140external signal**, not the model's say-so: `check_sections.py` exits 0 and the141PDF is 9 pages against the 9-page live limit. **REFLECT**: the desk-reject count142went 2 → 0, an improvement, so accept. Record it and raise the next checkpoint:143144```145python3 scripts/pipeline_state.py advance --workspace paper-workspace \146 --stage preflight-check --signal "check_sections.py exit 0; 9pp <= 9 live limit; anonymizer clean"147python3 scripts/pipeline_state.py status --workspace paper-workspace # done / next / blocked148```149150If a later stage exposes a gap — e.g. `simulate-reviewers` predicts R2 will ask151for an ablation the author doesn't have — that is a **blocker, not something to152fabricate**: `block --stage simulate-reviewers --on "missing ablation R2 will ask for"`,153surface it, and let the author decide. Submission is never the orchestrator's154action: it hands over a ready package and stops.155156## Stop conditions (so the loop can't spin forever)157158Configurable, but always present — the loop must terminate:159160- **Stage exit met** — the measurable criterion in the pipeline map passes.161- **Diminishing returns** — a reflect pass improves the metric by less than a162 small delta (e.g. prose-lint delta < N); stop polishing.163- **Hard iteration cap** — at most ~3 refine passes per stage, then escalate.164- **Budget cap** — stop and report when a token/time budget is hit.165- **Escalate to author** — when an unverified assumption gates the next step,166 the request has more than one reading, or the model is genuinely confused167 (principles #1, #2, #4). Escalation is a first-class outcome, not a failure.168169## Live verification is mandatory170171Venue rules change every cycle and the model's memory of them is stale by172construction. Before any173stage relies on a deadline, page limit, blinding level, template, checklist, or174artifact-badge rule, re-fetch it from the live CFP via `parse-cfp` and prefer175that over any `venues/conferences/*.yml` cached profile. Every venue fact the176orchestrator carries into a checkpoint must keep its source URL and the date it177was fetched, so the author can click through and confirm. Overconfidence is178**highest right after** a fetch, so re-check the fetched fact against the179primary source before acting on it. Never hardcode a venue rule into this skill.180181## Output182183- A running plan + per-stage artifacts under `paper-workspace/`, each logged in184 `INDEX.md` — the durable, reviewable record.185- A live **what's-done / what's-next / blocked-on** view from186 `pipeline_state.py`.187- A short narrative at each checkpoint: done, tradeoffs, the decision the author188 needs to make. Never a draft presented as finished-and-submitted.189190## Adapt to your discipline191192The pipeline map includes common conference and journal rails. Fork it: reorder193stages for a journal (revise-and-resubmit instead of rebuttal), swap citation194norms, and adjust which checklists, ethics statements, data policies, or195artifact tracks apply in your field. Keep the stage gates; change what runs196inside them.197198## Guardrails199200- **Copilot, never pilot.** It plans and coordinates; it never fabricates201 results or citations, never claims acceptance or predicts a decision, and202 **never submits** to any system on the author's behalf.203- **Verify on external signals, not self-reflection.** The completion signal is204 always a compile/lint/DOI-resolve/checklist/human-sign-off — never the model205 grading its own output (see `references/verification-signals.md`).206- **Stop at every stage gate.** Author sign-off is required between stages; high-207 stakes transitions (treating a CFP card as ground truth, sending a rebuttal,208 camera-ready) are hard stops.209- **Durable checkpoints.** Persist each stage artifact + `INDEX.md` before210 advancing, so a pause/restart never re-runs prior skills (avoiding duplicate211 API calls against the key-free search stack).212- **Don't double-deadline.** Track the artifact-evaluation / camera-ready track213 as a *separate* post-acceptance deadline, not folded into the paper deadline.214- One file under 500 lines; `references/` one level deep; scripts stdlib-only215 with `--help` and clean nonzero exits.216217## Memory218219Uses the shared `.paper-memory/` convention described by220[`paper-memory-convention.md`](../paper-profile/references/paper-memory-convention.md).221222- **At start:** read `profile.yml` (positioning), `lessons.md` (recurring223 habits to watch for across stages), and `decisions.md` (prior venue/track224 choices) so the plan is personalized and consistent with earlier decisions.225- **At end of each stage:** append a dated entry via226 `reflect-and-improve/scripts/reflect_log.py` —227 `date · orchestrate-paper · stage advanced / blocked, on what signal` — and228 log any venue/track decision to `decisions.md`.229- Create `.paper-memory/` on demand; offer to add it to `.gitignore`; local230 only, never uploaded.