@kody-ade/kody-engine 0.4.322 → 0.4.323

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 +10 -1
  2. package/package.json +1 -1
package/dist/bin/kody.js CHANGED
@@ -15,7 +15,7 @@ var init_package = __esm({
15
15
  "package.json"() {
16
16
  package_default = {
17
17
  name: "@kody-ade/kody-engine",
18
- version: "0.4.322",
18
+ version: "0.4.323",
19
19
  description: "kody \u2014 autonomous development engine. Single-session Claude Code agent behind a generic executor + declarative executable profiles.",
20
20
  license: "MIT",
21
21
  type: "module",
@@ -21981,6 +21981,15 @@ async function runCi(argv) {
21981
21981
  }
21982
21982
  const args = parseCiArgs(argv);
21983
21983
  const cwd = args.cwd ? path46.resolve(args.cwd) : process.cwd();
21984
+ try {
21985
+ const n = unpackAllSecrets();
21986
+ if (n > 0) process.stdout.write(`\u2192 kody: unpacked ${n} secret(s) from ALL_SECRETS
21987
+ `);
21988
+ await resolveAuthToken();
21989
+ } catch (err) {
21990
+ process.stderr.write(`[kody] auth setup warning: ${err instanceof Error ? err.message : String(err)}
21991
+ `);
21992
+ }
21984
21993
  let earlyConfig;
21985
21994
  let earlyConfigError;
21986
21995
  try {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kody-ade/kody-engine",
3
- "version": "0.4.322",
3
+ "version": "0.4.323",
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",