@neriros/ralphy 3.10.14 → 3.10.16
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 +2 -3
- package/dist/shell/index.js +1249 -920
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -33,8 +33,7 @@ An iterative AI task execution framework. Ralphy runs Claude or Codex in a check
|
|
|
33
33
|
- **Auto PR open** — push branch and `gh pr create` on clean exit; idempotent (surfaces existing PR if open).
|
|
34
34
|
- **Auto-merge opt-in** — `getAutoMerge` triggers `gh pr merge --auto --squash|merge|rebase` right after PR creation.
|
|
35
35
|
- **Stacked PRs** — `--stack-prs` opens against a blocker's head branch when a `blocked_by` Linear relation has exactly one open PR.
|
|
36
|
-
- **
|
|
37
|
-
- **Conflict re-fix** — `gh pr view`–driven; on `mergeable: CONFLICTING` enqueues a conflict-resolution task automatically.
|
|
36
|
+
- **PR recovery (`prRecovery`)** — after a worker opens a PR the ticket rests in-review; a background watcher polls each tracked PR and advances the ticket to done once the PR is mergeable (CI green, no conflicts), re-queuing a fix worker when it goes red — merge conflicts when `prRecovery.fixConflicts` is on, failing CI when `prRecovery.fixCi` is on — bailing to `ralph:error` after `maxRecoverySessions`. With `prRecovery.enabled: false` the worker marks the ticket done immediately on PR open and nothing is watched. `--no-pr-recovery` disables it for a run.
|
|
38
37
|
|
|
39
38
|
**Reviewer interaction**
|
|
40
39
|
|
|
@@ -91,7 +90,7 @@ Safeguards: `--max-iterations`, `--max-cost`, `--max-runtime`, `--max-failures`.
|
|
|
91
90
|
|
|
92
91
|
```bash
|
|
93
92
|
export LINEAR_API_KEY=lin_api_xxx
|
|
94
|
-
ralphy agent --linear-team ENG --linear-assignee me --concurrency 3 --create-pr
|
|
93
|
+
ralphy agent --linear-team ENG --linear-assignee me --concurrency 3 --create-pr
|
|
95
94
|
```
|
|
96
95
|
|
|
97
96
|
Each poll routes every matching issue into one of: **fresh** (Todo → scaffold + spawn), **resume** (In Progress → reattach), **conflict-fix** / **ci-fix** (PR red on GitHub → prepend fix task), or **review** / **code-review** (reviewer comments or `@ralphy` mention).
|