Displays a live snapshot of the current research project without changing any state. Safe to run at any time.
How this skill is triggered — by the user, by Claude, or both
Slash command
/airesearchorchestrator:statusThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Displays a live snapshot of the current research project without changing any state. Safe to run at any time.
Displays a live snapshot of the current research project without changing any state. Safe to run at any time.
/reload/status
│
├─→ 1. Locate project root
│ └─→ Find .autoresearch/ directory
│
├─→ 2. Read current state
│ ├─→ status.json
│ ├─→ research-state.yaml
│ └─→ phase deliverables
│
├─→ 3. Calculate gate scores
│ ├─→ Evidence completeness
│ ├─→ Review readiness
│ └─→ Human gate status
│
├─→ 4. Identify blockers
│ └─→ Missing deliverables, pending reviews
│
└─→ 5. Output status report
├─→ Phase progress
├─→ Gate scores
├─→ Blockers
└─→ Next actions
# Standard status snapshot
python3 scripts/run_status.py --project-root /abs/path/to/project
# Verbose (includes deliverable lists)
python3 scripts/run_status.py --project-root /abs/path/to/project --verbose
# JSON output (for scripting)
python3 scripts/run_status.py --project-root /abs/path/to/project --json
## Research Project Status
**Phase:** Pilot | **Gate:** gate_2 | **Loops:** 1/3
**Progress:** Survey → [Pilot] → Experiments → Paper → Reflection
### Gate Scores
Evidence completeness : 40%
Review readiness : 0%
Human gate : 0%
**Decision:** 🔄 Revise — complete missing work before advancing
### Blockers
• Required deliverables are missing
• Phase review status: pending
### Next Actions
1. Complete pilot experiment design
2. Request Adviser review
3. Await Gate 2 human approval
| Evidence | Review | Human Gate | Decision |
|---|---|---|---|
| 100% | 100% | 100% | ✅ Advance |
| 100% | 100% | 0% | 🔄 Revise (awaiting your approval) |
| < 100% | any | any | 🔄 Revise (deliverables incomplete) |
| any | pivot | any | ⚠️ Pivot |
| any | any | any (loop maxed) | 🔔 Escalate |
npx claudepluginhub jacazjx/ai-research-orchestrator --plugin airesearchorchestratorDisplays Plan-Build-Run project status dashboard, progress, blockers from .planning files, and suggests next actions.
Displays project status, roadmap progress, blockers, and next-action suggestions based on workflow state. Use for progress checks and orientation.