agentic-loop 3.16.2 → 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
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agentic-loop",
3
- "version": "3.16.2",
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"