-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbacklog.json
More file actions
72 lines (72 loc) · 1.68 KB
/
Copy pathbacklog.json
File metadata and controls
72 lines (72 loc) · 1.68 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
[
{
"id": "task-001",
"title": "Create orchestrator loop",
"type": "feature",
"priority": "high",
"risk": "medium",
"needs_research": false,
"dependencies": [],
"acceptance": [
"Reads mission, rules, backlog, and progress",
"Chooses one unfinished task",
"Writes run metadata",
"Updates backlog and progress after execution"
],
"status": "todo",
"passes": false
},
{
"id": "task-002",
"title": "Add generic coding-agent adapter interface",
"type": "feature",
"priority": "high",
"risk": "medium",
"needs_research": false,
"dependencies": [
"task-001"
],
"acceptance": [
"Defines prepare_prompt, run_agent, extract_status, extract_artifacts, supports_tools",
"Includes a mock adapter for local testing"
],
"status": "todo",
"passes": false
},
{
"id": "task-003",
"title": "Add bounded research handoff",
"type": "feature",
"priority": "medium",
"risk": "medium",
"needs_research": true,
"dependencies": [
"task-001"
],
"acceptance": [
"Creates research brief from task metadata",
"Stores findings in research/task-id.md",
"Passes distilled findings into coding prompt"
],
"status": "todo",
"passes": false
},
{
"id": "task-004",
"title": "Add validation gate runner",
"type": "feature",
"priority": "high",
"risk": "low",
"needs_research": false,
"dependencies": [
"task-001"
],
"acceptance": [
"Runs lint, tests, and typecheck",
"Captures outputs to eval/",
"Returns pass/fail summary"
],
"status": "todo",
"passes": false
}
]