@kody-ade/kody-engine 0.4.113 → 0.4.114
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 +4 -3
- 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.
|
|
883
|
+
version: "0.4.114",
|
|
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",
|
|
@@ -5217,9 +5217,10 @@ var poolServe = async (ctx) => {
|
|
|
5217
5217
|
}
|
|
5218
5218
|
}
|
|
5219
5219
|
});
|
|
5220
|
+
const apiHost = process.env.POOL_API_HOST ?? "::";
|
|
5220
5221
|
await new Promise((resolve4) => {
|
|
5221
|
-
server.listen(apiPort,
|
|
5222
|
-
log(`listening on
|
|
5222
|
+
server.listen(apiPort, apiHost, () => {
|
|
5223
|
+
log(`listening on ${apiHost}:${apiPort} (min=${min}, app=${app}, region=${region})`);
|
|
5223
5224
|
resolve4();
|
|
5224
5225
|
});
|
|
5225
5226
|
});
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kody-ade/kody-engine",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.114",
|
|
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",
|