@gluecharm-lab/easyspecs-cli 0.0.20 → 0.0.22

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/main.cjs CHANGED
@@ -11187,7 +11187,7 @@ function mergeEasyspecsCliSettings(cfg, overrides = {}) {
11187
11187
  const listJsonSchemaRepairAttempts = rt?.coordinationRepairs?.listJsonSchemaRepairAttempts ?? readEasyspecsMergedSetting(cfg.easyspecs, "easyspecs.workstations.coordinationListRepairAttempts") ?? 1;
11188
11188
  const markdownEvidenceRepairAttempts = rt?.coordinationRepairs?.markdownEvidenceRepairAttempts ?? readEasyspecsMergedSetting(cfg.easyspecs, "easyspecs.workstations.detailMarkdownRepairAttempts") ?? 2;
11189
11189
  const markdownOpenQuestionIterations = rt?.coordinationRepairs?.markdownOpenQuestionIterations ?? readEasyspecsMergedSetting(cfg.easyspecs, "easyspecs.workstations.openQuestionIterations") ?? 5;
11190
- const maxConcurrentOpenCodeAgents = overrides.maxConcurrentOpenCodeAgents ?? rt?.pool?.maxConcurrentAgents ?? readEasyspecsMergedSetting(cfg.easyspecs, "easyspecs.workstations.maxConcurrentAi") ?? 30;
11190
+ const maxConcurrentOpenCodeAgents = overrides.maxConcurrentOpenCodeAgents ?? readEasyspecsMergedSetting(cfg.easyspecs, "easyspecs.workstations.maxConcurrentAi") ?? rt?.pool?.maxConcurrentAgents ?? 30;
11191
11191
  const promoteContextToWorkspace = overrides.promote === false ? false : overrides.promote === true ? true : analysis.promoteContextToWorkspace !== false;
11192
11192
  let maxOuter = overrides.maxOuterIterationsPerPhase ?? readEasyspecsMergedSetting(cfg.easyspecs, "easyspecs.factory.maxOuterIterationsPerPipeline") ?? orch.maxOuterIterationsPerPhase ?? 0;
11193
11193
  if (ci && maxOuter === 0) {
@@ -11495,9 +11495,8 @@ function getDefaultEasyspecsConfig() {
11495
11495
  markdownEvidenceRepairAttempts: 2,
11496
11496
  markdownOpenQuestionIterations: 5
11497
11497
  },
11498
- pool: {
11499
- maxConcurrentAgents: 30
11500
- },
11498
+ /** Pool cap defaults in {@link mergeEasyspecsCliSettings} (`?? 30`); omit here so `workstations.maxConcurrentAi` is not overridden by merged `pool`. */
11499
+ pool: {},
11501
11500
  projectConfigOverlay: {}
11502
11501
  };
11503
11502
  return {
@@ -27587,7 +27586,7 @@ function formatCliStderrLine(line, useAnsi) {
27587
27586
  }
27588
27587
 
27589
27588
  // src/cli/main.ts
27590
- var PKG_VERSION = "0.0.19";
27589
+ var PKG_VERSION = "0.0.22";
27591
27590
  function isNonEmptyFactoryFailureArray(x) {
27592
27591
  if (!Array.isArray(x) || x.length === 0) {
27593
27592
  return false;