fabis-ralph-loop 1.0.1 → 1.0.2

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.
@@ -70,8 +70,9 @@ RUN echo '<%= user %> ALL=(ALL) NOPASSWD:ALL' >> /etc/sudoers
70
70
  RUN printf 'eval "$(direnv hook bash)" || true\n' >> /etc/bash.bashrc \
71
71
  && printf '[ "$PWD" = "/workspace" ] && eval "$(direnv export bash 2>&1)" 2>/dev/null || true\n' >> /etc/bash.bashrc
72
72
 
73
- # Generate Ralph loop runner that pins the same CLI version as the host
74
- RUN printf '#!/bin/bash\nexec npx --yes fabis-ralph-loop@<%= packageVersion %> run "$@"\n' \
73
+ # Pre-install Ralph loop CLI so it's available immediately (no npx download on first run)
74
+ RUN npm install -g fabis-ralph-loop@<%= packageVersion %>
75
+ RUN printf '#!/bin/bash\nexec fabis-ralph-loop run "$@"\n' \
75
76
  > /usr/local/bin/run-fabis-ralph-loop && chmod +x /usr/local/bin/run-fabis-ralph-loop
76
77
 
77
78
  WORKDIR /workspace
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fabis-ralph-loop",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "CLI for setting up and running Claude Ralph autonomous coding loops in Docker containers",
5
5
  "repository": {
6
6
  "type": "git",