Research
Run a linear research loop with source validation.
Workflow
- Define research question and constraints.
- Gather primary sources.
- Summarize findings with citations, confidence, and explicit caveats where sources are incomplete or stale.
- Translate findings into actionable next steps.
- Decide gate result (
passorfail). - Write artifact to
.reports/codex/research/<timestamp>/result.json.
Output Contract
Use shared gate schema from ../_shared/quality-gates.md.
Minimum artifact payload:
{
"status": "pass|fail",
"checks_run": [
"review"
],
"checks_failed": [],
"findings": {
"critical": 0,
"high": 0,
"medium": 0,
"low": 0
},
"confidence": 0.0,
"artifact_path": ".reports/codex/research/<timestamp>/result.json"
}