Verify Roadmap Redesign — Cross-Plan Coherence Auditor
5 sections
Overview
Redesign the /verify-roadmap skill from a section-local item verifier into a cross-plan coherence auditor that treats the entire planning corpus (master roadmap + 17 reroute plans + completed plans + bug tracker) as one interconnected system. The current skill audits individual checkbox items within plans/roadmap/section-*.md files but has zero awareness of reroute plans, cross-plan conflicts, or dependency inversions. The redesigned skill detects when goals of one plan conflict with another, when dependencies are inverted (active plan depending on queued prerequisite), when references point to nonexistent plans, and when metadata has drifted from reality.
Completed
4 sections
Frontmatter Schema, Strict Parser & Shared Types
Establish the canonical corpus-parsing library: schema as executable Python types (sole SSOT), a strict YAML parser that hard-fails on malformed input, the shared Finding/status normalizer boundary types consumed by Sections 02-05, a fixture corpus with TDD semantic/negative pins, and a pilot migration proving the pipeline end-to-end
DAG Builder & Conflict Classifier
Build the dependency DAG across all plans and implement the 8 conflict classifiers (6 from mission + REDUNDANT_DEPENDENCY, ORPHANED_PLAN) with deterministic precedence and source-kind tagging, so test cases (a), (b), (c), (g), (h) from the overview are caught without false positives on code fences, YAML comments, or prerequisite coordination
Item-Level Verifier Preservation
Extract the existing item-level verifier from the 900-line command file into a reusable phase that integrates as Phase 4 of the new pipeline
Validation & Known-Issue Sweep
Promote the skill to .claude/skills/verify-roadmap/, validate against all 8 known test cases, and fix all auto-fixable issues found during the full corpus sweep