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
252
+
253
+
254
+
human-work-step-inner:
218
255
#!/usr/bin/env sh
219
-
just agents::edit
256
+
just --justfile .agent-tools/agents.just --set workspace_id {{workspace_id}}edit-inner
220
257
jj split issues.md -m "issues: Update after review"
221
258
jj edit @-
222
259
223
-
ai-work-step:next-issuereview-change
260
+
ai-work-stepworkspace_id:
261
+
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
262
+
263
+
264
+
ai-work-step-inner:
265
+
#!/usr/bin/env sh
266
+
just --justfile .agent-tools/agents.just --set workspace_id {{workspace_id}} next-issue-inner
267
+
just --justfile .agent-tools/agents.just --set workspace_id {{workspace_id}} review-change-inner
224
268
225
269
# Use this step when starting to work on a new issue
226
-
work:
270
+
workworkspace_id:
271
+
bash scripts/agent-workspace.sh run {{workspace_id}} --workflow work -- just --justfile .agent-tools/agents.just --set workspace_id {{workspace_id}} work-inner
272
+
273
+
274
+
work-inner:
227
275
#!/usr/bin/env sh
228
276
while true; do
229
-
just agents::pick-next-issue
277
+
just --justfile .agent-tools/agents.just --set workspace_id {{workspace_id}}pick-next-issue-inner
230
278
[ -f next-issue.md ] || break
231
-
just agents::ai-work-step
232
-
just agents::human-work-step
279
+
just --justfile .agent-tools/agents.just --set workspace_id {{workspace_id}}ai-work-step-inner
280
+
just --justfile .agent-tools/agents.just --set workspace_id {{workspace_id}}human-work-step-inner
233
281
done
234
282
235
283
# This should be started if you stop at editor phase and want to continue from where you left off
236
284
# Current commit should be the last review commit
237
-
continue-work:
285
+
continue-workworkspace_id:
286
+
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
287
+
288
+
289
+
continue-work-inner:
238
290
#!/usr/bin/env sh
239
291
while true; do
240
-
just agents::human-work-step
241
-
just agents::pick-next-issue
292
+
just --justfile .agent-tools/agents.just --set workspace_id {{workspace_id}}human-work-step-inner
293
+
just --justfile .agent-tools/agents.just --set workspace_id {{workspace_id}}pick-next-issue-inner
242
294
[ -f next-issue.md ] || break
243
-
just agents::ai-work-step
295
+
just --justfile .agent-tools/agents.just --set workspace_id {{workspace_id}}ai-work-step-inner
0 commit comments