patch.moi/docs/pages/index.md
2026-05-16 03:20:02 +00:00

2.5 KiB

title description
patch.moi Hands-off maintenance for custom patches on top of upstream open source software.

patch.moi

patch.moi keeps custom features alive on top of upstream open source projects. It watches upstream movement, records durable update signals, and hands the actual patch work to local workspaces or remote forge runners that operate on normal Git repositories.

The product boundary is Git-first:

  • Upstream projects stay upstream remotes, tags, branches, and release feeds.
  • Maintained forks stay fork remotes and patch branches.
  • Patch stacks are commits, branches, and tags, not a second Patch-specific project file.
  • patch.moi records observations, dispatch attempts, workflow runs, and review state around those Git facts.
  • Local Codex workspaces or forge runners do the maintenance work: rebase patch commits, resolve conflicts, build candidates, and leave human intervention points when needed.
flowchart LR
  Upstream["upstream repo"] --> Feed["release and branch feeds"]
  Upstream --> Git["upstream remote"]
  Fork["maintained fork"] --> Git
  Feed --> Patch["patch.moi intake"]
  Patch --> Event["durable update signal"]
  Event --> Workspace["local workspace or forge runner"]
  Git --> Workspace
  Workspace --> Candidate["remote candidate branch, tag, or artifact"]
  Candidate --> Internal["internal build channel"]
  Candidate --> Public["public release channel"]

Start here

What is in this repo

  • apps/patch: the Patch Bun service, feed poller, JSONL store, and flow dispatch adapter.
  • docs: this Tome documentation site, organized with the Diataxis framework.
  • Dockerfile: container image for the Patch service app.

The current service implements upstream intake and dispatch. Patch-stack maintenance is performed by the local workspace, forge runner, or codex-flow package that receives the event.