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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bmad-auto-copilot",
3
- "version": "1.2.0",
3
+ "version": "1.2.1",
4
4
  "description": "Automated BMAD story development loop using GitHub Copilot CLI — install into any BMAD project",
5
5
  "keywords": [
6
6
  "bmad",
@@ -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
- ITERATION_DELAY="${ITERATION_DELAY:-10}"
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