-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathexample-questions.json
More file actions
33 lines (33 loc) · 1017 Bytes
/
Copy pathexample-questions.json
File metadata and controls
33 lines (33 loc) · 1017 Bytes
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
{
"title": "Project Setup",
"description": "Help me understand your requirements before I create the implementation plan.",
"questions": [
{
"id": "framework",
"type": "single",
"question": "Which framework should we use?",
"options": ["React", "Vue", "Svelte", "Not sure - research for me"],
"recommended": "React",
"context": "React has the largest ecosystem and best TypeScript support."
},
{
"id": "features",
"type": "multi",
"question": "Which features do you need?",
"options": ["Authentication", "Database", "API routes", "File uploads"],
"recommended": ["Authentication", "Database"],
"context": "Select all that apply."
},
{
"id": "notes",
"type": "text",
"question": "Any additional requirements or constraints?"
},
{
"id": "mockup",
"type": "image",
"question": "Upload a design mockup (optional)",
"context": "PNG, JPG, GIF, or WebP. Max 5MB."
}
]
}