skills/vcsdd-converge/SKILL.md
--- name: vcsdd-converge description: Run Phase 6 (convergence check) for the active VCSDD feature. Validates four-dimensional convergence: finding diminishment, finding specificity, criteria coverage, and duplicate detection. --- ## What Runs the convergence check (Phase 6). Validates all four convergence dimensions and either marks the feature complete or routes back to Phase 3 for another adversary pass. ## When Run after Phase 5 (formal hardening) completes. Requires active feature at phas
npx skillsauth add sc30gsw/vcsdd-claude-code skills/vcsdd-convergeInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Runs the convergence check (Phase 6). Validates all four convergence dimensions and either marks the feature complete or routes back to Phase 3 for another adversary pass.
Run after Phase 5 (formal hardening) completes. Requires active feature at phase 6.
convergenceSignals.findingCount across iterations
findingCount = 0findingCount < previousFindingCountevidence.filePath values are real files
for f in reviews/sprint-*/output/findings/*.json; do
path=$(jq -r '.evidence.filePath' "$f")
ls "$path" 2>/dev/null || echo "HALLUCINATED: $path"
done
reviews/sprint-N/output/verdict.json sets convergenceSignals.allCriteriaEvaluated = true and that convergenceSignals.evaluatedCriteria matches the approved contract's CRIT-XXX set exactly
convergenceSignals.duplicateFindings must be emptyadversary-finding bead may remain in open statusverification/verification-report.md exists and was written after entering Phase 5verification/security-report.md exists and was written after entering Phase 5verification/purity-audit.md exists and was written after entering Phase 5verification/security-results/ contains at least one captured output artifact written after entering Phase 5proved (required obligations may not finish as skipped)reviews/sprint-*/output/findings/FIND-NNN.json must have a matching adversary-finding beadcomplete, display success summaryDisplay upon completion:
VCSDD Feature Complete: my-feature
Sprint: 2 | Iterations: 3 | Mode: strict
Convergence Dimensions:
Finding Diminishment: 8 -> 3 -> 0
Finding Specificity: All citations verified
Criteria Coverage: 5/5 criteria evaluated
No Duplicate Findings
Traceability Chain:
REQ-001 -> TEST-001 -> IMPL-001
REQ-002 -> TEST-002 -> IMPL-002
PROP-001 -> proof-harnesses/parser.rs
/vcsdd-converge
/vcsdd-converge --force-complete # override convergence (human sign-off)
documentation
Use this skill when writing Phase 1b verification architecture documents. Provides purity boundary mapping, proof obligation design, and tier assignment guidance.
data-ai
Use this skill when creating or querying VCSDD Chainlink bead traceability. Provides bead creation patterns, chain traversal, and completeness validation.
data-ai
Display the full traceability chain for a VCSDD bead. Traverses the Chainlink graph from the given bead ID and shows all connected artifacts with status.
development
Run Phase 2a (test generation, Red phase) for the active VCSDD feature. Invokes vcsdd-builder to generate failing tests for all spec requirements. Records red phase evidence.