ai-sprint-kit 2.1.32 → 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 +5 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -156,6 +156,7 @@ 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
|
|
|
@@ -164,17 +165,17 @@ Ralph works through each feature, checking off tasks as completed.
|
|
|
164
165
|
For **unattended execution** without approval prompts, use the shell script:
|
|
165
166
|
|
|
166
167
|
```bash
|
|
167
|
-
# Simple mode
|
|
168
|
-
.claude/scripts/ralph-loop.sh "fix all TypeScript errors" --promise "0 errors"
|
|
168
|
+
# Simple mode (with verbose output)
|
|
169
|
+
.claude/scripts/ralph-loop.sh "fix all TypeScript errors" --promise "0 errors" --verbose
|
|
169
170
|
|
|
170
171
|
# PRD mode
|
|
171
|
-
.claude/scripts/ralph-loop.sh --prd ai_context/ralph/prd.md --max-iterations 50
|
|
172
|
+
.claude/scripts/ralph-loop.sh --prd ai_context/ralph/prd.md --max-iterations 50 --verbose
|
|
172
173
|
|
|
173
174
|
# Check status
|
|
174
175
|
.claude/scripts/ralph-status.sh
|
|
175
176
|
|
|
176
177
|
# Resume interrupted session
|
|
177
|
-
.claude/scripts/ralph-loop.sh --resume
|
|
178
|
+
.claude/scripts/ralph-loop.sh --resume --verbose
|
|
178
179
|
```
|
|
179
180
|
|
|
180
181
|
The shell script uses `--dangerously-skip-permissions` to bypass approval gates - ideal for overnight tasks, migrations, and CI/CD pipelines.
|