When to use
Invoke pipeline status when you need to:- Check which pipeline stages are complete and which are pending
- Verify that all expected artifacts exist for completed stages
- Identify stale stages that need re-execution
- Get a recommendation for what to do next
- Review recent change reports and cascade impact
Invocation
This is a read-only skill. It never modifies files or executes pipeline stages.
How it works
1. Read pipeline state
Readspipeline-state.json from your project root. If the file doesn’t exist, the skill reports “No pipeline initialized” and recommends running /sdd:setup.
2. Verify artifacts exist
For each stage marked asdone, verifies that expected output artifacts actually exist on disk:
| Stage | Expected artifacts |
|---|---|
| requirements-engineer | requirements/REQUIREMENTS.md |
| specifications-engineer | spec/ with domain-model.md, use-cases.md, workflows.md, contracts.md, nfr.md |
| spec-auditor | audits/AUDIT-BASELINE.md |
| test-planner | test/TEST-PLAN.md, test/TEST-MATRIX-*.md |
| plan-architect | plan/PLAN.md, plan/ARCHITECTURE.md, plan/fases/FASE-*.md |
| task-generator | task/TASK-FASE-*.md, task/TASK-INDEX.md |
| task-implementer | src/ and/or tests/ with implementation files |
done whose artifacts are missing is flagged as INCONSISTENT.
3. Detect staleness
Checks if anydone stage’s output directory has files newer than the lastRun timestamp of downstream stages. Flags those downstream stages as potentially stale.
4. Check for errors
Reports any stage withstatus: "error" and includes the staleReason if present.
5. Generate report
Outputs a formatted report with:- Pipeline status table: Shows each stage’s status, last run timestamp, artifact verification result, and notes
- Last change section: If
pipeline-state.jsonhas the extended schema withlastChange, displays the change report ID, changed artifacts, invalidated stages, and cascade mode - Recommended next action: Suggests which skill to run next based on the current state
- Warnings: Lists inconsistencies (missing artifacts, stale stages)
Example output
Readiness gates
No prerequisites. Works on any project directory (reports “No pipeline initialized” if needed).Constraints
- Read-only: Never modifies any files
- Reports facts only: Does not execute pipeline stages
- Graceful degradation: If
pipeline-state.jsonhas the extended schema, includes thelastChangesection; otherwise skips it
Related skills
Setup
Initialize pipeline state before first use
Dashboard
Visual traceability dashboard with pipeline status