codeloop-mcp-server 0.1.85 → 0.1.87

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/index.js CHANGED
@@ -654,7 +654,17 @@ Returns: structured report with pass/fail counts, artifact paths, and next-step
654
654
  tasks_completed: params.tasks_completed,
655
655
  skip_tests: params.skip_tests,
656
656
  };
657
- const output = await runVerify(input, cfg, cwd, onProgress);
657
+ // 0.1.86 enable the auto deep-E2E journey: a full verify on a UI project
658
+ // now LAUNCHES + drives the app itself (final phase) instead of only
659
+ // emitting a "call run_journey next" directive the agent kept skipping.
660
+ // Direct unit-test callers of runVerify don't pass this, so tests never
661
+ // boot a device. Resolve the agent mode (per-call → config → persisted) so
662
+ // the journey's build pre-flight remediation respects audit vs fix.
663
+ const journeyMode = resolveAgentMode({ cwd, paramMode: params.mode, configMode: cfg.agent_mode });
664
+ const output = await runVerify(input, cfg, cwd, onProgress, {
665
+ enableAutoJourney: true,
666
+ journeyMode,
667
+ });
658
668
  await trackUsage(apiKey, "verification_run");
659
669
  return output;
660
670
  }, { tool: "codeloop_verify", cwd, input: params });