Private
Public Access
0
0

fix(chronology): mark genuinely-ambiguous archive tracks as Needs Review instead of guessing Abandoned (work may be in src/ not track folder)

This commit is contained in:
2026-07-02 08:24:25 -04:00
parent f0eba0c5eb
commit 792dd7d430
2 changed files with 93 additions and 44 deletions
+4 -1
View File
@@ -314,7 +314,10 @@ def classify_status(
)
if archive_move_completed:
return ("Completed", "low", "archived with 'completed' in archive-move commit")
return ("Abandoned", "low", "archived with 0 work commits")
# Genuinely ambiguous: no state.toml, no report, no evidence on the track folder.
# The work may have been done in src/ files (commits don't touch the track folder).
# Mark as Needs Review rather than guessing Abandoned.
return ("Needs Review", "low", "archived with no evidence on track folder; work may be in src/")
return ("Completed", "low", "archived but no completion report")
# 4. Fallback
return ("Needs Review", "none", "classifier inconclusive")