issue-105: serialize issue creation with 3s pacing #106
No reviewers
Labels
No labels
bug
chore
documentation
enhancement
feature
ready
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set
Reference
david/pi-extensions-and-skills!106
Loading…
Reference in a new issue
No description provided.
Delete branch "feature/issue-105/serialize-issue-creation"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Closes #105
What
Updates
skills/create-issues/SKILL.mdso the agent serializes issue/milestone creation and waits 3 seconds after each create, preventing race conditions that produce non-sequential issue numbers.Why
When the agent fires several issue-create calls in one parallel tool block, the host assigns issue numbers in non-deterministic order (observed on Forgejo: a later step ending up with a lower number than an earlier one). A post-create sleep alone does not fix this — creates must also be serialized, one per turn, so no two creates are in flight at once.
Changes
bash sleep 3) before issuing the next.Notes