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
|
{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE NoImplicitPrelude #-}
module Omni.Agent.Worker where
import Alpha
import qualified Data.Text as Text
import qualified Data.Text.IO as TIO
import qualified Omni.Agent.Core as Core
import qualified Omni.Agent.Log as AgentLog
import qualified Omni.Task.Core as TaskCore
import qualified System.Directory as Directory
import qualified System.Exit as Exit
import System.FilePath ((</>))
import qualified System.IO as IO
import qualified System.Process as Process
start :: Core.Worker -> Maybe Text -> IO ()
start worker maybeTaskId = do
AgentLog.init (Core.workerName worker)
AgentLog.log ("Worker starting for " <> Core.workerName worker)
runOnce worker maybeTaskId
runOnce :: Core.Worker -> Maybe Text -> IO ()
runOnce worker maybeTaskId = do
-- Find work
targetTask <- case maybeTaskId of
Just tid -> do
TaskCore.findTask tid </ TaskCore.loadTasks
Nothing -> do
readyTasks <- TaskCore.getReadyTasks
case readyTasks of
[] -> pure Nothing
(task : _) -> pure (Just task)
case targetTask of
Nothing -> do
case maybeTaskId of
Just tid -> do
AgentLog.updateActivity ("Task " <> tid <> " not found.")
AgentLog.log ("Task " <> tid <> " not found.")
Nothing -> do
AgentLog.updateActivity "No work found."
AgentLog.log "No ready tasks found."
Just task -> do
processTask worker task
processTask :: Core.Worker -> TaskCore.Task -> IO ()
processTask worker task = do
let repo = Core.workerPath worker
let tid = TaskCore.taskId task
AgentLog.update (\s -> s {AgentLog.statusTask = Just tid})
AgentLog.updateActivity ("Claiming task " <> tid)
-- Claim task
TaskCore.updateTaskStatus tid TaskCore.InProgress []
-- Run Amp
AgentLog.updateActivity "Running Amp agent..."
(exitCode, output) <- runAmp repo task
case exitCode of
Exit.ExitSuccess -> do
AgentLog.log "Agent finished successfully"
-- Run formatting and linting before commit
AgentLog.updateActivity "Running formatters..."
formatResult <- runFormatters repo
case formatResult of
Left err -> do
AgentLog.log ("Formatting failed: " <> err)
AgentLog.updateActivity "Format failed, task incomplete"
-- Don't update status, leave as InProgress for retry
Right () -> do
-- Update status to Review
TaskCore.updateTaskStatus tid TaskCore.Review []
-- Commit changes using Amp output (Gerrit-style trailer)
let commitMsg = formatCommitMessage output tid
commitResult <- tryCommit repo commitMsg
case commitResult of
Left commitErr -> do
AgentLog.log ("Commit failed: " <> commitErr)
AgentLog.updateActivity "Commit failed"
Right () -> do
AgentLog.updateActivity "Task completed"
AgentLog.log ("[✓] Task " <> tid <> " completed")
AgentLog.update (\s -> s {AgentLog.statusTask = Nothing})
Exit.ExitFailure code -> do
AgentLog.log ("Agent failed with code " <> tshow code)
AgentLog.updateActivity "Agent failed, retrying..."
threadDelay (10 * 1000000) -- Sleep 10s
-- | Run lint --fix to format and fix lint issues
runFormatters :: FilePath -> IO (Either Text ())
runFormatters repo = do
let cmd = (Process.proc "lint" ["--fix"]) {Process.cwd = Just repo}
(code, _, _) <- Process.readCreateProcessWithExitCode cmd ""
case code of
Exit.ExitSuccess -> pure (Right ())
Exit.ExitFailure _ -> pure (Right ()) -- lint --fix may exit non-zero but still fix things
-- | Try to commit, returning error message on failure
tryCommit :: FilePath -> Text -> IO (Either Text ())
tryCommit repo msg = do
-- Stage all changes
let addCmd = (Process.proc "git" ["add", "."]) {Process.cwd = Just repo}
(addCode, _, addErr) <- Process.readCreateProcessWithExitCode addCmd ""
case addCode of
Exit.ExitFailure _ -> pure <| Left (Text.pack addErr)
Exit.ExitSuccess -> do
-- Check for changes
let checkCmd = (Process.proc "git" ["diff", "--cached", "--quiet"]) {Process.cwd = Just repo}
(checkCode, _, _) <- Process.readCreateProcessWithExitCode checkCmd ""
case checkCode of
Exit.ExitSuccess -> pure (Right ()) -- Nothing to commit
Exit.ExitFailure 1 -> do
-- There are changes, commit them
let commitCmd = (Process.proc "git" ["commit", "-m", Text.unpack msg]) {Process.cwd = Just repo}
(commitCode, _, commitErr) <- Process.readCreateProcessWithExitCode commitCmd ""
case commitCode of
Exit.ExitSuccess -> pure (Right ())
Exit.ExitFailure _ -> pure <| Left (Text.pack commitErr)
Exit.ExitFailure c -> pure <| Left ("git diff failed with code " <> tshow c)
runAmp :: FilePath -> TaskCore.Task -> IO (Exit.ExitCode, Text)
runAmp repo task = do
-- Check for retry context
maybeRetry <- TaskCore.getRetryContext (TaskCore.taskId task)
let basePrompt =
"You are a Worker Agent.\n"
<> "Your goal is to implement the following task:\n\n"
<> formatTask task
<> "\n\nINSTRUCTIONS:\n"
<> "1. Analyze the codebase (use finder/Grep) to understand where to make changes.\n"
<> "2. Implement the changes by editing files.\n"
<> "3. Run tests to verify your work (e.g., 'bild --test Omni/Namespace').\n"
<> "4. Fix any errors found during testing.\n"
<> "5. Do NOT update the task status or manage git branches.\n"
<> "6. When finished and tested, exit.\n\n"
<> "Context:\n"
<> "- You are working in '"
<> Text.pack repo
<> "'.\n"
<> "- The task is in namespace '"
<> fromMaybe "root" (TaskCore.taskNamespace task)
<> "'.\n"
-- Add retry context if present
let retryPrompt = case maybeRetry of
Nothing -> ""
Just ctx ->
"\n\n## RETRY CONTEXT (IMPORTANT)\n\n"
<> "This task was previously attempted but failed. Attempt: "
<> tshow (TaskCore.retryAttempt ctx)
<> "/3\n"
<> "Reason: "
<> TaskCore.retryReason ctx
<> "\n\n"
<> ( if null (TaskCore.retryConflictFiles ctx)
then ""
else
"Conflicting files from previous attempt:\n"
<> Text.unlines (map (" - " <>) (TaskCore.retryConflictFiles ctx))
<> "\n"
)
<> "Original commit: "
<> TaskCore.retryOriginalCommit ctx
<> "\n\n"
<> "INSTRUCTIONS FOR RETRY:\n"
<> "- The codebase has changed since your last attempt\n"
<> "- Re-implement this task on top of the CURRENT codebase\n"
<> "- If there were merge conflicts, the conflicting files may have been modified by others\n"
<> "- Review the current state of those files before making changes\n"
let prompt = basePrompt <> retryPrompt
let logFile = repo </> "_/llm/amp.log"
-- Read AGENTS.md
agentsMd <-
fmap (fromMaybe "") <| do
exists <- Directory.doesFileExist (repo </> "AGENTS.md")
if exists
then Just </ readFile (repo </> "AGENTS.md")
else pure Nothing
let fullPrompt =
prompt
<> "\n\nREPOSITORY GUIDELINES (AGENTS.md):\n"
<> agentsMd
-- Remove old log file
exists <- Directory.doesFileExist logFile
when exists (Directory.removeFile logFile)
Directory.createDirectoryIfMissing True (repo </> "_/llm")
-- Assume amp is in PATH
let args = ["--try-opus", "--log-level", "debug", "--log-file", "_/llm/amp.log", "--dangerously-allow-all", "-x", Text.unpack fullPrompt]
let cp = (Process.proc "amp" args) {Process.cwd = Just repo, Process.std_out = Process.CreatePipe}
(_, Just hOut, _, ph) <- Process.createProcess cp
tid <- forkIO <| monitorLog logFile ph
exitCode <- Process.waitForProcess ph
output <- TIO.hGetContents hOut
killThread tid
pure (exitCode, output)
formatTask :: TaskCore.Task -> Text
formatTask t =
"Task: "
<> TaskCore.taskId t
<> "\n"
<> "Title: "
<> TaskCore.taskTitle t
<> "\n"
<> "Type: "
<> Text.pack (show (TaskCore.taskType t))
<> "\n"
<> "Status: "
<> Text.pack (show (TaskCore.taskStatus t))
<> "\n"
<> "Priority: "
<> Text.pack (show (TaskCore.taskPriority t))
<> "\n"
<> maybe "" (\p -> "Parent: " <> p <> "\n") (TaskCore.taskParent t)
<> maybe "" (\ns -> "Namespace: " <> ns <> "\n") (TaskCore.taskNamespace t)
<> "Created: "
<> Text.pack (show (TaskCore.taskCreatedAt t))
<> "\n"
<> "Updated: "
<> Text.pack (show (TaskCore.taskUpdatedAt t))
<> "\n"
<> maybe "" (\d -> "Description:\n" <> d <> "\n\n") (TaskCore.taskDescription t)
<> (if null (TaskCore.taskDependencies t) then "" else "\nDependencies:\n" <> Text.unlines (map formatDep (TaskCore.taskDependencies t)))
where
formatDep dep = " - " <> TaskCore.depId dep <> " [" <> Text.pack (show (TaskCore.depType dep)) <> "]"
formatCommitMessage :: Text -> Text -> Text
formatCommitMessage ampOutput taskId =
case Text.lines (Text.strip ampOutput) of
[] -> "Task completed\n\nTask-Id: " <> taskId
[subject] -> cleanSubject subject <> "\n\nTask-Id: " <> taskId
(subject : rest) ->
let body = Text.strip (Text.unlines (dropWhile Text.null rest))
in if Text.null body
then cleanSubject subject <> "\n\nTask-Id: " <> taskId
else cleanSubject subject <> "\n\n" <> body <> "\n\nTask-Id: " <> taskId
where
-- Clean subject line for gitlint compliance:
-- - Remove trailing punctuation (.:!?)
-- - Truncate to 72 chars
-- - Capitalize first letter
cleanSubject s =
let stripped = Text.dropWhileEnd (`elem` ['.', ':', '!', '?', ' ']) s
truncated = if Text.length stripped > 72 then Text.take 69 stripped <> "..." else stripped
capitalized = case Text.uncons truncated of
Just (c, rest) -> Text.cons (toUpper c) rest
Nothing -> truncated
in capitalized
monitorLog :: FilePath -> Process.ProcessHandle -> IO ()
monitorLog path ph = do
waitForFile path
IO.withFile path IO.ReadMode <| \h -> do
IO.hSetBuffering h IO.LineBuffering
go h
where
go h = do
eof <- IO.hIsEOF h
if eof
then do
mExit <- Process.getProcessExitCode ph
case mExit of
Nothing -> do
threadDelay 100000 -- 0.1s
go h
Just _ -> pure ()
else do
line <- TIO.hGetLine h
AgentLog.processLogLine line
go h
waitForFile :: FilePath -> IO ()
waitForFile path = do
exists <- Directory.doesFileExist path
if exists
then pure ()
else do
threadDelay 100000
waitForFile path
|