mirror of
https://github.com/openai/codex.git
synced 2026-04-24 22:54:54 +00:00
agentydragon(tasks): add 'Needs manual review' status
This commit is contained in:
@@ -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.
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user