@kody-ade/kody-engine-lite 0.1.54 → 0.1.55

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 +4 -0
  2. package/package.json +9 -8
package/dist/bin/cli.js CHANGED
@@ -2978,6 +2978,10 @@ async function main() {
2978
2978
  const proxyRunning = await checkLitellmHealth(config2.agent.litellmUrl);
2979
2979
  if (!proxyRunning) {
2980
2980
  litellmProcess2 = await tryStartLitellm(config2.agent.litellmUrl, projectDir);
2981
+ if (!litellmProcess2) {
2982
+ logger.warn("LiteLLM not available \u2014 falling back to Anthropic models");
2983
+ config2.agent.litellmUrl = void 0;
2984
+ }
2981
2985
  }
2982
2986
  if (config2.agent.litellmUrl) {
2983
2987
  process.env.ANTHROPIC_BASE_URL = config2.agent.litellmUrl;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kody-ade/kody-engine-lite",
3
- "version": "0.1.54",
3
+ "version": "0.1.55",
4
4
  "description": "Autonomous SDLC pipeline: Kody orchestration + Claude Code + LiteLLM",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -13,6 +13,13 @@
13
13
  "templates",
14
14
  "kody.config.schema.json"
15
15
  ],
16
+ "scripts": {
17
+ "kody": "tsx src/entry.ts",
18
+ "build": "tsup",
19
+ "test": "vitest run",
20
+ "typecheck": "tsc --noEmit",
21
+ "prepublishOnly": "pnpm build"
22
+ },
16
23
  "dependencies": {
17
24
  "dotenv": "^16.4.7"
18
25
  },
@@ -25,11 +32,5 @@
25
32
  },
26
33
  "engines": {
27
34
  "node": ">=22"
28
- },
29
- "scripts": {
30
- "kody": "tsx src/entry.ts",
31
- "build": "tsup",
32
- "test": "vitest run",
33
- "typecheck": "tsc --noEmit"
34
35
  }
35
- }
36
+ }