oh-my-pr 2.3.0 → 2.4.0
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 +7 -3
- package/dist/index.cjs +232 -65
- package/dist/public/assets/index-HtntK0qZ.js +8 -0
- package/dist/public/assets/index-d4p4gdQE.css +1 -0
- package/dist/public/index.html +2 -2
- package/package.json +1 -1
- package/dist/public/assets/index-Bf60GYFI.js +0 -8
- package/dist/public/assets/index-CGoNFbJJ.css +0 -1
package/README.md
CHANGED
|
@@ -26,10 +26,10 @@ No hosted service. No agent edits inside your working copy. Your PR automation s
|
|
|
26
26
|
- Store PR state, questions, logs, and social changelogs in SQLite with mirrored log files.
|
|
27
27
|
- Triage feedback into `accept`, `reject`, or `flag`, with manual overrides and retry for failed or warned items.
|
|
28
28
|
- Run `codex` or `claude` in isolated worktrees under `~/.oh-my-pr`, then push verified fixes back to the PR branch.
|
|
29
|
-
- Evaluate review comments and failing CI statuses, post GitHub follow-ups,
|
|
29
|
+
- Evaluate review comments and failing CI statuses, post GitHub follow-ups, resolve review threads, and persist CI healing sessions per PR head.
|
|
30
30
|
- Detect merge conflicts and optionally let the agent resolve them automatically.
|
|
31
31
|
- Ask natural-language questions about any tracked PR from the dashboard or via MCP.
|
|
32
|
-
- Configure trusted reviewers, ignored bots, polling, batching,
|
|
32
|
+
- Configure trusted reviewers, ignored bots, polling, batching, run limits, and CI-healing retry budgets from settings.
|
|
33
33
|
- Enable drain mode to pause new work and wait for active runs to finish before deploys or upgrades.
|
|
34
34
|
- Check onboarding status, install Claude or Codex review workflows, and generate social changelogs every 5 PRs merged to `main`.
|
|
35
35
|
- Use the React dashboard, local REST API, MCP server, or optional Tauri desktop shell.
|
|
@@ -39,10 +39,14 @@ No hosted service. No agent edits inside your working copy. Your PR automation s
|
|
|
39
39
|
<img width="969" height="572" alt="Code Factory workflow" src="https://github.com/user-attachments/assets/b9dbd102-ae2e-4837-a862-a0282bdfa0b8" />
|
|
40
40
|
|
|
41
41
|
1. Add a repository to the watch list or register a PR directly by URL.
|
|
42
|
-
2. The watcher polls GitHub, auto-registers open PRs, syncs reviews and comments, archives PRs that closed upstream, and queues babysitter runs for tracked PRs whose background watch is enabled.
|
|
42
|
+
2. The watcher polls GitHub, auto-registers open PRs, syncs reviews and comments, archives PRs that closed upstream, records failing CI on the current head SHA, and queues babysitter runs for tracked PRs whose background watch is enabled.
|
|
43
43
|
3. Accepted work is executed in an app-owned repo cache and isolated git worktree under `~/.oh-my-pr`.
|
|
44
44
|
4. The agent applies fixes, verifies the result, pushes to the PR branch, updates GitHub threads, and writes logs for the full run.
|
|
45
45
|
|
|
46
|
+
## CI Healing
|
|
47
|
+
|
|
48
|
+
When `Automatic CI healing` is enabled, Code Factory creates a healing session for each failing PR head SHA, classifies failures as safe to fix in-branch or blocked external, and runs bounded repair attempts in isolated worktrees. The dashboard surfaces the current session state and retry budget, and the local API exposes `GET /api/healing-sessions` plus `GET /api/healing-sessions/:id` for operator visibility.
|
|
49
|
+
|
|
46
50
|
## Quick Start
|
|
47
51
|
|
|
48
52
|
```bash
|