phase3/drift-export-dot: Graphviz DOT export for drift results - #97
Open
URaux wants to merge 3 commits into
Open
phase3/drift-export-dot: Graphviz DOT export for drift results#97URaux wants to merge 3 commits into
URaux wants to merge 3 commits into
Conversation
Adds noise-suppression lists to policy.drift. Block/container/edge IDs in the ignore lists get filtered out of every bucket before drift is reported. Pure function; never mutates input. clean flag is recomputed after filtering. Use case: auto-generated blocks (cache layers, codegen output, archived containers) that legitimately drift but shouldn't trigger PR comments. 5 tests covering: pass-through when no lists set, multi-bucket filtering, container+edge filters, clean recomputation, no-mutation invariant.
Adds scripts/drift-stats.mjs that reads a folder of drift snapshot JSON files and prints per-week avg/median/max drift counts and top-N most-drifted blocks. Supports --last N, --top N, --format md|json. 10 tests covering empty dir, populated multi-week, --last capping, and top-N block ranking. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
scripts/drift-export-dot.mjs: converts a drift result JSON into Graphviz DOT format--in drift.json(required) and--out drift.dot(optional; default stdout)Test plan
digraph drift {and valid DOT skeleton--outwrites to file, stdout is empty--inflag → exit 1npx vitest run tests/scripts/drift-export-dot.test.ts