fix_tracker.py resolves fix_tracking against the owning repo's workplan file — the ADR-001 source of truth — and uses the file's last commit date as the honest answer to 'has this moved', independent of whether the register looked. Archived workplans are searched too, so a finished fix that was filed away does not read as missing. First run, three findings it should have known about: RISK-F-0005 — AUDIT-WP-0008-T04 has read done since 2026-08-18. The fix this finding asked for has landed and the register spent three days not knowing. Now mitigated, embargo lifted, disclosure public. Not fixed: that needs a probe, and T05's adversarial evidence artifact still reads wait. RISK-F-0002 — both tracked records were closed before the finding was filed: WARDEN-WP-0007 archived 2026-07-08, FLEX-WP-0007 finished 2026-06-29, against a finding of 2026-08-18 that names FLEX-WP-0007 as the blocker. Routed as a question, not a conclusion. Four findings carry no fix tracking at all, which the report now says out loud rather than leaving as an empty field. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
32 lines
887 B
Makefile
32 lines
887 B
Makefile
PY := python3
|
|
TOOLS := tools
|
|
|
|
.PHONY: help register check checked due fixes
|
|
|
|
help:
|
|
@echo "make register - rebuild REGISTER.md from findings/"
|
|
@echo "make check - verify the index, report what is going quiet, and read the inbox"
|
|
@echo "make due - just the work list: what needs a check right now"
|
|
@echo "make fixes - the state of every fix this register claims to track"
|
|
@echo "make checked - record a check outcome: make checked ARGS=\"RISK-F-0002 clean\""
|
|
|
|
register:
|
|
@$(PY) $(TOOLS)/register_index.py
|
|
|
|
check:
|
|
@$(PY) $(TOOLS)/register_index.py --check
|
|
@echo
|
|
@$(PY) $(TOOLS)/register_check.py
|
|
@echo
|
|
@$(PY) $(TOOLS)/inbox_check.py
|
|
|
|
checked:
|
|
@$(PY) $(TOOLS)/record_check.py $(ARGS)
|
|
@$(PY) $(TOOLS)/register_index.py
|
|
|
|
due:
|
|
@$(PY) $(TOOLS)/register_check.py | sed -n '/Checks due/,/^$$/p'
|
|
@$(PY) $(TOOLS)/inbox_check.py
|
|
|
|
fixes:
|
|
@$(PY) $(TOOLS)/fix_tracker.py
|