What problem does it solve? A curated seed field that no graph builder pass reads is silently inert: it passes validation, produces no error, and changes no edge count, so the knowledge graph can be missing relations nobody knows about. This Skill audits which seed relation fields each model's graph builder actually consumes, fixes the gaps, and proves the rebuild is purely additive. ## Core Features & Use Cases - Coverage audit: Run tools/check_graph_coverage.py per profile and grep each model's builder (FATES rag/graph_builder.py, EcoSIM scripts/build_ecosim_rag.py, PFLOTRAN scripts/build_pflotran_rag.py) to find seed relation fields no pass reads. - Safe pass authoring: Write new builder passes that skip unresolved parameters instead of minting phantom nodes, never overwrite existing edges, and record distinctions as attributes rather than weights. - Additive rebuild verification: Diff the graph node-by-node and edge-by-edge before and after a graph-only rebuild, catching silent no-op rebuilds (e.g. FATES --graph-only without --rebuild) and metadata side effects. - Use Case: A Phase 3/4 traversal from a scored output returns nothing because the graph cannot reach the target parameter; use this Skill to trace the missing relation to an unread seed block, wire the pass, rebuild, and pin it with a seed-to-graph completeness test. ## Quick Start Ask the agent to audit whether the model's graph builder reads every relation field in its curated seed and fix any gaps it finds.