From 0a2757aeacade1a9458bccda64ae41e98dd17731 Mon Sep 17 00:00:00 2001 From: Story Crater Bot <19826264+Riotpiaole@users.noreply.github.com> Date: Sun, 16 Aug 2026 00:34:55 -0700 Subject: [PATCH] fix(agent-pod): pin pi-coding-agent to a version that actually exists on npm 0.1.23 was pi's own internal version string (from local pi --version), not the npm package's semver -- npm has no such release, so the container crash-looped on ETARGET. Latest published is 0.84.2. --- k8s/apps/agent-pod/deployment.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/k8s/apps/agent-pod/deployment.yaml b/k8s/apps/agent-pod/deployment.yaml index 89a15c8..ecf2d0d 100644 --- a/k8s/apps/agent-pod/deployment.yaml +++ b/k8s/apps/agent-pod/deployment.yaml @@ -19,7 +19,7 @@ spec: command: - sh - -c - - "npm install -g @earendil-works/pi-coding-agent@0.1.23 && sleep infinity" + - "npm install -g @earendil-works/pi-coding-agent@0.84.2 && sleep infinity" resources: requests: cpu: "2"