create-claude-workspace 2.3.36 → 2.3.37
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 +4 -1
- package/package.json +1 -1
package/dist/scheduler/loop.mjs
CHANGED
|
@@ -419,7 +419,10 @@ async function runTaskPipeline(task, workerId, agents, deps) {
|
|
|
419
419
|
const skipTo = resumeStep ?? 'triage';
|
|
420
420
|
const stepOrder = ['triage', 'plan', 'implement', 'test', 'review', 'rework', 'commit', 'pr-create', 'pr-watch', 'merge'];
|
|
421
421
|
const skipToIndex = stepOrder.indexOf(skipTo);
|
|
422
|
-
|
|
422
|
+
// Interactive mode: lean pipeline — plan → implement → commit (skip triage, test, review)
|
|
423
|
+
const interactiveSkip = new Set(['triage', 'test', 'review', 'rework', 're-review']);
|
|
424
|
+
const shouldSkip = (step) => stepOrder.indexOf(step) < skipToIndex ||
|
|
425
|
+
(state.taskMode === 'interactive' && interactiveSkip.has(step));
|
|
423
426
|
try {
|
|
424
427
|
// STEP 0: Triage (platform issues only — features go through PO, bugs go to IT analyst)
|
|
425
428
|
if (!shouldSkip('triage')) {
|