oh-my-pr 2.11.1 → 2.13.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 -5
- package/dist/index.cjs +124 -122
- package/dist/public/assets/index-BJS1HcYK.js +8 -0
- package/dist/public/assets/index-DlVkVkUb.css +1 -0
- package/dist/public/index.html +2 -2
- package/dist/tui.mjs +35 -33
- package/package.json +1 -1
- package/dist/public/assets/index-B8Z5dS6m.css +0 -1
- package/dist/public/assets/index-Ck8HKSh2.js +0 -8
package/README.md
CHANGED
|
@@ -13,14 +13,14 @@
|
|
|
13
13
|
[](https://nodejs.org/)
|
|
14
14
|
[](https://www.typescriptlang.org/)
|
|
15
15
|
|
|
16
|
-
Oh-my-pr babysits your PRs from your local machine, reads all PR comments and CI/CD logs, and gets your PR ready for merge to main. It uses your local Claude Code or Codex to address any issues identified in the PR or CI/CD pipeline and to ensure that any documentation is up to date. You can push a PR, walk away, and come back to a clean PR ready to be merged.
|
|
16
|
+
Oh-my-pr babysits your PRs from your local machine, reads all PR comments and CI/CD logs, resolves conflicts, and gets your PR ready for merge to main. It uses your local Claude Code or Codex to address any issues identified in the PR or CI/CD pipeline and to ensure that any documentation is up to date. You can push a PR, walk away, and come back to a clean PR ready to be merged.
|
|
17
17
|
|
|
18
18
|
<img width="1365" height="686" alt="Code Factory dashboard" src="https://github.com/user-attachments/assets/66dfa082-c732-4989-8b05-f19aa550acb5" />
|
|
19
19
|
|
|
20
20
|
## Features
|
|
21
21
|
|
|
22
|
-
- Watch multiple repositories or add a single PR by URL.
|
|
23
|
-
- Auto-register open PRs, archive closed or merged PRs, and keep syncing review activity.
|
|
22
|
+
- Watch multiple repositories with a per-repo auto-discovery scope (`My PRs only` by default, or `My PRs + teammates`) or add a single PR by URL.
|
|
23
|
+
- Auto-register matching open PRs from watched repos, archive closed or merged PRs, and keep syncing review activity.
|
|
24
24
|
- Pause background automation for an individual tracked PR while keeping manual runs available.
|
|
25
25
|
- Store PR state, background jobs, questions, release runs, logs, and social changelogs in SQLite with mirrored log files.
|
|
26
26
|
- Queue repo sync, babysit/apply runs, PR questions, release processing, deployment healing, and social changelog generation in a durable SQLite-backed dispatcher that survives restarts.
|
|
@@ -37,14 +37,16 @@ Oh-my-pr babysits your PRs from your local machine, reads all PR comments and CI
|
|
|
37
37
|
|
|
38
38
|
## How It Works
|
|
39
39
|
|
|
40
|
-
1. Add a repository to the watch list or register a PR directly by URL.
|
|
40
|
+
1. Add a repository to the watch list or register a PR directly by URL. Watched repos default to `My PRs only`, and you can switch a repo to `My PRs + teammates` when you want team-wide discovery.
|
|
41
41
|
2. The watcher enqueues a durable repo-sync job in SQLite.
|
|
42
|
-
3. That sync job 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.
|
|
42
|
+
3. That sync job polls GitHub, auto-registers matching open PRs for each watched repo based on its watch scope, 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
|
4. Manual apply/babysit requests, PR questions, release processing, and social changelog generation go through the same durable queue before work executes in an app-owned repo cache and isolated git worktree under `~/.oh-my-pr`.
|
|
44
44
|
5. 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
46
|
Repo sync, babysit/apply, PR Q&A, release processing, deployment healing, and social changelog generation all run through durable background jobs stored in `state.sqlite`. On startup the dispatcher reclaims expired job leases, and interrupted babysitter runs are resumed from stored run context when possible.
|
|
47
47
|
|
|
48
|
+
PRs you register directly by URL stay tracked regardless of the watched repo's auto-discovery scope.
|
|
49
|
+
|
|
48
50
|
## CI Healing
|
|
49
51
|
|
|
50
52
|
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.
|