From orchestrator
Displays orchestrator status dashboard with project progress bar and counts, phases, running tasks, blockers, recent activity, tech stack, checkpoints, and commands.
npx claudepluginhub devsforge/orchestrator --plugin orchestrator# Orchestrator: Status Display the current project status from the orchestrator state. ## Instructions 1. Read the state file at `.claude/orchestrator/state/project.json` 2. If it doesn't exist, inform the user to run `/orchestrator:start` first 3. Display a comprehensive status dashboard ## Status Dashboard Format ## State File Schema The state file contains: ## Error Handling - If state file doesn't exist: Show message to run `/orchestrator:start` - If state file is corrupted: Suggest rollback to last checkpoint - If no tasks: Show planning phase status
/statusDisplay Conductor project status including overall progress, active tracks summary, and next actions. Optional [track-id] [--detailed] for per-track task details and blockers.
/statusDisplays compact planning status from task_plan.md: current phase and progress, phase list with icons, error count, and planning file checks.
/statusShows active and recent Codex jobs for this repository in a compact Markdown table, including review-gate status. Pass job ID for full details; supports --wait, --timeout-ms, --all.
/statusDisplays current design system state from .interface-design/system.md including direction, foundation, depth, tokens, patterns, and last updated time. Suggests setup options if no system found.
/statusDisplays status of tasks in the orchestration system, including summaries, distributions, detailed views, timelines, and velocity reports with filters for date, status, agent, priority, and type.
/statusDisplays status of tasks in the orchestration system, including summaries, distributions, detailed views, timelines, and velocity reports with filters for date, status, agent, priority, and type.
Display the current project status from the orchestrator state.
.claude/orchestrator/state/project.json/orchestrator:start first╔═══════════════════════════════════════════════════════════════╗
║ ORCHESTRATOR STATUS ║
╠═══════════════════════════════════════════════════════════════╣
║ Project: [name] ║
║ Phase: [phase] ║
╚═══════════════════════════════════════════════════════════════╝
## Progress
[████████████░░░░░░░░] 60% (24/40 tasks)
| Status | Count |
|-------------|-------|
| ✓ Completed | 24 |
| → In Progress | 2 |
| ⚠ Blocked | 1 |
| ○ Pending | 13 |
## Current Phase: [implementation]
Phases:
✓ Ideation [complete]
✓ Specification [complete]
✓ Architecture [complete]
✓ Planning [complete]
→ Implementation [in_progress]
○ Testing [pending]
○ Deployment [pending]
## Currently Running
| Task | Agent | Started | Attempt |
|------|-------|---------|---------|
| TASK-025 | frontend-dev | 5m ago | 1 |
| TASK-026 | backend-dev | 3m ago | 1 |
## Blockers
⚠ TASK-019: External API not responding (3 attempts)
Since: 2h ago
Reason: Network timeout
## Recent Activity
- 10:45 ✓ TASK-024 completed (frontend-dev)
- 10:42 ✓ TASK-023 completed (backend-dev)
- 10:38 ✓ TASK-022 completed (test-engineer)
- 10:35 ✓ TASK-021 completed (frontend-dev)
- 10:30 🔖 Checkpoint CP-004 created
## Tech Stack
| Layer | Technology |
|----------|-------------------------|
| Frontend | React 19, TypeScript |
| Backend | Node.js, Hono |
| Database | PostgreSQL, Drizzle |
| Testing | Vitest, Playwright |
## Checkpoints
| ID | Time | Tasks | Commit |
|--------|---------|-------|---------|
| CP-004 | 10:30 | 20 | abc123 |
| CP-003 | 09:45 | 15 | def456 |
| CP-002 | 09:00 | 10 | ghi789 |
## Commands
- `/orchestrator:continue` - Resume autonomous development
- `/orchestrator:tasks` - View all tasks
- `/orchestrator:pause` - Pause after current task
- `/orchestrator:rollback CP-003` - Rollback to checkpoint
The state file contains:
{
"project": { "name": "...", "description": "..." },
"phase": "implementation",
"phases": { ... },
"techStack": { ... },
"tasks": [ ... ],
"currentTasks": [ ... ],
"progress": {
"total": 40,
"completed": 24,
"inProgress": 2,
"blocked": 1,
"percentage": 60
},
"blockers": [ ... ],
"checkpoints": [ ... ],
"history": [ ... ]
}
/orchestrator:start