hypothesis-review-pipelinelisted
Install: claude install-skill panjose/Co-Scientist
# hypothesis-review-pipeline
Goal:
- Run the decomposed review pipeline for a single hypothesis and persist each review stage as a structured artifact.
Inputs:
- `ResearchPlan`
- `MetaReview`
- `Hypothesis`
- optional resume context from `state/PIPELINE_STATE.json`
Outputs:
- `hypotheses/<id>/REVIEW/INITIAL_REVIEW.json`
- `hypotheses/<id>/REVIEW/FULL_REVIEW.json`
- `hypotheses/<id>/REVIEW/DEEP_VERIFICATION.json`
- `hypotheses/<id>/REVIEW/OBSERVATION_REVIEW.json`
- `hypotheses/<id>/REVIEW/SIMULATION_REVIEW.json`
- `hypotheses/<id>/REVIEW/REVIEW_SUMMARY.json`
- `literature/queries/<query_id>/*` when full review or deep verification needs external literature evidence
- updated `hypotheses/<id>/HYPOTHESIS.json`
- updated `state/PIPELINE_STATE.json`
- updated `state/CURRENT_STAGE.json`
Sub-skills:
- `hypothesis-initial-review`
- `literature-search`
- `hypothesis-full-review`
- `hypothesis-deep-verification`
- `hypothesis-observation-review`
- `hypothesis-simulation-review`
- `hypothesis-review-summary`
Context Loading:
- Open `skills/shared-references/schema-index.md`.
- Read `packages/agent_contracts/review.py` before writing any per-stage review artifact under `hypotheses/<id>/REVIEW/`.
- Read `packages/agent_contracts/hypothesis.py` before updating the embedded review payload inside `hypotheses/<id>/HYPOTHESIS.json`.
- Read `packages/agent_contracts/literature.py` and `skills/shared-references/literature-search-contract.md` before dispatching `hypothesis-full-review`