-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild-progress.json
More file actions
238 lines (238 loc) · 9.45 KB
/
Copy pathbuild-progress.json
File metadata and controls
238 lines (238 loc) · 9.45 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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
{
"lastUpdated": "2026-04-03T22:00:00Z",
"overallProgress": 0,
"activeSessions": 0,
"totalPrompts": 16,
"phases": [
{
"id": "phase-0",
"name": "Phase 0: Data Acquisition",
"description": "Download and prep all raw data (pre-hackathon)",
"parallel": true,
"prompts": [
{
"id": "P0-1",
"name": "StatsBomb Download + Parse",
"status": "ready",
"phase": 0,
"track": "data",
"agentA": "Download WC 2022 events (64 matches) via statsbombpy, parse all event types, extract per-player actions with opponent context",
"agentB": "Download lineups + 360 data, build player registry (name, country, position, minutes per match)",
"output": ["data/statsbomb/events.json", "data/statsbomb/players-registry.json", "data/statsbomb/lineups.json"],
"dependencies": [],
"canParallelWith": ["P0-2", "P0-3"],
"estimatedMinutes": 20
},
{
"id": "P0-2",
"name": "Transfermarkt Profiles + Photos",
"status": "ready",
"phase": 0,
"track": "data",
"agentA": "Pull market values, contracts, clubs from transfermarkt-datasets CSV. Fuzzy-match with StatsBomb player registry.",
"agentB": "Get player photo URLs + post-WC validation data (actual transfers Jan-Dec 2023, current values)",
"output": ["data/players.json"],
"dependencies": [],
"canParallelWith": ["P0-1", "P0-3"],
"estimatedMinutes": 25
},
{
"id": "P0-3",
"name": "Opposition Ratings + Club Profiles",
"status": "ready",
"phase": 0,
"track": "data",
"agentA": "Pull club ELO from api.clubelo.com + FIFA 23 ratings from Kaggle. Merge into opposition-ratings.json.",
"agentB": "Build clubs.json — 20 clubs with squad, style, budget, positions needed.",
"output": ["data/opposition-ratings.json", "data/clubs.json"],
"dependencies": [],
"canParallelWith": ["P0-1", "P0-2"],
"estimatedMinutes": 15
}
]
},
{
"id": "phase-1",
"name": "Phase 1: Data Processing + Backend",
"description": "Crunch data into SQLite, build Express API",
"parallel": false,
"prompts": [
{
"id": "P1-1",
"name": "Ingest Script (OQI Engine)",
"status": "blocked",
"phase": 1,
"track": "backend",
"agentA": "Build scripts/ingest.js — OQI weighting, breakout probability, write to SQLite",
"agentB": "Build scripts/validate.js — verify all 600+ players scored correctly, output report",
"output": ["scripts/ingest.js", "scripts/validate.js", "scout.db"],
"dependencies": ["P0-1", "P0-2", "P0-3"],
"canParallelWith": [],
"estimatedMinutes": 20
},
{
"id": "P1-2",
"name": "Express API + SQLite Queries",
"status": "blocked",
"phase": 1,
"track": "backend",
"agentA": "Build api/server.js + api/db.js + api/routes/players.js (GET /players, GET /players/:id)",
"agentB": "Build api/routes/chat.js — POST /chat with SSE stream (chat events + agent events)",
"output": ["api/server.js", "api/db.js", "api/routes/players.js", "api/routes/chat.js"],
"dependencies": ["P1-1"],
"canParallelWith": [],
"estimatedMinutes": 20
}
]
},
{
"id": "phase-2",
"name": "Phase 2: Agent System",
"description": "Orchestrator + specialist agents",
"parallel": true,
"prompts": [
{
"id": "P2-1",
"name": "Orchestrator + Tools",
"status": "blocked",
"phase": 2,
"track": "backend",
"agentA": "Build api/agents/orchestrator.js — system prompt, tool defs, streamText()",
"agentB": "Build api/agents/tools.js — all 5 tool implementations with SSE agent events + cache logic",
"output": ["api/agents/orchestrator.js", "api/agents/tools.js"],
"dependencies": ["P1-2"],
"canParallelWith": ["P2-2", "P3-1"],
"estimatedMinutes": 25
},
{
"id": "P2-2",
"name": "Specialists + Team Builder",
"status": "blocked",
"phase": 2,
"track": "backend",
"agentA": "Build match-analyzer.js + contract-analyst.js",
"agentB": "Build value-scorer.js + team-builder.js",
"output": ["api/agents/match-analyzer.js", "api/agents/contract-analyst.js", "api/agents/value-scorer.js", "api/agents/team-builder.js"],
"dependencies": ["P1-2"],
"canParallelWith": ["P2-1", "P3-1"],
"estimatedMinutes": 20
}
]
},
{
"id": "phase-3",
"name": "Phase 3: Chat View",
"description": "Generative UI chat with card components",
"parallel": false,
"prompts": [
{
"id": "P3-1",
"name": "App Shell + Chat Layout",
"status": "blocked",
"phase": 3,
"track": "frontend",
"agentA": "Build src/App.jsx — toggle, top bar, dark theme + src/lib/constants.js",
"agentB": "Build src/views/ChatView.jsx — useChat, message.parts renderer, input bar, welcome message",
"output": ["src/App.jsx", "src/views/ChatView.jsx", "src/lib/constants.js", "src/lib/api.js"],
"dependencies": ["P1-2"],
"canParallelWith": ["P2-1", "P2-2"],
"estimatedMinutes": 20
},
{
"id": "P3-2",
"name": "PlayerCard + RadarChart",
"status": "blocked",
"phase": 3,
"track": "frontend",
"agentA": "Build PlayerCard.jsx — glassmorphic, breakout %, expand/collapse, photo, sub-scores",
"agentB": "Build RadarChart.jsx — Recharts dual overlay (gray raw vs gold OQI) + breakout bar component",
"output": ["src/components/chat/PlayerCard.jsx", "src/components/chat/RadarChart.jsx"],
"dependencies": ["P3-1"],
"canParallelWith": [],
"estimatedMinutes": 20
},
{
"id": "P3-3",
"name": "Comparison + Plan + Portfolio Cards",
"status": "blocked",
"phase": 3,
"track": "frontend",
"agentA": "Build ComparisonCard.jsx + ExplainerCard.jsx",
"agentB": "Build TransferPlanCard.jsx + PortfolioCard.jsx",
"output": ["src/components/chat/ComparisonCard.jsx", "src/components/chat/ExplainerCard.jsx", "src/components/chat/TransferPlanCard.jsx", "src/components/chat/PortfolioCard.jsx"],
"dependencies": ["P3-2"],
"canParallelWith": [],
"estimatedMinutes": 20
}
]
},
{
"id": "phase-4",
"name": "Phase 4: System View",
"description": "Live architecture diagram with React Flow",
"parallel": false,
"prompts": [
{
"id": "P4-1",
"name": "React Flow Diagram + Nodes",
"status": "blocked",
"phase": 4,
"track": "frontend",
"agentA": "Build SystemView.jsx + SystemDiagram.jsx — 6 nodes, edges, dagre layout",
"agentB": "Build AgentNode.jsx — custom node with status badge, accent colors, task text",
"output": ["src/views/SystemView.jsx", "src/components/system/SystemDiagram.jsx", "src/components/system/AgentNode.jsx"],
"dependencies": ["P3-1"],
"canParallelWith": [],
"estimatedMinutes": 20
},
{
"id": "P4-2",
"name": "Edge Animation + LogPanel + SSE",
"status": "blocked",
"phase": 4,
"track": "frontend",
"agentA": "Animated edges — gold dot on active connection, wire SSE agent events to toggle",
"agentB": "LogPanel.jsx — scrolling logs, click-to-filter by node + useAgentStream.js hook",
"output": ["src/components/system/AnimatedEdge.jsx", "src/components/system/LogPanel.jsx", "src/hooks/useAgentStream.js"],
"dependencies": ["P4-1", "P2-1"],
"canParallelWith": [],
"estimatedMinutes": 20
}
]
},
{
"id": "phase-5",
"name": "Phase 5: Integration + Polish",
"description": "Cache demo queries, visual polish, end-to-end test",
"parallel": false,
"prompts": [
{
"id": "P5-1",
"name": "Demo Cache + Welcome",
"status": "blocked",
"phase": 5,
"track": "integration",
"agentA": "Pre-compute 4 cached responses as JSON. API checks cache first.",
"agentB": "Welcome flow — auto-display 3 PlayerCards on load. Scouting... animation + skeleton cards.",
"output": ["data/cache/welcome.json", "data/cache/portfolio.json", "data/cache/brighton.json", "data/cache/compare.json"],
"dependencies": ["P3-3", "P4-2"],
"canParallelWith": [],
"estimatedMinutes": 15
},
{
"id": "P5-2",
"name": "Visual Polish + Final Test",
"status": "blocked",
"phase": 5,
"track": "integration",
"agentA": "Glassmorphism pass, Framer Motion animations, smooth scroll, radar draw-in",
"agentB": "E2E test: all 4 demo queries, expand/collapse, compare, system view live, toggle",
"output": [],
"dependencies": ["P5-1"],
"canParallelWith": [],
"estimatedMinutes": 15
}
]
}
]
}