@kody-ade/kody-engine-lite 0.1.118 → 0.1.120

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.
Files changed (2) hide show
  1. package/dist/bin/cli.js +2 -2
  2. package/package.json +1 -1
package/dist/bin/cli.js CHANGED
@@ -4414,7 +4414,7 @@ async function executeVerifyWithAutofix(ctx, def) {
4414
4414
  const defaultRunner = getRunnerForStage(ctx, "taskify");
4415
4415
  const diagConfig = getProjectConfig();
4416
4416
  const diagEnv = {};
4417
- if (needsLitellmProxy(diagConfig)) {
4417
+ if (anyStageNeedsProxy(diagConfig)) {
4418
4418
  diagEnv.ANTHROPIC_BASE_URL = getLitellmUrl();
4419
4419
  }
4420
4420
  const diagnosis = await diagnoseFailure(
@@ -5988,7 +5988,7 @@ async function runResolve(options) {
5988
5988
  }
5989
5989
  const model = resolveModel("mid");
5990
5990
  const extraEnv = {};
5991
- if (needsLitellmProxy(config)) {
5991
+ if (anyStageNeedsProxy(config)) {
5992
5992
  extraEnv.ANTHROPIC_BASE_URL = getLitellmUrl();
5993
5993
  }
5994
5994
  logger.info(` Running agent to resolve conflicts (model=${model})...`);
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@kody-ade/kody-engine-lite",
3
3
 
4
- "version": "0.1.118",
4
+ "version": "0.1.120",
5
5
  "description": "Autonomous SDLC pipeline: Kody orchestration + Claude Code + LiteLLM",
6
6
  "license": "MIT",
7
7
  "type": "module",