create-claude-workspace 2.3.28 → 2.3.29
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/dist/scheduler/loop.mjs +1 -1
- package/package.json +1 -1
package/dist/scheduler/loop.mjs
CHANGED
|
@@ -410,7 +410,7 @@ async function runTaskPipeline(task, workerId, agents, deps) {
|
|
|
410
410
|
pipeline.workerId = workerId;
|
|
411
411
|
state.pipelines[task.id] = pipeline;
|
|
412
412
|
// Determine which steps to skip (for resumed pipelines)
|
|
413
|
-
const skipTo = resumeStep ?? '
|
|
413
|
+
const skipTo = resumeStep ?? 'triage';
|
|
414
414
|
const stepOrder = ['triage', 'plan', 'implement', 'test', 'review', 'rework', 'commit', 'pr-create', 'pr-watch', 'merge'];
|
|
415
415
|
const skipToIndex = stepOrder.indexOf(skipTo);
|
|
416
416
|
const shouldSkip = (step) => stepOrder.indexOf(step) < skipToIndex;
|