Skip to content

Commit df87488

Browse files
committed
doc update
1 parent 0192f37 commit df87488

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -440,7 +440,7 @@ Most recent releases are shown at the top. Each release shows:
440440
## 0.11.0 (2026-02-07)
441441

442442
### new:
443-
- **Autopilot mode (Ralph Wiggum technique)**: Added autonomous iterative development mode where the agent repeatedly works on a task until completion. Based on the methodology pioneered by Geoffrey Huntley, it embodies persistent iteration over perfection. Available via `python -m patchpal autopilot` CLI command, `patchpal-autopilot` console script, or `autopilot_loop()` Python API. Supports configurable completion detection via `--completion-promise` keyword, max iterations limit, and Python library usage for multi-phase builds. Includes comprehensive safety warnings and examples in `examples/ralph/`. Disables permission system for autonomous operation - intended for isolated environments only (Docker containers, VMs, throwaway projects). (fixes #53)
443+
- **Autopilot mode (Ralph Wiggum technique)**: Added autonomous iterative development mode where the agent repeatedly works on a task until completion. Based on the methodology pioneered by Geoffrey Huntley, it embodies persistent iteration over perfection. Available via `patchpal-autopilot` console script or `autopilot_loop()` Python API. Supports configurable completion detection via `--completion-promise` keyword, max iterations limit, and Python library usage for multi-phase builds. Includes comprehensive safety warnings and examples in `examples/ralph/`. Disables permission system for autonomous operation - intended for isolated environments only (Docker containers, VMs, throwaway projects). (fixes #53)
444444

445445
### changed:
446446
- N/A

docs/configuration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -329,7 +329,7 @@ patchpal
329329
export PATCHPAL_AUTOPILOT_CONFIRMED=true # Skip autopilot safety confirmation (default: false)
330330
# ⚠️ Only use in CI/CD or automation contexts
331331
# Autopilot mode allows continuous iterative execution
332-
patchpal autopilot "Implement feature X"
332+
patchpal-autopilot --prompt "Implement feature X" --completion-promise "COMPLETE"
333333
```
334334

335335
**Image Analysis with Vision Models:**

patchpal/cli/autopilot.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@
1818
See examples/ralph/README.md for detailed safety guidelines.
1919
2020
Usage:
21-
python -m patchpal autopilot --prompt "Build a REST API with tests" --completion-promise "COMPLETE"
22-
python -m patchpal autopilot --prompt-file task.md --completion-promise "DONE" --max-iterations 50
21+
patchpal-autopilot --prompt "Build a REST API with tests" --completion-promise "COMPLETE"
22+
patchpal-autopilot --prompt-file task.md --completion-promise "DONE" --max-iterations 50
2323
"""
2424

2525
import argparse

0 commit comments

Comments
 (0)