bmad-auto-copilot 1.2.0 → 1.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/templates/bmad-loop.sh +7 -2
package/package.json
CHANGED
package/templates/bmad-loop.sh
CHANGED
|
@@ -56,8 +56,12 @@ PROMPT_DIR="$SCRIPT_DIR/prompts"
|
|
|
56
56
|
COPILOT_MODEL="${COPILOT_MODEL:-gpt-5.3-codex}"
|
|
57
57
|
COPILOT_REASONING_EFFORT="${COPILOT_REASONING_EFFORT:-xhigh}"
|
|
58
58
|
|
|
59
|
-
# Delay between iterations (seconds)
|
|
60
|
-
|
|
59
|
+
# Delay between workflow steps/iterations (seconds)
|
|
60
|
+
# Minimum enforced delay is 60s to reduce rate-limit/ban risk.
|
|
61
|
+
ITERATION_DELAY="${ITERATION_DELAY:-60}"
|
|
62
|
+
if ! [[ "$ITERATION_DELAY" =~ ^[0-9]+$ ]] || [[ "$ITERATION_DELAY" -lt 60 ]]; then
|
|
63
|
+
ITERATION_DELAY=60
|
|
64
|
+
fi
|
|
61
65
|
|
|
62
66
|
# ============================================================
|
|
63
67
|
# CONFIGURATION LOADING
|
|
@@ -336,6 +340,7 @@ log "[START] BMAD Auto Loop Started" "green"
|
|
|
336
340
|
log "Max iterations: $MAX_ITERATIONS" "gray"
|
|
337
341
|
log "Model: $COPILOT_MODEL" "gray"
|
|
338
342
|
log "Reasoning effort: $COPILOT_REASONING_EFFORT" "gray"
|
|
343
|
+
log "Delay between steps: ${ITERATION_DELAY}s" "gray"
|
|
339
344
|
log "Project root: $PROJECT_ROOT" "gray"
|
|
340
345
|
log "Sprint status: $SPRINT_STATUS_PATH" "gray"
|
|
341
346
|
if $DRY_RUN; then
|