Display the current VCSDD pipeline status for the active (or specified) feature. Shows phase, mode, sprint count, open findings, pending proofs, and the traceability summary.
Scanned 6/1/2026
Install via CLI
openskills install sc30gsw/vcsdd-claude-code---
name: vcsdd-status
description: Display the current VCSDD pipeline status for the active (or specified) feature. Shows phase, mode, sprint count, open findings, pending proofs, and the traceability summary.
---
## What
Displays a comprehensive status view of the active VCSDD feature pipeline.
## When
Run at any time to check pipeline state. No phase restrictions.
## How
1. **Read index.json**: list all features with status
2. **Read active feature state.json**: full pipeline state
3. **Display status panel**:
```
================================================
VCSDD Status: my-feature
================================================
Phase: 2b (Implementation - Green)
Mode: strict
Sprint: 1
Iteration: 2 (of 5 max for this phase)
Gates:
1a -> 1b -> 1c (PASS) -> 2a -> 2b
Open Findings: 0
Pending Proofs: 2 (PROP-001, PROP-002)
Traceability:
12 spec requirements
12 test cases (10 green, 2 red)
8 implementations
Coherence (CEG):
Nodes: 6 Edges: 8
Green: 5 Amber: 2 Gray: 1
Cycles: none
Next: Run /vcsdd-adversary (Phase 3)
================================================
```
4. **Coherence section** (when `coherence.json` exists):
- Load CEG with `loadCoherence(featureName)` from `vcsdd-coherence.js`
- Call `summarize(ceg)` to get node/edge counts and Green/Amber/Gray band distribution
- Display the Coherence block; if cycles are present show `⚠ CYCLES DETECTED` in red
## Examples
```bash
/vcsdd-status
/vcsdd-status --all-features # show all features, not just active
/vcsdd-status --json # machine-readable output
```
No comments yet. Be the first to comment!