kairn-cli 2.4.1 → 2.4.2

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/cli.js CHANGED
@@ -6230,7 +6230,8 @@ evolveCommand.command("run").description("Run tasks against the current harness"
6230
6230
  process.exit(1);
6231
6231
  }
6232
6232
  const evolveConfig = await loadEvolveConfigFromWorkspace(workspace);
6233
- if (options.interactive) {
6233
+ const hasExplicitFlags = options.iterations !== "5" || options.runs !== "1" || options.parallel !== "1" || options.maxMutations !== "3" || options.pruneThreshold !== "95" || options.maxTaskDrop !== "20" || options.principal || options.evalSample !== "0";
6234
+ if (!hasExplicitFlags) {
6234
6235
  console.log(chalk14.dim(" Configure evolution settings:\n"));
6235
6236
  const preset = await select4({
6236
6237
  message: "Evolution preset",