Task Recipes
Use this page when you know your real-world goal, but you do not yet know which stages, Task IDs, or skills to lean on.
This page is intentionally task-first:
- start from the job you need done
- map it to stages and Task IDs
- understand which skills are typically involved
- choose the smallest route that still gives you defensible outputs
If you want the full stage-by-stage map, use Skills Guide. If you want paper-type defaults such as "systematic review" or "methods paper," use Examples.
How To Use This Page
For each scenario below, read it in this order:
- When to use
- Minimal route
- Deeper route
- Typical skills
- Typical outputs
Do not assume you must run every stage. The best workflow is usually the narrowest route that still satisfies your paper type and evidence needs.
1. I Need To Turn A Broad Topic Into A Researchable Question
When to use
Use this when the topic is still fuzzy, the contribution is not yet clear, or the venue target is still moving.
Minimal route
A1: refine the question and define scopeA4: identify the strongest gap
Deeper route
A1A1_5: generate hypotheses or propositionsA2/A3: build theory and positioningA5: check venue fit
Typical skills
question-refinerhypothesis-generatortheory-mappergap-analyzervenue-analyzer
Typical outputs
- refined research question set
- contribution framing
- theory map
- prioritized gap memo
- venue-fit constraints
Good first command
python3 -m bridges.orchestrator task-plan \
--task-id A1 \
--paper-type empirical \
--topic ai-in-education \
--cwd .2. I Need A Defensible Related-Work Or Systematic Review Base
When to use
Use this when the main bottleneck is corpus quality, screening discipline, extraction consistency, or PRISMA-style transparency.
Minimal route
B1_5: concept and keyword expansionB2: focused paper reading / extractionB3: literature mapping
Deeper route
B1: full searchB1_5B2B3B4/B5: citation expansion and/or synthesis supportG1: PRISMA check before submission
Typical skills
academic-searcherconcept-extractorpaper-screenerpaper-extractorcitation-snowballerliterature-mapperprisma-checker
Typical outputs
- search log
- screening log
- extraction table
- literature map
- PRISMA-ready counts and compliance memo
Good first command
python3 -m bridges.orchestrator task-run \
--task-id B2 \
--paper-type systematic-review \
--topic ai-in-education \
--cwd . \
--research-depth deep3. I Need To Design An Empirical Study Before Writing Or Coding
When to use
Use this when your question is already stable, but the design, variables, robustness plan, or dataset path is still weak.
Minimal route
C1: main designC2orC3: variables / data feasibility
Deeper route
C1C1_5/C2: rival explanations and variable logicC3: dataset feasibilityC3_5/C4: robustness and data managementC5: prereg-style handoff
Typical skills
study-designerrival-hypothesis-designerdataset-findervariable-constructorrobustness-planner
Typical outputs
- design spec
- analysis plan
- variable specification
- dataset plan
- robustness plan
Good first command
python3 -m bridges.orchestrator task-run \
--task-id C1 \
--paper-type empirical \
--topic ai-in-education \
--cwd .4. I Need To Turn Results Into A Manuscript
When to use
Use this when the analysis exists, but the problem is story structure, tables, figures, interpretation, or abstract/title quality.
Minimal route
F1: outline or manuscript architectureF2: paragraph- or section-level writing
Deeper route
F1F2F3: full manuscript draftingF4: tables/figures/results interpretation supportF5/F6: abstract, title, keyword, and final polishing support
Typical skills
manuscript-architectanalysis-interpretereffect-size-interpretertable-generatorfigure-specifiermeta-optimizer
Typical outputs
- manuscript outline
- section drafts
- result narratives with uncertainty preserved
- paper-ready tables and figure specifications
- optimized title/abstract/keywords
Good first command
python3 -m bridges.orchestrator task-run \
--task-id F3 \
--paper-type empirical \
--topic ai-in-education \
--cwd . \
--focus-output manuscript/manuscript.md \
--output-budget 25. I Need Academic Code, Not Generic Product Engineering
When to use
Use this when the work is a methods paper, empirical pipeline, reproducibility package, or statistics-heavy implementation.
Minimal route
I5: specificationI6: zero-decision plan
This is the right choice when you are still locking constraints before writing code.
Deeper route
I5I6I7: implementation and profilingI8: code/statistical reviewI4: reproducibility audit
Typical skills
code-specificationcode-planningcode-executioncode-reviewreproducibility-auditorstats-engine
Typical outputs
code/code_specification.mdcode/plan.mdcode/performance_profile.mdcode/code_review.mdcode/reproducibility_audit.md
Good first command
python3 -m bridges.orchestrator code-build \
--method "Staggered DID" \
--topic policy-effects \
--domain economics \
--focus full \
--paper-type methods \
--cwd .If outputs are too broad
Use:
--only-targetfor selective rerun--research-depth deepwhen reasoning is too shallow--focus-outputand--output-budgetwhen artifact spread is too wide
6. I Need To Stress-Test, Rebut, Or Package For Submission
When to use
Use this when the manuscript is near completion, already under review, or needs a pre-submission harsh check.
Minimal route
H1: submission packageH2: rebuttal support
Deeper route
G1/G2: reporting and PRISMA checksG4: tone cleanupH1H2H3: peer-review simulationH4: fatal-flaw scan
Typical skills
submission-packagerrebuttal-assistantpeer-review-simulationfatal-flaw-detectorreviewer-empathy-checkerreporting-checker
Typical outputs
- cover letter and submission bundle
- point-by-point rebuttal matrix
- simulated reviewer report
- fatal-flaw memo
- response-tone adjustment log
Good first command
python3 -m bridges.orchestrator task-run \
--task-id H3 \
--paper-type empirical \
--topic ai-in-education \
--cwd . \
--triad7. I Only Need A Narrow Follow-Up, Not A Full Rerun
When to use
Use this when you already have Stage-I artifacts and only need to rerun a few plan steps or fix a small set of review findings.
Typical route
task-run --only-target <target>code-build --only-target I6:S1code-build --only-target I8:P1-01
Good examples
python3 -m bridges.orchestrator task-run \
--task-id I6 \
--paper-type methods \
--topic policy-effects \
--cwd . \
--only-target S1python3 -m bridges.orchestrator code-build \
--method "Staggered DID" \
--topic policy-effects \
--domain economics \
--focus full \
--only-target I8:P1-01 \
--cwd .Which Page Should You Use Next?
- Need the global map of stages and skills: Skills Guide
- Need paper-type defaults: Paper Type Playbooks
- Need exact command flags: CLI Reference
- Need collaboration/runtime details: Agent + Skill Collaboration
- Need installation or upgrade help: Guide Home