ai-sprint-kit 2.1.31 → 2.1.33
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/README.md +21 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -156,9 +156,30 @@ Ralph works through each feature, checking off tasks as completed.
|
|
|
156
156
|
| `--max-iterations N` | 20 | Maximum loop iterations |
|
|
157
157
|
| `--promise STRING` | `<promise>COMPLETED</promise>` | Completion detection string |
|
|
158
158
|
| `--prd FILE` | none | PRD file for multi-feature mode |
|
|
159
|
+
| `--verbose`, `-v` | false | Show real-time output (recommended for debugging) |
|
|
159
160
|
| `--no-auto-commit` | false | Disable git commit after iteration |
|
|
160
161
|
| `--resume` | false | Resume interrupted session |
|
|
161
162
|
|
|
163
|
+
### Shell Script (Fully Autonomous)
|
|
164
|
+
|
|
165
|
+
For **unattended execution** without approval prompts, use the shell script:
|
|
166
|
+
|
|
167
|
+
```bash
|
|
168
|
+
# Simple mode (with verbose output)
|
|
169
|
+
.claude/scripts/ralph-loop.sh "fix all TypeScript errors" --promise "0 errors" --verbose
|
|
170
|
+
|
|
171
|
+
# PRD mode
|
|
172
|
+
.claude/scripts/ralph-loop.sh --prd ai_context/ralph/prd.md --max-iterations 50 --verbose
|
|
173
|
+
|
|
174
|
+
# Check status
|
|
175
|
+
.claude/scripts/ralph-status.sh
|
|
176
|
+
|
|
177
|
+
# Resume interrupted session
|
|
178
|
+
.claude/scripts/ralph-loop.sh --resume --verbose
|
|
179
|
+
```
|
|
180
|
+
|
|
181
|
+
The shell script uses `--dangerously-skip-permissions` to bypass approval gates - ideal for overnight tasks, migrations, and CI/CD pipelines.
|
|
182
|
+
|
|
162
183
|
### Writing Good Prompts
|
|
163
184
|
|
|
164
185
|
**Good prompts converge** - each iteration brings you closer to success:
|