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
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
|
import { useMemo } from "react";
import type { ContractWithRelations, ContractPhase } from "../../lib/api";
// Phase deliverables configuration (mirrors backend phase_guidance.rs)
interface RecommendedFile {
templateId: string;
name: string;
priority: "required" | "recommended" | "optional";
description: string;
}
interface PhaseDeliverables {
phase: ContractPhase;
files: RecommendedFile[];
requiresRepository: boolean;
requiresTasks: boolean;
guidance: string;
}
const PHASE_DELIVERABLES: Record<ContractPhase, PhaseDeliverables> = {
research: {
phase: "research",
files: [
{ templateId: "research-notes", name: "Research Notes", priority: "recommended", description: "Document findings and insights" },
{ templateId: "competitor-analysis", name: "Competitor Analysis", priority: "recommended", description: "Analyze competitors" },
{ templateId: "user-research", name: "User Research", priority: "optional", description: "User interviews and personas" },
],
requiresRepository: false,
requiresTasks: false,
guidance: "Gather information and document findings before moving to Specify.",
},
specify: {
phase: "specify",
files: [
{ templateId: "requirements", name: "Requirements Document", priority: "required", description: "Functional and non-functional requirements" },
{ templateId: "user-stories", name: "User Stories", priority: "recommended", description: "Features from user perspective" },
{ templateId: "acceptance-criteria", name: "Acceptance Criteria", priority: "recommended", description: "Testable conditions for completion" },
],
requiresRepository: false,
requiresTasks: false,
guidance: "Define clear requirements and acceptance criteria.",
},
plan: {
phase: "plan",
files: [
{ templateId: "architecture", name: "Architecture Document", priority: "recommended", description: "System architecture and design" },
{ templateId: "task-breakdown", name: "Task Breakdown", priority: "required", description: "Work broken into tasks" },
{ templateId: "technical-design", name: "Technical Design", priority: "optional", description: "Detailed technical specs" },
],
requiresRepository: true,
requiresTasks: false,
guidance: "Design the solution and create a task breakdown. Configure a repository.",
},
execute: {
phase: "execute",
files: [
{ templateId: "dev-notes", name: "Development Notes", priority: "recommended", description: "Implementation details" },
{ templateId: "test-plan", name: "Test Plan", priority: "optional", description: "Testing strategy" },
{ templateId: "implementation-log", name: "Implementation Log", priority: "optional", description: "Progress log" },
],
requiresRepository: true,
requiresTasks: true,
guidance: "Execute tasks and track implementation progress.",
},
review: {
phase: "review",
files: [
{ templateId: "release-notes", name: "Release Notes", priority: "required", description: "Changes for release" },
{ templateId: "review-checklist", name: "Review Checklist", priority: "recommended", description: "Code and feature review" },
{ templateId: "retrospective", name: "Retrospective", priority: "optional", description: "Project learnings" },
],
requiresRepository: false,
requiresTasks: false,
guidance: "Review work and document the release.",
},
};
interface DeliverableStatus {
templateId: string;
name: string;
priority: "required" | "recommended" | "optional";
description: string;
completed: boolean;
fileId?: string;
actualName?: string;
}
interface PhaseDeliverablesProps {
contract: ContractWithRelations;
onCreateFile?: (templateId: string, suggestedName: string) => void;
}
export function PhaseDeliverablesPanel({ contract, onCreateFile }: PhaseDeliverablesProps) {
const deliverables = PHASE_DELIVERABLES[contract.phase];
// Calculate deliverable status
const fileStatuses = useMemo((): DeliverableStatus[] => {
return deliverables.files.map((rec) => {
// Find matching file by name similarity
const matchedFile = contract.files.find((f) => {
const nameLower = f.name.toLowerCase();
const recLower = rec.name.toLowerCase();
return (
f.contractPhase === contract.phase &&
(nameLower.includes(recLower) || recLower.includes(nameLower) || nameLower.includes(rec.templateId.replace("-", " ")))
);
});
return {
...rec,
completed: !!matchedFile,
fileId: matchedFile?.id,
actualName: matchedFile?.name,
};
});
}, [contract.files, contract.phase, deliverables.files]);
// Check repository status
const hasRepository = contract.repositories.length > 0;
// Check task status
const taskStats = useMemo(() => {
const total = contract.tasks.length;
const done = contract.tasks.filter((t) => t.status === "done" || t.status === "merged").length;
const pending = contract.tasks.filter((t) => t.status === "pending").length;
const running = contract.tasks.filter((t) => ["running", "initializing", "starting"].includes(t.status)).length;
const failed = contract.tasks.filter((t) => t.status === "failed").length;
return { total, done, pending, running, failed };
}, [contract.tasks]);
// Calculate completion percentage
const completionPercent = useMemo(() => {
let completed = 0;
let total = 0;
// Count required and recommended files
fileStatuses.forEach((s) => {
if (s.priority !== "optional") {
total++;
if (s.completed) completed++;
}
});
// Count repository if required
if (deliverables.requiresRepository) {
total++;
if (hasRepository) completed++;
}
// Count tasks if in execute phase
if (deliverables.requiresTasks && taskStats.total > 0) {
total++;
if (taskStats.done === taskStats.total) completed++;
}
return total > 0 ? Math.round((completed / total) * 100) : 100;
}, [fileStatuses, hasRepository, deliverables, taskStats]);
const priorityColors = {
required: "text-red-400",
recommended: "text-yellow-400",
optional: "text-[#555]",
};
return (
<div className="space-y-4">
<div className="flex items-center justify-between">
<h3 className="font-mono text-xs text-[#75aafc] uppercase">
Phase Deliverables
</h3>
<div className="flex items-center gap-2">
<div className="w-24 h-1.5 bg-[rgba(117,170,252,0.1)] rounded overflow-hidden">
<div
className={`h-full transition-all duration-300 ${
completionPercent === 100 ? "bg-green-400" : "bg-[#75aafc]"
}`}
style={{ width: `${completionPercent}%` }}
/>
</div>
<span className="font-mono text-[10px] text-[#555]">{completionPercent}%</span>
</div>
</div>
{/* Guidance text */}
<p className="font-mono text-xs text-[#555] italic">{deliverables.guidance}</p>
{/* File deliverables */}
<div className="space-y-2">
{fileStatuses.map((status) => (
<div
key={status.templateId}
className={`flex items-center justify-between p-2 border ${
status.completed
? "border-green-400/20 bg-green-400/5"
: "border-[rgba(117,170,252,0.15)]"
}`}
>
<div className="flex items-center gap-2">
<span
className={`font-mono text-xs ${
status.completed ? "text-green-400" : "text-[#555]"
}`}
>
{status.completed ? "[+]" : "[ ]"}
</span>
<div>
<div className="flex items-center gap-2">
<span className="font-mono text-xs text-[#dbe7ff]">
{status.completed ? status.actualName : status.name}
</span>
{!status.completed && (
<span className={`font-mono text-[9px] uppercase ${priorityColors[status.priority]}`}>
{status.priority}
</span>
)}
</div>
<span className="font-mono text-[10px] text-[#555]">
{status.description}
</span>
</div>
</div>
{!status.completed && onCreateFile && (
<button
onClick={() => onCreateFile(status.templateId, status.name)}
className="px-2 py-1 font-mono text-[10px] text-[#75aafc] border border-[rgba(117,170,252,0.25)] hover:border-[#3f6fb3] transition-colors"
>
Create
</button>
)}
</div>
))}
</div>
{/* Repository status */}
{deliverables.requiresRepository && (
<div
className={`flex items-center gap-2 p-2 border ${
hasRepository
? "border-green-400/20 bg-green-400/5"
: "border-[rgba(117,170,252,0.15)]"
}`}
>
<span
className={`font-mono text-xs ${
hasRepository ? "text-green-400" : "text-[#555]"
}`}
>
{hasRepository ? "[+]" : "[ ]"}
</span>
<div>
<span className="font-mono text-xs text-[#dbe7ff]">
Repository Configured
</span>
{!hasRepository && (
<span className="font-mono text-[9px] uppercase text-red-400 ml-2">
required
</span>
)}
</div>
</div>
)}
{/* Task status (execute phase) */}
{deliverables.requiresTasks && (
<div
className={`flex items-center justify-between p-2 border ${
taskStats.total > 0 && taskStats.done === taskStats.total
? "border-green-400/20 bg-green-400/5"
: "border-[rgba(117,170,252,0.15)]"
}`}
>
<div className="flex items-center gap-2">
<span
className={`font-mono text-xs ${
taskStats.total > 0 && taskStats.done === taskStats.total
? "text-green-400"
: "text-[#555]"
}`}
>
{taskStats.total > 0 && taskStats.done === taskStats.total ? "[+]" : "[ ]"}
</span>
<span className="font-mono text-xs text-[#dbe7ff]">
Tasks Completed
</span>
</div>
{taskStats.total > 0 ? (
<span className="font-mono text-[10px] text-[#9bc3ff]">
{taskStats.done}/{taskStats.total}
{taskStats.running > 0 && ` (${taskStats.running} running)`}
{taskStats.failed > 0 && (
<span className="text-red-400"> ({taskStats.failed} failed)</span>
)}
</span>
) : (
<span className="font-mono text-[10px] text-[#555]">No tasks yet</span>
)}
</div>
)}
</div>
);
}
|