create-claude-workspace 2.3.39 → 2.3.40
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.
|
@@ -371,7 +371,7 @@ If `PLAN.md` exists in the project root, check whether it changed since the last
|
|
|
371
371
|
### 13. One task per invocation — FULL CYCLE required
|
|
372
372
|
- Complete exactly ONE task per invocation, then end the session cleanly.
|
|
373
373
|
- The external loop (`autonomous.mjs` or ralph-loop) handles iteration control — you do NOT need to manage capacity, iteration counters, or session bounds.
|
|
374
|
-
- **CRITICAL: You MUST execute the FULL cycle: STEP 9 → STEP 9b → STEP 10 → EXIT.** Do NOT exit after STEP 9. Creating an MR/PR is NOT the end — you
|
|
374
|
+
- **CRITICAL: You MUST execute the FULL cycle: STEP 9 → STEP 9b → STEP 10 → EXIT.** Do NOT exit after STEP 9. Creating an MR/PR is NOT the end — you MUST watch the CI pipeline (9b), fix any failures, and only then clean up (10). Exiting without watching CI is a bug — the whole point is to ensure the MR/PR is green before handing off.
|
|
375
375
|
- After STEP 10, EXIT. Do NOT ask whether to continue, do NOT wait for confirmation, do NOT start another task. Do NOT create any commits after cleanup.
|
|
376
376
|
- Complexity tracking (S=1, M=2, L=4) is handled by the scheduler in `state.json`.
|
|
377
377
|
|
|
@@ -690,7 +690,7 @@ To determine if a task is frontend, backend, or fullstack, use this heuristic:
|
|
|
690
690
|
- **→ PROCEED TO STEP 9b** (do NOT exit here — MR/PR creation is NOT the end of the cycle)
|
|
691
691
|
|
|
692
692
|
**STEP 9b: CI PIPELINE WATCH & MR/PR REVIEW** (only if git integration active AND remote push succeeded)
|
|
693
|
-
- **Skip conditions**: no remote, no push happened, local-only mode
|
|
693
|
+
- **Skip conditions**: no remote, no push happened, local-only mode
|
|
694
694
|
- **Wait for pipeline to start** (max 60s polling):
|
|
695
695
|
```bash
|
|
696
696
|
# GitHub — wait for workflow run to appear, capture run ID
|