Show agent pipeline execution status for current session
/plugin marketplace add akaszubski/autonomous-dev/plugin install autonomous-dev@autonomous-devDisplay which agents have run in the current session and verify pipeline completeness.
Shows:
This helps you:
Reads the structured pipeline log file for today:
docs/sessions/{date}-{time}-pipeline.jsonJust run the command:
/pipeline-status
📊 Agent Pipeline Status (20251103-143022)
Session started: 2025-11-03T14:30:22
Session file: 20251103-143022-pipeline.json
✅ researcher COMPLETE 14:35:10 (285s) - Found 3 JWT patterns (tools: WebSearch, Grep, Read)
✅ planner COMPLETE 14:40:25 (315s) - Created implementation plan (tools: Read)
✅ test-master COMPLETE 14:45:40 (195s) - Wrote 12 tests (all failing) (tools: Write, Bash)
✅ implementer COMPLETE 14:52:15 (395s) - Implemented JWT auth (tools: Edit, Write, Bash)
✅ reviewer COMPLETE 14:54:30 (135s) - Quality approved (tools: Read, Grep)
✅ security-auditor COMPLETE 14:56:10 (100s) - No security issues found (tools: Grep, Bash)
✅ doc-master COMPLETE 14:57:30 (80s) - Updated README and API docs (tools: Edit)
======================================================================
Pipeline: COMPLETE ✅
Total duration: 25m 25s
📊 Agent Pipeline Status (20251103-103022)
Session started: 2025-11-03T10:30:22
Session file: 20251103-103022-pipeline.json
✅ researcher COMPLETE 10:32:15 (115s) - Research findings saved
⏳ planner RUNNING 10:34:20 - Planning architecture...
======================================================================
Pipeline: INCOMPLETE ⚠️ Missing: test-master, implementer, reviewer, security-auditor, doc-master
Total duration: 4m 58s
If no pipeline file exists for today:
📊 Agent Pipeline Status
No pipeline file found for today.
This usually means:
- Agents haven't been invoked yet today
- Feature work was done manually (without /auto-implement)
- Session log directory doesn't exist
To create pipeline logs:
1. Use /auto-implement for feature work
2. Agents will automatically log to docs/sessions/
3. Run /pipeline-status to verify execution
This command simply wraps the agent_tracker.py script:
# Show pipeline status
python plugins/autonomous-dev/scripts/agent_tracker.py status
The script:
The pipeline status is automatically tracked during /auto-implement:
/pipeline-status shows current state{
"session_id": "20251103-143022",
"started": "2025-11-03T14:30:22",
"agents": [
{
"agent": "researcher",
"status": "completed",
"started_at": "2025-11-03T14:30:25",
"completed_at": "2025-11-03T14:35:10",
"duration_seconds": 285,
"message": "Found 3 JWT patterns",
"tools_used": ["WebSearch", "Grep", "Read"]
},
{
"agent": "planner",
"status": "completed",
"started_at": "2025-11-03T14:35:15",
"completed_at": "2025-11-03T14:40:25",
"duration_seconds": 310,
"message": "Created implementation plan",
"tools_used": ["Read"]
}
]
}
Cause: Agents haven't been invoked, or manual implementation was used
Solution:
/auto-implement for feature workCause: Agent invocation failed or was interrupted
Solution:
/auto-implement to complete workflowCause: Tool extraction is best-effort from agent output
Solution:
/auto-implement - Invoke orchestrator (creates pipeline logs)/status - Show PROJECT.md goal progress/health-check - Validate all plugin componentsThis command provides visibility into the autonomous development pipeline, ensuring all SDLC steps were completed.