@kody-ade/kody-engine 0.3.22 → 0.3.24

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/bin/kody.js CHANGED
@@ -3,7 +3,7 @@
3
3
  // package.json
4
4
  var package_default = {
5
5
  name: "@kody-ade/kody-engine",
6
- version: "0.3.22",
6
+ version: "0.3.24",
7
7
  description: "kody \u2014 autonomous development engine. Single-session Claude Code agent behind a generic executor + declarative executable profiles.",
8
8
  license: "MIT",
9
9
  type: "module",
@@ -5448,9 +5448,9 @@ async function runExecutable(profileName, input) {
5448
5448
  const fn = preflightScripts[entry.script];
5449
5449
  if (!fn) return finish({ exitCode: 99, reason: `preflight script not registered: ${entry.script}` });
5450
5450
  await fn(ctx, profile, entry.with);
5451
- }
5452
- if (ctx.skipAgent && ctx.output.exitCode !== void 0 && ctx.output.exitCode !== 0) {
5453
- return finish(ctx.output);
5451
+ if (ctx.skipAgent && ctx.output.exitCode !== void 0 && ctx.output.exitCode !== 0) {
5452
+ return finish(ctx.output);
5453
+ }
5454
5454
  }
5455
5455
  }
5456
5456
  let agentResult = null;
@@ -117,7 +117,6 @@ generate_changelog() {
117
117
 
118
118
  format_changelog() {
119
119
  local new_version="$1"
120
- local raw="$2"
121
120
  local date_str
122
121
  date_str=$(date -u +%Y-%m-%d)
123
122
  python3 - "$new_version" "$date_str" <<PY
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kody-ade/kody-engine",
3
- "version": "0.3.22",
3
+ "version": "0.3.24",
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",