@kody-ade/kody-engine 0.4.189 → 0.4.190

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
@@ -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.189",
1312
+ version: "0.4.190",
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",
@@ -18,7 +18,12 @@ ARG BASE_IMAGE=node:22-alpine
18
18
  FROM ${BASE_IMAGE}
19
19
  WORKDIR /app
20
20
 
21
- RUN corepack enable 2>/dev/null || true
21
+ # corepack's default pnpm on the base image can fall outside the app's
22
+ # engines.pnpm range → ERR_PNPM_UNSUPPORTED_ENGINE. Pin a current pnpm
23
+ # for repos that don't set packageManager (corepack still honors one
24
+ # when present, so this only affects the unpinned case).
25
+ RUN corepack enable 2>/dev/null || true; \
26
+ corepack prepare pnpm@10.17.0 --activate 2>/dev/null || npm i -g pnpm@10 2>/dev/null || true
22
27
 
23
28
  COPY package.json pnpm-lock.yaml* package-lock.json* yarn.lock* ./
24
29
  RUN --mount=type=cache,id=kp-pnpm-store,target=/root/.local/share/pnpm/store \
@@ -12,7 +12,12 @@ ARG BASE_IMAGE=node:22-alpine
12
12
  FROM ${BASE_IMAGE}
13
13
  WORKDIR /app
14
14
 
15
- RUN corepack enable 2>/dev/null || true
15
+ # corepack's default pnpm on the base image can fall outside the app's
16
+ # engines.pnpm range → ERR_PNPM_UNSUPPORTED_ENGINE. Pin a current pnpm
17
+ # for repos that don't set packageManager (corepack still honors one
18
+ # when present, so this only affects the unpinned case).
19
+ RUN corepack enable 2>/dev/null || true; \
20
+ corepack prepare pnpm@10.17.0 --activate 2>/dev/null || npm i -g pnpm@10 2>/dev/null || true
16
21
 
17
22
  COPY package.json pnpm-lock.yaml* package-lock.json* yarn.lock* ./
18
23
  RUN --mount=type=cache,id=kp-pnpm-store,target=/root/.local/share/pnpm/store \
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kody-ade/kody-engine",
3
- "version": "0.4.189",
3
+ "version": "0.4.190",
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",