agentydragon(tasks): add 'Needs manual review' status

This commit is contained in:
Rai (Michael Pokorny)
2025-06-24 14:57:25 -07:00
parent f76792cfc3
commit 4c10e86c59
2 changed files with 3 additions and 3 deletions

View File

@@ -1,11 +1,11 @@
# Task Template
# Valid status values: Not started | Started | Done | Cancelled
# Valid status values: Not started | Started | Needs manual review | Done | Cancelled
---
id: <NN>
title: <Task Title>
status: Not started # one of: Not started, Started, Done, Cancelled
status: Not started # one of: Not started, Started, Needs manual review, Done, Cancelled
summary: Brief summary of current status.
goal: |
Describe the objective of the task here.

View File

@@ -22,7 +22,7 @@ except ImportError:
sys.exit(1)
REQUIRED_KEYS = ["id", "title", "status", "summary", "goal"]
ALLOWED_STATUSES = ["Not started", "Started", "Done", "Cancelled"]
ALLOWED_STATUSES = ["Not started", "Started", "Needs manual review", "Done", "Cancelled"]
def parse_frontmatter(text):
# Expect frontmatter delimited by '---' on its own line