agentic-loop 3.16.1 → 3.16.3

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.
@@ -101,7 +101,7 @@ Break the idea into small, executable stories:
101
101
 
102
102
  - Each story completable in one Claude session (~10-15 min)
103
103
  - Max 3-4 acceptance criteria per story
104
- - Max 10 stories (suggest phases if more needed)
104
+ - No limit on story count — generate as many stories as the idea needs
105
105
  - If appending, start IDs from the next available number
106
106
  - **Each story must include its own `techStack`, `constraints`, and `contextFiles`.** Include only what's relevant to that story — don't copy-paste identical context into every story.
107
107
 
@@ -199,7 +199,7 @@ open -a TextEdit .ralph/prd.json
199
199
  Say: "I've {created|updated} the PRD with {N} stories and opened it in TextEdit.
200
200
 
201
201
  Review the PRD and let me know:
202
- - **'approved'** - Ready for `ralph run`
202
+ - **'approved'** - Ready to run in your other terminal
203
203
  - **'edit [changes]'** - Tell me what to change
204
204
  - Or edit the JSON directly and say **'done'**"
205
205
 
@@ -214,9 +214,9 @@ Once approved, say:
214
214
  **Source:** `{idea-file-path}`
215
215
  **PRD:** `.ralph/prd.json` ({N} stories)
216
216
 
217
- To start autonomous development:
217
+ To start autonomous development, open another terminal and run:
218
218
  ```bash
219
- ralph run
219
+ npx agentic-loop run
220
220
  ```
221
221
 
222
222
  Ralph will work through each story, running tests and committing as it goes."
package/README.md CHANGED
@@ -75,7 +75,10 @@ npx agentic-loop run # Execute PRDs autonomously
75
75
 
76
76
  > **Tip:** Use two terminals. Plan with Claude in one, run Ralph in the other.
77
77
 
78
- For the full step-by-step walkthrough, see **[Getting Started](docs/GETTING-STARTED.md)**.
78
+ ---
79
+
80
+ > [!NOTE]
81
+ > **New here?** Follow the **[Getting Started Guide](docs/GETTING-STARTED.md)** for a full step-by-step walkthrough — from install to your first autonomous loop run.
79
82
 
80
83
  ---
81
84
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agentic-loop",
3
- "version": "3.16.1",
3
+ "version": "3.16.3",
4
4
  "description": "Autonomous AI coding loop - PRD-driven development with Claude Code",
5
5
  "author": "Allie Jones <allie@allthrive.ai>",
6
6
  "license": "MIT",
package/ralph/prd.sh CHANGED
@@ -158,10 +158,7 @@ ralph_prd() {
158
158
  printf '%s\n' "- Context for the next story" >> "$prompt_file"
159
159
  printf '\n%s\n' "## Context Rot Check" >> "$prompt_file"
160
160
  printf '\n%s\n' "Before finalizing, validate:" >> "$prompt_file"
161
- printf '%s\n' "- If > 10 stories, recommend splitting into phases" >> "$prompt_file"
162
- printf '%s\n' '- If complexity is "high" AND > 5 stories, MUST split' >> "$prompt_file"
163
161
  printf '%s\n' "- Each story should be completable in one Claude session (~10 min)" >> "$prompt_file"
164
- printf '\n%s\n' "If splitting is needed, generate ONLY phase 1 and note deferred items." >> "$prompt_file"
165
162
  printf '\n%s\n' "## Context in Stories - IMPORTANT" >> "$prompt_file"
166
163
  printf '\n%s\n' "Each story must be self-contained. Include the idea file path in each story's 'contextFiles' array." >> "$prompt_file"
167
164
  printf '%s\n' "Include 'techStack' with the relevant subset of detected technologies for that story." >> "$prompt_file"