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
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
|
package api
import (
"context"
"encoding/json"
"fmt"
"log/slog"
"net/http"
"os"
"time"
"github.com/thepeterstone/claudomator/internal/executor"
"github.com/thepeterstone/claudomator/internal/storage"
"github.com/thepeterstone/claudomator/internal/task"
webui "github.com/thepeterstone/claudomator/web"
"github.com/google/uuid"
)
// Server provides the REST API and WebSocket endpoint for Claudomator.
type Server struct {
store *storage.DB
logStore logStore // injectable for tests; defaults to store
pool *executor.Pool
hub *Hub
logger *slog.Logger
mux *http.ServeMux
claudeBinPath string // path to claude binary; defaults to "claude"
elaborateCmdPath string // overrides claudeBinPath; used in tests
startNextTaskScript string // path to start-next-task script; overridden in tests
workDir string // working directory injected into elaborate system prompt
}
func NewServer(store *storage.DB, pool *executor.Pool, logger *slog.Logger, claudeBinPath string) *Server {
wd, _ := os.Getwd()
s := &Server{
store: store,
logStore: store,
pool: pool,
hub: NewHub(),
logger: logger,
mux: http.NewServeMux(),
claudeBinPath: claudeBinPath,
workDir: wd,
}
s.routes()
return s
}
func (s *Server) Handler() http.Handler {
return corsMiddleware(s.mux)
}
func (s *Server) StartHub() {
go s.hub.Run()
go s.forwardResults()
}
func (s *Server) routes() {
s.mux.HandleFunc("POST /api/tasks/elaborate", s.handleElaborateTask)
s.mux.HandleFunc("POST /api/tasks", s.handleCreateTask)
s.mux.HandleFunc("GET /api/tasks", s.handleListTasks)
s.mux.HandleFunc("GET /api/tasks/{id}", s.handleGetTask)
s.mux.HandleFunc("POST /api/tasks/{id}/run", s.handleRunTask)
s.mux.HandleFunc("POST /api/tasks/{id}/cancel", s.handleCancelTask)
s.mux.HandleFunc("POST /api/tasks/{id}/accept", s.handleAcceptTask)
s.mux.HandleFunc("POST /api/tasks/{id}/reject", s.handleRejectTask)
s.mux.HandleFunc("GET /api/tasks/{id}/subtasks", s.handleListSubtasks)
s.mux.HandleFunc("GET /api/tasks/{id}/executions", s.handleListExecutions)
s.mux.HandleFunc("GET /api/executions/{id}", s.handleGetExecution)
s.mux.HandleFunc("GET /api/executions/{id}/logs/stream", s.handleStreamLogs)
s.mux.HandleFunc("GET /api/templates", s.handleListTemplates)
s.mux.HandleFunc("POST /api/templates", s.handleCreateTemplate)
s.mux.HandleFunc("GET /api/templates/{id}", s.handleGetTemplate)
s.mux.HandleFunc("PUT /api/templates/{id}", s.handleUpdateTemplate)
s.mux.HandleFunc("DELETE /api/templates/{id}", s.handleDeleteTemplate)
s.mux.HandleFunc("POST /api/tasks/{id}/answer", s.handleAnswerQuestion)
s.mux.HandleFunc("POST /api/scripts/start-next-task", s.handleStartNextTask)
s.mux.HandleFunc("GET /api/ws", s.handleWebSocket)
s.mux.HandleFunc("GET /api/health", s.handleHealth)
s.mux.Handle("GET /", http.FileServerFS(webui.Files))
}
// forwardResults listens on the executor pool's result channel and broadcasts via WebSocket.
func (s *Server) forwardResults() {
for result := range s.pool.Results() {
event := map[string]interface{}{
"type": "task_completed",
"task_id": result.TaskID,
"status": result.Execution.Status,
"exit_code": result.Execution.ExitCode,
"cost_usd": result.Execution.CostUSD,
"error": result.Execution.ErrorMsg,
"timestamp": time.Now().UTC(),
}
data, _ := json.Marshal(event)
s.hub.Broadcast(data)
}
}
// BroadcastQuestion sends a task_question event to all WebSocket clients.
func (s *Server) BroadcastQuestion(taskID, toolUseID string, questionData json.RawMessage) {
event := map[string]interface{}{
"type": "task_question",
"task_id": taskID,
"question_id": toolUseID,
"data": json.RawMessage(questionData),
"timestamp": time.Now().UTC(),
}
data, _ := json.Marshal(event)
s.hub.Broadcast(data)
}
func (s *Server) handleCancelTask(w http.ResponseWriter, r *http.Request) {
taskID := r.PathValue("id")
if _, err := s.store.GetTask(taskID); err != nil {
writeJSON(w, http.StatusNotFound, map[string]string{"error": "task not found"})
return
}
if !s.pool.Cancel(taskID) {
writeJSON(w, http.StatusConflict, map[string]string{"error": "task is not running"})
return
}
writeJSON(w, http.StatusOK, map[string]string{"status": "cancelling"})
}
func (s *Server) handleAnswerQuestion(w http.ResponseWriter, r *http.Request) {
taskID := r.PathValue("id")
tk, err := s.store.GetTask(taskID)
if err != nil {
writeJSON(w, http.StatusNotFound, map[string]string{"error": "task not found"})
return
}
if tk.State != task.StateBlocked {
writeJSON(w, http.StatusConflict, map[string]string{"error": "task is not blocked"})
return
}
var input struct {
Answer string `json:"answer"`
}
if err := json.NewDecoder(r.Body).Decode(&input); err != nil {
writeJSON(w, http.StatusBadRequest, map[string]string{"error": "invalid JSON: " + err.Error()})
return
}
if input.Answer == "" {
writeJSON(w, http.StatusBadRequest, map[string]string{"error": "answer is required"})
return
}
// Look up the session ID from the most recent execution.
latest, err := s.store.GetLatestExecution(taskID)
if err != nil || latest.SessionID == "" {
writeJSON(w, http.StatusInternalServerError, map[string]string{"error": "no resumable session found"})
return
}
// Clear the question and transition to QUEUED.
s.store.UpdateTaskQuestion(taskID, "")
s.store.UpdateTaskState(taskID, task.StateQueued)
// Submit a resume execution.
resumeExec := &storage.Execution{
ID: uuid.New().String(),
TaskID: taskID,
ResumeSessionID: latest.SessionID,
ResumeAnswer: input.Answer,
}
if err := s.pool.SubmitResume(r.Context(), tk, resumeExec); err != nil {
writeJSON(w, http.StatusServiceUnavailable, map[string]string{"error": err.Error()})
return
}
writeJSON(w, http.StatusOK, map[string]string{"status": "queued"})
}
func (s *Server) handleHealth(w http.ResponseWriter, r *http.Request) {
writeJSON(w, http.StatusOK, map[string]string{"status": "ok"})
}
func (s *Server) handleCreateTask(w http.ResponseWriter, r *http.Request) {
var input struct {
Name string `json:"name"`
Description string `json:"description"`
Claude task.ClaudeConfig `json:"claude"`
Timeout string `json:"timeout"`
Priority string `json:"priority"`
Tags []string `json:"tags"`
ParentTaskID string `json:"parent_task_id"`
}
if err := json.NewDecoder(r.Body).Decode(&input); err != nil {
writeJSON(w, http.StatusBadRequest, map[string]string{"error": "invalid JSON: " + err.Error()})
return
}
now := time.Now().UTC()
t := &task.Task{
ID: uuid.New().String(),
Name: input.Name,
Description: input.Description,
Claude: input.Claude,
Priority: task.Priority(input.Priority),
Tags: input.Tags,
DependsOn: []string{},
Retry: task.RetryConfig{MaxAttempts: 1, Backoff: "exponential"},
State: task.StatePending,
CreatedAt: now,
UpdatedAt: now,
ParentTaskID: input.ParentTaskID,
}
if t.Priority == "" {
t.Priority = task.PriorityNormal
}
if t.Tags == nil {
t.Tags = []string{}
}
if input.Timeout != "" {
dur, err := time.ParseDuration(input.Timeout)
if err != nil {
writeJSON(w, http.StatusBadRequest, map[string]string{"error": "invalid timeout: " + err.Error()})
return
}
t.Timeout.Duration = dur
}
if err := task.Validate(t); err != nil {
writeJSON(w, http.StatusBadRequest, map[string]string{"error": err.Error()})
return
}
if err := s.store.CreateTask(t); err != nil {
writeJSON(w, http.StatusInternalServerError, map[string]string{"error": err.Error()})
return
}
writeJSON(w, http.StatusCreated, t)
}
func (s *Server) handleListTasks(w http.ResponseWriter, r *http.Request) {
filter := storage.TaskFilter{}
if state := r.URL.Query().Get("state"); state != "" {
filter.State = task.State(state)
}
tasks, err := s.store.ListTasks(filter)
if err != nil {
writeJSON(w, http.StatusInternalServerError, map[string]string{"error": err.Error()})
return
}
if tasks == nil {
tasks = []*task.Task{}
}
writeJSON(w, http.StatusOK, tasks)
}
func (s *Server) handleGetTask(w http.ResponseWriter, r *http.Request) {
id := r.PathValue("id")
t, err := s.store.GetTask(id)
if err != nil {
writeJSON(w, http.StatusNotFound, map[string]string{"error": "task not found"})
return
}
writeJSON(w, http.StatusOK, t)
}
func (s *Server) handleRunTask(w http.ResponseWriter, r *http.Request) {
id := r.PathValue("id")
t, err := s.store.GetTask(id)
if err != nil {
writeJSON(w, http.StatusNotFound, map[string]string{"error": "task not found"})
return
}
if !task.ValidTransition(t.State, task.StateQueued) {
writeJSON(w, http.StatusConflict, map[string]string{
"error": fmt.Sprintf("task cannot be queued from state %s", t.State),
})
return
}
if err := s.store.UpdateTaskState(id, task.StateQueued); err != nil {
writeJSON(w, http.StatusInternalServerError, map[string]string{"error": err.Error()})
return
}
t.State = task.StateQueued
if err := s.pool.Submit(context.Background(), t); err != nil {
writeJSON(w, http.StatusServiceUnavailable, map[string]string{"error": fmt.Sprintf("executor pool: %v", err)})
return
}
writeJSON(w, http.StatusAccepted, map[string]string{
"message": "task queued for execution",
"task_id": id,
})
}
func (s *Server) handleAcceptTask(w http.ResponseWriter, r *http.Request) {
id := r.PathValue("id")
t, err := s.store.GetTask(id)
if err != nil {
writeJSON(w, http.StatusNotFound, map[string]string{"error": "task not found"})
return
}
if !task.ValidTransition(t.State, task.StateCompleted) {
writeJSON(w, http.StatusConflict, map[string]string{
"error": fmt.Sprintf("task cannot be accepted from state %s", t.State),
})
return
}
if err := s.store.UpdateTaskState(id, task.StateCompleted); err != nil {
writeJSON(w, http.StatusInternalServerError, map[string]string{"error": err.Error()})
return
}
writeJSON(w, http.StatusOK, map[string]string{"message": "task accepted", "task_id": id})
}
func (s *Server) handleRejectTask(w http.ResponseWriter, r *http.Request) {
id := r.PathValue("id")
t, err := s.store.GetTask(id)
if err != nil {
writeJSON(w, http.StatusNotFound, map[string]string{"error": "task not found"})
return
}
if !task.ValidTransition(t.State, task.StatePending) {
writeJSON(w, http.StatusConflict, map[string]string{
"error": fmt.Sprintf("task cannot be rejected from state %s", t.State),
})
return
}
var input struct {
Comment string `json:"comment"`
}
if err := json.NewDecoder(r.Body).Decode(&input); err != nil {
writeJSON(w, http.StatusBadRequest, map[string]string{"error": "invalid JSON: " + err.Error()})
return
}
if err := s.store.RejectTask(id, input.Comment); err != nil {
writeJSON(w, http.StatusInternalServerError, map[string]string{"error": err.Error()})
return
}
writeJSON(w, http.StatusOK, map[string]string{"message": "task rejected", "task_id": id})
}
func (s *Server) handleListSubtasks(w http.ResponseWriter, r *http.Request) {
parentID := r.PathValue("id")
tasks, err := s.store.ListSubtasks(parentID)
if err != nil {
writeJSON(w, http.StatusInternalServerError, map[string]string{"error": err.Error()})
return
}
if tasks == nil {
tasks = []*task.Task{}
}
writeJSON(w, http.StatusOK, tasks)
}
func (s *Server) handleListExecutions(w http.ResponseWriter, r *http.Request) {
taskID := r.PathValue("id")
execs, err := s.store.ListExecutions(taskID)
if err != nil {
writeJSON(w, http.StatusInternalServerError, map[string]string{"error": err.Error()})
return
}
if execs == nil {
execs = []*storage.Execution{}
}
writeJSON(w, http.StatusOK, execs)
}
func (s *Server) handleGetExecution(w http.ResponseWriter, r *http.Request) {
id := r.PathValue("id")
exec, err := s.store.GetExecution(id)
if err != nil {
writeJSON(w, http.StatusNotFound, map[string]string{"error": "execution not found"})
return
}
writeJSON(w, http.StatusOK, exec)
}
func writeJSON(w http.ResponseWriter, status int, v interface{}) {
w.Header().Set("Content-Type", "application/json")
w.WriteHeader(status)
json.NewEncoder(w).Encode(v)
}
func corsMiddleware(next http.Handler) http.Handler {
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
w.Header().Set("Access-Control-Allow-Origin", "*")
w.Header().Set("Access-Control-Allow-Methods", "GET, POST, PUT, DELETE, OPTIONS")
w.Header().Set("Access-Control-Allow-Headers", "Content-Type, Authorization")
if r.Method == "OPTIONS" {
w.WriteHeader(http.StatusOK)
return
}
next.ServeHTTP(w, r)
})
}
|