@kody-ade/kody-engine 0.4.204-next.6 → 0.4.204-next.7

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/kody.js +26 -3
  2. package/package.json +1 -1
package/dist/bin/kody.js CHANGED
@@ -1483,7 +1483,7 @@ var init_loadCoverageRules = __esm({
1483
1483
  // package.json
1484
1484
  var package_default = {
1485
1485
  name: "@kody-ade/kody-engine",
1486
- version: "0.4.204-next.6",
1486
+ version: "0.4.204-next.7",
1487
1487
  description: "kody \u2014 autonomous development engine. Single-session Claude Code agent behind a generic executor + declarative executable profiles.",
1488
1488
  license: "MIT",
1489
1489
  type: "module",
@@ -15653,9 +15653,32 @@ async function runCi(argv) {
15653
15653
 
15654
15654
  `);
15655
15655
  try {
15656
- unpackAllSecrets();
15656
+ const n = unpackAllSecrets();
15657
+ if (n > 0) process.stdout.write(`\u2192 kody: unpacked ${n} secret(s)
15658
+ `);
15657
15659
  await resolveAuthToken();
15658
- } catch {
15660
+ const pm = args.packageManager ?? detectPackageManager2(cwd);
15661
+ if (!args.skipInstall) {
15662
+ const code = installDeps(pm, cwd);
15663
+ if (code !== 0) {
15664
+ process.stderr.write(`[kody] dependency install failed (exit ${code})
15665
+ `);
15666
+ return 99;
15667
+ }
15668
+ }
15669
+ if (!args.skipLitellm) {
15670
+ const code = installLitellmIfNeeded(cwd);
15671
+ if (code !== 0) {
15672
+ process.stderr.write(`[kody] litellm install failed (exit ${code})
15673
+ `);
15674
+ return 99;
15675
+ }
15676
+ }
15677
+ configureGitIdentity(cwd);
15678
+ } catch (err) {
15679
+ process.stderr.write(`[kody] manual duty preflight crashed: ${String(err)}
15680
+ `);
15681
+ return 99;
15659
15682
  }
15660
15683
  const result = await runExecutableChain(forceRunDuty, {
15661
15684
  cliArgs: {},
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kody-ade/kody-engine",
3
- "version": "0.4.204-next.6",
3
+ "version": "0.4.204-next.7",
4
4
  "description": "kody — autonomous development engine. Single-session Claude Code agent behind a generic executor + declarative executable profiles.",
5
5
  "license": "MIT",
6
6
  "type": "module",