-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprd.json.example
More file actions
64 lines (64 loc) · 2.09 KB
/
prd.json.example
File metadata and controls
64 lines (64 loc) · 2.09 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
{
"project": "MyApp",
"branchName": "ralph/task-priority",
"description": "Task Priority System - Add priority levels to tasks",
"userStories": [
{
"id": "US-001",
"title": "Add priority field to database",
"description": "As a developer, I need to store task priority so it persists across sessions.",
"acceptanceCriteria": [
"Add priority column to tasks table: 'high' | 'medium' | 'low' (default 'medium')",
"Generate and run migration successfully",
"Typecheck passes"
],
"priority": 1,
"passes": false,
"notes": ""
},
{
"id": "US-002",
"title": "Display priority indicator on task cards",
"description": "As a user, I want to see task priority at a glance.",
"acceptanceCriteria": [
"Each task card shows colored priority badge (red=high, yellow=medium, gray=low)",
"Priority visible without hovering or clicking",
"Typecheck passes",
"Verify in browser using dev-browser skill"
],
"priority": 2,
"passes": false,
"notes": ""
},
{
"id": "US-003",
"title": "Add priority selector to task edit",
"description": "As a user, I want to change a task's priority when editing it.",
"acceptanceCriteria": [
"Priority dropdown in task edit modal",
"Shows current priority as selected",
"Saves immediately on selection change",
"Typecheck passes",
"Verify in browser using dev-browser skill"
],
"priority": 3,
"passes": false,
"notes": ""
},
{
"id": "US-004",
"title": "Filter tasks by priority",
"description": "As a user, I want to filter the task list to see only high-priority items.",
"acceptanceCriteria": [
"Filter dropdown with options: All | High | Medium | Low",
"Filter persists in URL params",
"Empty state message when no tasks match filter",
"Typecheck passes",
"Verify in browser using dev-browser skill"
],
"priority": 4,
"passes": false,
"notes": ""
}
]
}