-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest-009.json
More file actions
104 lines (104 loc) · 3.21 KB
/
manifest-009.json
File metadata and controls
104 lines (104 loc) · 3.21 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"issue": "issue-009",
"project": "MoneyMirror",
"phases": [
{
"id": "phase-1",
"name": "Foundation",
"parallel": false,
"depends_on": [],
"tasks": [
{
"id": "T1",
"name": "Initialize Next.js 14 project",
"agent": "frontend-engineer",
"files_to_create": ["package.json", "tailwind.config.js"],
"files_to_modify": [],
"verification": "npm run build",
"test_file": "__tests__/init.test.ts"
},
{
"id": "T2",
"name": "Setup Supabase Auth & Neon Schema",
"agent": "backend-architect",
"files_to_create": ["schema.sql"],
"files_to_modify": [],
"verification": "psql -c '\\dt'",
"test_file": "__tests__/schema.test.ts"
},
{
"id": "T3",
"name": "Implement Onboarding & Scoring",
"agent": "product-agent",
"files_to_create": ["src/app/onboarding/page.tsx", "src/lib/scoring.ts"],
"files_to_modify": [],
"verification": "npm run test src/lib/scoring.test.ts",
"test_file": "src/lib/scoring.test.ts"
}
]
},
{
"id": "phase-2",
"name": "Parsing Engine",
"parallel": false,
"depends_on": ["phase-1"],
"tasks": [
{
"id": "T4",
"name": "PDF Text Extraction Service",
"agent": "backend-engineer",
"files_to_create": ["src/lib/pdf-parser.ts"],
"files_to_modify": [],
"verification": "npm run test src/lib/pdf-parser.test.ts",
"test_file": "src/lib/pdf-parser.test.ts"
},
{
"id": "T5",
"name": "Gemini HDFC Parser",
"agent": "backend-engineer",
"files_to_create": ["src/app/api/statement/parse/route.ts"],
"files_to_modify": [],
"verification": "curl -X POST http://localhost:3000/api/statement/parse",
"test_file": "__tests__/api/parse.test.ts"
}
]
},
{
"id": "phase-3",
"name": "The Mirror Dashboard",
"parallel": true,
"depends_on": ["phase-2"],
"tasks": [
{
"id": "T8",
"name": "Mirror Card & Dashboard UI",
"agent": "frontend-engineer",
"files_to_create": ["src/app/dashboard/page.tsx", "src/components/MirrorCard.tsx"],
"files_to_modify": [],
"verification": "npm run build",
"test_file": "__tests__/ui/dashboard.test.tsx"
},
{
"id": "T9",
"name": "Advisory Engine Triggers",
"agent": "backend-engineer",
"files_to_create": ["src/lib/advisory-engine.ts"],
"files_to_modify": [],
"verification": "npm run test src/lib/advisory.test.ts",
"test_file": "src/lib/advisory.test.ts"
}
]
}
],
"env_vars": [
"NEXT_PUBLIC_SUPABASE_URL",
"NEXT_PUBLIC_SUPABASE_ANON_KEY",
"SUPABASE_SERVICE_ROLE_KEY",
"GEMINI_API_KEY",
"RESEND_API_KEY",
"POSTHOG_KEY",
"CRON_SECRET"
],
"schema_tables": ["profiles", "statements", "transactions", "advisory_feed"],
"posthog_events": ["onboarding_completed", "statement_uploaded", "mirror_report_shared"]
}