fix(521): whole-branch review — correct Gitea anchors, guard archive+demotion, reciprocal links, stale append-only refs, budget warning [decisions-edit]

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-07-21 03:00:15 +02:00
co-authored by Claude Opus 4.8
parent b1e7e08884
commit f93458c76c
10 changed files with 242 additions and 47 deletions
+4 -1
View File
@@ -98,9 +98,12 @@ def parse_file(path: Path) -> list[Record]:
return parse_text(path.read_text(encoding="utf-8"), path)
_NON_DECISION_FILES = {"README.md", "migration-map.md"}
def active_files() -> list[Path]:
files = [DECISIONS_MD]
files += sorted(p for p in TOPIC_DIR.glob("*.md") if p.name != "README.md")
files += sorted(p for p in TOPIC_DIR.glob("*.md") if p.name not in _NON_DECISION_FILES)
return files