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.
@@ -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
- const shouldSkip = (step) => stepOrder.indexOf(step) < skipToIndex;
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')) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-claude-workspace",
3
- "version": "2.3.36",
3
+ "version": "2.3.37",
4
4
  "author": "",
5
5
  "repository": {
6
6
  "type": "git",