@pageai/ralph-loop 1.8.0 → 1.9.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.
package/.agent/PROMPT.md CHANGED
@@ -34,10 +34,11 @@ Tasks are listed in @.agent/tasks.json
34
34
 
35
35
  ## Rules
36
36
 
37
- - **IMPORTANT**: only work on one task at a time and **exit closing all background processes**. **DO NOT** start another task.
37
+ - **CRITICAL**: Only work on **ONE task per invocation**. After committing the task, output `<promise>TASK-{ID}:DONE</promise>` and **STOP immediately**. Do NOT read the next task. Do NOT continue working. Your response **must END** after the promise tag. Any output after it is a violation.
38
+ - Kill all background processes (dev server, etc.) before outputting the promise tag.
38
39
  - No git init/remote changes. **No git push**.
39
40
  - Check the last 5 tasks in `.agent/logs/LOG.md` for past work
40
- - **CRITICAL**: When ALL tasks pass → output `<promise>COMPLETE</promise>` and **nothing else**.
41
+ - **CRITICAL**: When **ALL** tasks pass → output `<promise>COMPLETE</promise>` and **nothing else**.
41
42
 
42
43
  ## Help Tags
43
44
 
package/README.md CHANGED
@@ -57,7 +57,7 @@ npx @pageai/ralph-loop
57
57
  ### 2️⃣ Step 2: Create a PRD + task list
58
58
 
59
59
  Use the `prd-creator` skill to generate a PRD from your requirements.<br/>
60
- Open up Claude Code and prompt it with **your requirements**. Like so:
60
+ Open up Claude Code or Cursor etc. and prompt it with **your requirements**. Like so:
61
61
 
62
62
  ```
63
63
  Use the prd-creator skill to help me create a PRD and task list for the below requirements.
package/bin/cli.js CHANGED
@@ -360,7 +360,7 @@ async function main() {
360
360
  }
361
361
  }
362
362
 
363
- s.stop('Done');
363
+ s.stop('Essentials prepared');
364
364
  }
365
365
 
366
366
  // Success message
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pageai/ralph-loop",
3
- "version": "1.8.0",
3
+ "version": "1.9.0",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },