/neuroflow:pipeline¶
Define and run a multi-step research pipeline across any sequence of neuroflow phases.
/pipeline lets you plan and execute a sequence of neuroflow commands in order โ either interactively (pauses for your approval between steps) or in brutal mode (--executor, runs straight through without stops).
When to use it¶
- You want to run several phases back-to-back without manually invoking each command
- You want a plan-first approach: see the full pipeline before executing any step
- You need to resume a pipeline that was interrupted mid-run
- You want automated end-to-end execution with error logging
Modes¶
Claude pauses between each step and asks for confirmation before proceeding. You can skip individual steps, adjust the plan, or stop at any point. Claude also asks you where you want to stop upfront, so you can run the pipeline in stages without having to interrupt it mid-run.
How it works¶
- Read project state โ Claude checks
flow.mdandproject_config.mdto understand which phases have been worked on - Draft a pipeline plan โ a
pipeline-plan.mdis written to.neuroflow/pipeline/listing all steps with status ([pending],[done],[skipped],[deferred]) - Choose your stop point โ Claude asks how far you want to go this session (a specific phase, or all the way through). Steps beyond the stop point are saved as
[deferred]and picked up next time. - Confirm before running โ in interactive mode, Claude shows the plan and waits for your go-ahead
- Execute steps in order โ each step follows the same lifecycle as running the command directly
- Resume gracefully โ if re-invoked on a project with an existing
pipeline-plan.md, Claude reads it and continues from where execution stopped, including any previously deferred steps
Stop-point selection¶
After confirming the plan, Claude presents your pending steps as numbered options:
How far would you like to run the pipeline?
1. Stop after ideation
2. Stop after experiment
3. Stop after data-analyze
4. All the way through โ paper
Pick a number (or type a custom stop point). Steps beyond your chosen point are marked [deferred] in the plan โ run /neuroflow:pipeline again to continue from where you left off.
If you choose all the way through from ideation to paper, expect a surprise. ๐
Files read and written¶
| Direction | Files |
|---|---|
| Reads | .neuroflow/project_config.md, .neuroflow/flow.md, .neuroflow/pipeline/pipeline-plan.md |
| Writes | .neuroflow/pipeline/pipeline-plan.md, .neuroflow/pipeline/flow.md, .neuroflow/sessions/YYYY-MM-DD.md, .neuroflow/reasoning/pipeline.json, phase subfolders (via the commands it invokes) |
Related commands¶
/phaseโ check or switch the active phase before planning a pipeline/neuroflowโ get a full project status overview/sentinelโ audit.neuroflow/for consistency after a full pipeline run