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
|
// API service for directive operations
export interface DirectiveStepCounts {
pending: number
ready: number
running: number
completed: number
failed: number
skipped: number
}
export interface DirectiveSummary {
id: string
title: string
goal: string
status: string
repositoryUrl: string
prUrl: string
prBranch: string
createdAt: string
updatedAt: string
goalUpdatedAt: string
stepCounts: DirectiveStepCounts
version?: number
pr_branch?: string | null
}
export interface DirectiveStep {
id: string
directiveId: string
directive_id?: string
name: string
title?: string
description: string | null
taskPlan: string
dependsOn: string[]
status: string
taskId: string
contractId: string
orderIndex: number
sort_order?: number
completedAt: string
}
export interface DirectiveWithSteps extends DirectiveSummary {
steps: DirectiveStep[]
reconcileMode: string
}
// Alias for compatibility with context-menu branch types
export type Directive = DirectiveSummary
async function apiFetch(path: string, options?: RequestInit): Promise<Response> {
const response = await fetch(path, {
...options,
headers: {
'Content-Type': 'application/json',
...options?.headers,
},
})
if (!response.ok) {
const body = await response.json().catch(() => ({ message: response.statusText }))
throw new Error(body.message ?? body.error ?? `API error ${response.status}: ${response.statusText}`)
}
return response
}
export async function listDirectives(): Promise<DirectiveSummary[]> {
const response = await apiFetch('/api/v1/directives')
const data = await response.json()
return data.directives || []
}
export async function getDirective(id: string): Promise<DirectiveWithSteps> {
const response = await apiFetch(`/api/v1/directives/${id}`)
return response.json()
}
export async function getDirectiveSteps(id: string): Promise<DirectiveStep[]> {
const response = await apiFetch(`/api/v1/directives/${id}/steps`)
return response.json()
}
export async function updateGoal(id: string, goal: string): Promise<DirectiveWithSteps> {
const response = await apiFetch(`/api/v1/directives/${id}/goal`, {
method: 'PUT',
body: JSON.stringify({ goal }),
})
return response.json()
}
export async function updateDirective(
id: string,
updates: { title?: string; goal?: string; version?: number },
): Promise<DirectiveWithSteps> {
const response = await apiFetch(`/api/v1/directives/${id}`, {
method: 'PUT',
body: JSON.stringify(updates),
})
return response.json()
}
export async function cleanupDirective(id: string): Promise<void> {
await apiFetch(`/api/v1/directives/${id}/cleanup`, { method: 'POST' })
}
export async function createPr(id: string): Promise<{ prUrl: string }> {
const response = await apiFetch(`/api/v1/directives/${id}/create-pr`, { method: 'POST' })
return response.json()
}
export async function pickUpOrders(id: string): Promise<void> {
await apiFetch(`/api/v1/directives/${id}/pick-up-orders`, { method: 'POST' })
}
export async function startDirective(id: string): Promise<DirectiveWithSteps> {
const response = await apiFetch(`/api/v1/directives/${id}/start`, { method: 'POST' })
return response.json()
}
export async function pauseDirective(id: string): Promise<DirectiveWithSteps> {
const response = await apiFetch(`/api/v1/directives/${id}/pause`, { method: 'POST' })
return response.json()
}
export async function getUserSetting(key: string): Promise<any> {
const response = await apiFetch(`/api/v1/settings/${key}`)
return response.json()
}
export async function upsertUserSetting(key: string, value: any): Promise<void> {
await apiFetch('/api/v1/settings', {
method: 'PUT',
body: JSON.stringify({ key, value }),
})
}
|