fabis-ralph-loop 1.0.1 → 1.1.0

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
@@ -113,3 +113,11 @@ After completing one story (commit done, prd.json updated, progress appended):
113
113
  - Read the Codebase Patterns section in `.ralph/progress.txt` before starting
114
114
  - Do NOT push — git push is blocked in this sandbox
115
115
  - Do NOT modify stories other than the one you're working on
116
+
117
+ ### Tasks before stopping
118
+
119
+ This must be done before you finish up your work:
120
+
121
+ - Ensure all changes are git committed
122
+ - Stop any background processes you started (dev servers etc.)
123
+ - If you changed the git author from the previous local/global one, undo those changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fabis-ralph-loop",
3
- "version": "1.0.1",
3
+ "version": "1.1.0",
4
4
  "description": "CLI for setting up and running Claude Ralph autonomous coding loops in Docker containers",
5
5
  "repository": {
6
6
  "type": "git",