This commit is contained in:
Rai (Michael Pokorny)
2025-06-25 01:11:45 -07:00
parent a1598d645c
commit 88d46eb754
2 changed files with 1 additions and 4 deletions

View File

@@ -2,11 +2,8 @@
id = "<NN>"
title = "<Task Title>"
status = "<<<!!! MANAGER: SET VALID STATUS - Not started? !!!>>>"
summary = "Brief summary of current status."
dependencies = [<<<!!! MANAGER: LIST TASK IDS THAT MUST BE COMPLETED BEFORE STARTING; SEPARATED BY COMMAS, E.G. "02","05" !!!>>>] # <!-- Manager rationale: explain why these dependencies are required and why other tasks are not. -->
last_updated = "<timestamp in ISO format>"
goal: |
Describe the objective of the task here.
+++
# Task Template

View File

@@ -23,7 +23,7 @@ except ImportError:
sys.exit(1)
REQUIRED_KEYS = ["id", "title", "status", "summary", "goal"]
ALLOWED_STATUSES = ["Not started", "Started", "Needs manual review", "Done", "Cancelled", "Merged"]
ALLOWED_STATUSES = ["Not started", "Started", "Needs manual review", "Done", "Cancelled", "Merged", "Reopened"]
def main():
failures = 0