blob: ac8d4178e9c69c4ccb59546ecfaae26c2dfc397b (
plain) (
blame)
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
|
export type Role = 'user' | 'assistant' | 'system'
export type ChatMessage = {
id: string
role: Role
content: string
}
export type Choice = {
id: string
label: string
}
// Contract types
export type ContractType = 'simple' | 'specification' | 'execute'
export type ContractPhase = 'research' | 'specify' | 'plan' | 'execute' | 'review'
export type ContractStatus = 'active' | 'completed' | 'archived'
export interface ContractSummary {
id: string
name: string
description?: string
contractType: string
phase: string
status: string
supervisorTaskId?: string
localOnly: boolean
fileCount: number
taskCount: number
repositoryCount: number
version: number
createdAt: string
// Red team fields
redTeamEnabled?: boolean
}
export interface Contract {
id: string
ownerId: string
name: string
description?: string
contractType: string
phase: string
status: string
supervisorTaskId?: string
autonomousLoop: boolean
phaseGuard: boolean
completedDeliverables: Record<string, string[]>
localOnly: boolean
redTeamEnabled: boolean
redTeamPrompt?: string
version: number
createdAt: string
updatedAt: string
}
export interface CreateContractRequest {
name: string
description?: string
contractType?: string
initialPhase?: string
autonomousLoop?: boolean
phaseGuard?: boolean
localOnly?: boolean
redTeamEnabled?: boolean
redTeamPrompt?: string
}
export interface TaskSummary {
id: string
contractId?: string
contractName?: string
contractPhase?: string
contractStatus?: string
parentTaskId?: string
depth: number
name: string
status: string
priority: number
progressSummary?: string
subtaskCount: number
version: number
isSupervisor: boolean
isRedTeam: boolean
hidden: boolean
createdAt: string
updatedAt: string
}
// Red team notification types
export type NotificationSeverity = 'info' | 'warning' | 'critical'
export interface RedTeamNotification {
id: string
contractId: string
redTeamTaskId: string
relatedTaskId?: string
message: string
severity: NotificationSeverity
filePath?: string
context?: string
delivered: boolean
deliveredAt?: string
acknowledged: boolean
acknowledgedAt?: string
createdAt: string
}
|