You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You will be given a diff with 'jj diff --from {{start_change_id}} --to {{end_change_id}}'. The task is to write a specification which describes the introduced changes.
10
10
11
-
You need to produce a full detailed specification in the folder 'specs/'. Imagine that the changes that the diff shows disappeared and we had to implement the functionality from scratch. The specification must contain all necessary details in order to be ample to implement equivalent functionality.
11
+
You need to produce a full detailed specification in the folder 'specs/'. Imagine that the changes that the diff shows disappeared and we had to implement the functionality from scratch. The specification must contain all necessary details in order to be possible to implement equivalent functionality.
bash scripts/agent-workspace.sh run {{workspace_id}} --workflow human-work-step -- just --justfile .agent-tools/agents.just --set workspace_id {{workspace_id}} human-work-step-inner
258
+
259
+
260
+
human-work-step-inner:
224
261
#!/usr/bin/env sh
225
-
just agents::edit
262
+
just --justfile .agent-tools/agents.just --set workspace_id {{workspace_id}}edit-inner
226
263
jj split issues.md -m "issues: Update after review"
227
264
jj edit @-
228
265
229
-
ai-work-step:next-issuereview-change
266
+
ai-work-stepworkspace_id:
267
+
bash scripts/agent-workspace.sh run {{workspace_id}} --workflow ai-work-step -- just --justfile .agent-tools/agents.just --set workspace_id {{workspace_id}} ai-work-step-inner
268
+
269
+
270
+
ai-work-step-inner:
271
+
#!/usr/bin/env sh
272
+
just --justfile .agent-tools/agents.just --set workspace_id {{workspace_id}} next-issue-inner
273
+
just --justfile .agent-tools/agents.just --set workspace_id {{workspace_id}} review-change-inner
230
274
231
275
# Use this step when starting to work on a new issue
232
-
work:
276
+
workworkspace_id:
277
+
bash scripts/agent-workspace.sh run {{workspace_id}} --workflow work -- just --justfile .agent-tools/agents.just --set workspace_id {{workspace_id}} work-inner
278
+
279
+
280
+
work-inner:
233
281
#!/usr/bin/env sh
234
282
while true; do
235
-
just agents::pick-next-issue
283
+
just --justfile .agent-tools/agents.just --set workspace_id {{workspace_id}}pick-next-issue-inner
236
284
[ -f next-issue.md ] || break
237
-
just agents::ai-work-step
238
-
just agents::human-work-step
285
+
just --justfile .agent-tools/agents.just --set workspace_id {{workspace_id}}ai-work-step-inner
286
+
just --justfile .agent-tools/agents.just --set workspace_id {{workspace_id}}human-work-step-inner
239
287
done
240
288
241
289
# This should be started if you stop at editor phase and want to continue from where you left off
242
290
# Current commit should be the last review commit
243
-
continue-work:
291
+
continue-workworkspace_id:
292
+
bash scripts/agent-workspace.sh run {{workspace_id}} --workflow continue-work -- just --justfile .agent-tools/agents.just --set workspace_id {{workspace_id}} continue-work-inner
293
+
294
+
295
+
continue-work-inner:
244
296
#!/usr/bin/env sh
245
297
while true; do
246
-
just agents::human-work-step
247
-
just agents::pick-next-issue
298
+
just --justfile .agent-tools/agents.just --set workspace_id {{workspace_id}}human-work-step-inner
299
+
just --justfile .agent-tools/agents.just --set workspace_id {{workspace_id}}pick-next-issue-inner
248
300
[ -f next-issue.md ] || break
249
-
just agents::ai-work-step
301
+
just --justfile .agent-tools/agents.just --set workspace_id {{workspace_id}}ai-work-step-inner
0 commit comments