@kody-ade/kody-engine 0.4.184 → 0.4.185

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 +6 -8
  2. package/package.json +1 -1
package/dist/bin/kody.js CHANGED
@@ -1309,7 +1309,7 @@ var init_loadPriorArt = __esm({
1309
1309
  // package.json
1310
1310
  var package_default = {
1311
1311
  name: "@kody-ade/kody-engine",
1312
- version: "0.4.184",
1312
+ version: "0.4.185",
1313
1313
  description: "kody \u2014 autonomous development engine. Single-session Claude Code agent behind a generic executor + declarative executable profiles.",
1314
1314
  license: "MIT",
1315
1315
  type: "module",
@@ -1656,11 +1656,7 @@ function loadConfig(projectDir = process.cwd()) {
1656
1656
  issueContext: parseIssueContext(raw.issueContext),
1657
1657
  testRequirements: parseTestRequirements(raw.testRequirements),
1658
1658
  defaultExecutable: typeof raw.defaultExecutable === "string" && raw.defaultExecutable.length > 0 ? raw.defaultExecutable : "run",
1659
- // No bare-PR default ships with the engine (there is no `fix` executable),
1660
- // so leave this unset unless a consumer configures a real one. Dispatch
1661
- // treats a missing/unknown default as "unrecognized" rather than routing
1662
- // to a phantom executable that would crash the executor at load time.
1663
- defaultPrExecutable: typeof raw.defaultPrExecutable === "string" && raw.defaultPrExecutable.length > 0 ? raw.defaultPrExecutable : void 0,
1659
+ defaultPrExecutable: typeof raw.defaultPrExecutable === "string" && raw.defaultPrExecutable.length > 0 ? raw.defaultPrExecutable : "fix",
1664
1660
  aliases: mergeAliases(raw.aliases),
1665
1661
  classify: parseClassifyConfig(raw.classify),
1666
1662
  release: parseReleaseConfig(raw.release),
@@ -1723,7 +1719,9 @@ function parseJobsConfig(raw) {
1723
1719
  return Object.keys(out).length > 0 ? out : void 0;
1724
1720
  }
1725
1721
  var BUILTIN_ALIASES = {
1726
- build: "run"
1722
+ build: "run",
1723
+ orchestrate: "bug",
1724
+ orchestrator: "bug"
1727
1725
  };
1728
1726
  function mergeAliases(raw) {
1729
1727
  const out = { ...BUILTIN_ALIASES };
@@ -3306,7 +3304,7 @@ function autoDispatch(opts) {
3306
3304
  }
3307
3305
  }
3308
3306
  if (!executable && !firstToken) {
3309
- executable = isPr ? opts?.config?.defaultPrExecutable ?? null : opts?.config?.defaultExecutable ?? null;
3307
+ executable = isPr ? opts?.config?.defaultPrExecutable ?? "fix" : opts?.config?.defaultExecutable ?? null;
3310
3308
  }
3311
3309
  if (isBotAuthor && !consumedFirstToken) {
3312
3310
  process.stderr.write(
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kody-ade/kody-engine",
3
- "version": "0.4.184",
3
+ "version": "0.4.185",
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",