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.
Files changed (2) hide show
  1. package/README.md +21 -0
  2. 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:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ai-sprint-kit",
3
- "version": "2.1.31",
3
+ "version": "2.1.33",
4
4
  "description": "CLI installer for AI Sprint autonomous development framework - requires license",
5
5
  "main": "lib/installer.js",
6
6
  "bin": {