@kody-ade/kody-engine 0.4.113 → 0.4.115

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 +8 -3
  2. package/package.json +1 -1
package/dist/bin/kody.js CHANGED
@@ -880,7 +880,7 @@ var init_loadPriorArt = __esm({
880
880
  // package.json
881
881
  var package_default = {
882
882
  name: "@kody-ade/kody-engine",
883
- version: "0.4.113",
883
+ version: "0.4.115",
884
884
  description: "kody \u2014 autonomous development engine. Single-session Claude Code agent behind a generic executor + declarative executable profiles.",
885
885
  license: "MIT",
886
886
  type: "module",
@@ -4695,6 +4695,10 @@ async function defaultRunJob(job) {
4695
4695
  process.exit(cloneCode);
4696
4696
  return;
4697
4697
  }
4698
+ const authorName = process.env.GIT_AUTHOR_NAME ?? "Kody Bot";
4699
+ const authorEmail = process.env.GIT_AUTHOR_EMAIL ?? "kody-bot@users.noreply.github.com";
4700
+ await run("git", ["config", "user.name", authorName], workdir);
4701
+ await run("git", ["config", "user.email", authorEmail], workdir);
4698
4702
  process.stdout.write(`[runner-serve] job ${job.jobId}: running issue #${job.issueNumber}
4699
4703
  `);
4700
4704
  const runCode = await run("kody", ["run", "--issue", String(job.issueNumber)], workdir);
@@ -5217,9 +5221,10 @@ var poolServe = async (ctx) => {
5217
5221
  }
5218
5222
  }
5219
5223
  });
5224
+ const apiHost = process.env.POOL_API_HOST ?? "::";
5220
5225
  await new Promise((resolve4) => {
5221
- server.listen(apiPort, "0.0.0.0", () => {
5222
- log(`listening on 0.0.0.0:${apiPort} (min=${min}, app=${app}, region=${region})`);
5226
+ server.listen(apiPort, apiHost, () => {
5227
+ log(`listening on ${apiHost}:${apiPort} (min=${min}, app=${app}, region=${region})`);
5223
5228
  resolve4();
5224
5229
  });
5225
5230
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kody-ade/kody-engine",
3
- "version": "0.4.113",
3
+ "version": "0.4.115",
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",