David Heinemeier Hansson and Claude Fable 5
798d6af8b0
Replace the plugin package manager with plain git
...
A plugin is now just a git repo cloned into ~/.config/omarchy/plugins/<id>/.
That one idea replaces the entire homegrown package-manager half of the
plugin suite: trusted-source registry, clone cache, catalog scanning,
semver comparison, staging dirs, and timestamped backups — 1,025 lines
across five binaries whose jobs git already does.
Gone:
- omarchy-plugin-source: the trusted-repo registry (sources.json) and its
clone cache under ~/.cache/omarchy/plugin-sources/. The trust decision
now happens once, at add time, with the same unsandboxed-code warning.
- omarchy-plugin-scan + omarchy-plugin-available: the catalog machinery
over cached clones. Discovery belongs on a web page, not in the CLI.
- omarchy-plugin-add: copying folders out of cached source clones with
hand-rolled staging and .bak backups. Replaced by a git clone.
- omarchy-plugin-update: manifest version comparison via sort -V and
re-installs. Replaced by fetch + diff + fast-forward; git is the version
and git is the backup.
- omarchy-plugin-remove and omarchy-plugin-edit as separate binaries:
folded into omarchy-plugin, much slimmer.
The consolidated omarchy-plugin now handles the full lifecycle:
- add <git-url>: warn, clone into a dot-prefixed staging dir (invisible
to the plugin scanner), validate, then move into place named by the
manifest id. Plugins land disabled — enabling is the single consent
moment, replacing the old review-before-copy flow.
- update [id | --all]: fetch origin HEAD, show the diff (delta when
available), confirm, fast-forward. Updates are code the shell will run,
so the result is re-validated and rolled back to ORIG_HEAD if upstream
turned invalid (e.g. smuggled a symlink).
- remove [id]: git checkouts are deleted outright since upstream keeps
the history; hand-made plugin folders still get a backup, and dev
symlinks are just unlinked.
- edit [id]: opens the user plugin directory in a shell.
All commands keep the interactive/unattended split: gum prompts in a
terminal, hard refusal without --yes otherwise, so scripts and agents
never hang on a hidden prompt.
Kept as siblings: omarchy-plugin-catalog (omarchy-bar reads it),
omarchy-plugin-validate (the security boundary, now pruning .git from its
symlink scan since installs are git checkouts), and omarchy-plugin-clone
(local development of built-in widgets, a separate concern).
Trade-offs accepted: one repo = one plugin (no more multi-plugin source
repos), and ref pinning or branch switching is no longer a CLI feature —
an installed plugin is a plain checkout, so that is ordinary git in the
plugin directory.
None of the removed machinery ever shipped: it existed only on this
branch, so there is no migration. The net effect is 11 scripts / 2,040
lines down to 4 scripts / 1,080 lines, and one less concept for users to
learn — everyone already knows what a git repo is.
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com >
2026-07-02 21:47:33 -07:00
..
2026-07-02 11:10:24 -07:00
2026-05-16 20:34:09 +02:00
2026-05-21 11:53:48 +02:00
2026-05-22 13:26:41 +02:00
2026-05-22 13:26:41 +02:00
2026-05-22 15:18:14 +02:00
2026-05-21 10:54:23 +02:00
2026-05-22 13:26:26 +02:00
2026-07-02 11:10:24 -07:00
2026-05-21 15:45:36 +02:00
2026-05-01 17:40:22 +02:00
2026-06-24 13:45:36 +02:00
2026-05-21 11:29:55 +02:00
2026-05-11 09:53:07 +02:00
2026-05-11 09:53:07 +02:00
2026-06-24 13:49:50 +02:00
2026-06-24 13:52:37 +02:00
2026-06-24 13:52:37 +02:00
2026-05-02 10:24:31 +02:00
2026-05-25 23:51:48 +02:00
2026-05-25 20:28:22 +02:00
2026-06-29 13:24:04 -05:00
2026-05-17 19:51:29 +02:00
2026-06-29 11:28:32 -05:00
2026-06-29 11:12:35 -05:00
2026-06-04 11:15:28 +02:00
2026-06-29 13:45:11 -05:00
2026-06-29 13:45:11 -05:00
2026-06-29 13:45:11 -05:00
2026-05-01 17:40:22 +02:00
2026-05-01 17:40:22 +02:00
2026-05-06 12:56:51 +02:00
2026-05-01 17:40:22 +02:00
2026-06-06 13:28:47 -04:00
2026-05-21 07:57:08 +02:00
2026-05-17 19:51:29 +02:00
2026-05-19 21:42:02 +02:00
2026-06-04 18:38:25 -04:00
2026-06-12 13:49:46 -04:00
2026-05-01 17:40:22 +02:00
2026-05-17 21:55:53 +02:00
2026-05-19 20:54:20 +02:00
2026-05-27 12:36:47 +02:00
2026-06-08 12:03:40 -04:00
2026-06-06 20:36:21 -04:00
2026-06-08 12:03:40 -04:00
2026-06-11 02:08:02 -04:00
2026-05-21 19:30:30 +02:00
2026-06-08 12:03:40 -04:00
2026-06-21 02:25:42 -04:00
2026-05-01 17:40:22 +02:00
2026-05-06 12:58:55 +02:00
2026-05-06 12:58:55 +02:00
2026-06-16 01:25:04 -04:00
2026-06-12 13:49:46 -04:00
2026-05-14 16:34:21 -04:00
2026-05-01 17:40:22 +02:00
2026-06-06 19:31:51 -04:00
2026-05-11 13:01:45 +02:00
2026-06-04 18:37:32 -04:00
2026-05-01 17:40:22 +02:00
2026-05-15 11:03:21 +02:00
2026-06-04 18:37:32 -04:00
2026-05-07 10:33:12 +02:00
2026-05-07 10:34:28 +02:00
2026-05-01 17:40:22 +02:00
2026-05-01 17:40:22 +02:00
2026-05-07 12:10:45 +02:00
2026-06-22 21:48:35 +02:00
2026-05-08 21:07:51 +02:00
2026-05-01 17:40:22 +02:00
2026-05-17 17:29:52 +02:00
2026-05-21 19:30:30 +02:00
2026-05-01 17:40:22 +02:00
2026-05-01 17:40:22 +02:00
2026-05-01 17:40:22 +02:00
2026-05-01 17:40:22 +02:00
2026-05-01 17:40:22 +02:00
2026-05-25 20:28:39 +02:00
2026-05-03 15:58:32 +02:00
2026-05-03 15:58:32 +02:00
2026-05-11 10:40:26 -04:00
2026-05-01 17:40:22 +02:00
2026-05-01 17:40:22 +02:00
2026-05-01 17:40:22 +02:00
2026-05-01 17:40:22 +02:00
2026-05-21 11:44:11 +02:00
2026-06-29 11:26:23 -05:00
2026-06-29 15:28:16 -05:00
2026-06-23 09:23:29 +02:00
2026-05-01 17:40:22 +02:00
2026-05-05 21:18:09 +02:00
2026-06-23 09:23:29 +02:00
2026-06-23 09:23:29 +02:00
2026-06-29 15:43:11 -05:00
2026-06-23 09:23:29 +02:00
2026-06-09 15:13:23 -04:00
2026-05-17 19:51:29 +02:00
2026-05-11 10:40:26 -04:00
2026-05-11 10:40:26 -04:00
2026-05-11 10:40:26 -04:00
2026-05-01 17:40:22 +02:00
2026-05-11 10:40:26 -04:00
2026-05-10 11:26:59 +02:00
2026-05-29 15:59:13 +02:00
2026-05-11 10:40:26 -04:00
2026-05-23 13:37:57 +02:00
2026-05-17 19:51:29 +02:00
2026-05-17 21:30:58 +02:00
2026-05-14 17:43:12 -04:00
2026-06-04 18:34:35 -04:00
2026-05-04 13:23:27 +02:00
2026-06-04 11:15:28 +02:00
2026-05-01 17:40:22 +02:00
2026-05-04 13:23:27 +02:00
2026-06-09 19:48:37 -04:00
2026-05-27 10:53:30 +02:00
2026-05-27 10:53:30 +02:00
2026-05-14 17:43:12 -04:00
2026-06-24 13:31:17 +02:00
2026-05-27 11:15:21 +02:00
2026-05-27 11:15:21 +02:00
2026-05-04 13:23:27 +02:00
2026-05-04 13:23:27 +02:00
2026-05-10 16:47:29 +02:00
2026-05-04 13:23:27 +02:00
2026-05-27 11:15:21 +02:00
2026-05-27 11:15:21 +02:00
2026-05-25 17:29:02 +02:00
2026-07-02 11:10:24 -07:00
2026-05-27 10:53:30 +02:00
2026-05-27 10:53:30 +02:00
2026-05-25 18:19:06 +02:00
2026-05-25 18:12:40 +02:00
2026-06-04 18:37:32 -04:00
2026-07-02 11:10:24 -07:00
2026-05-15 17:44:09 +02:00
2026-06-23 16:22:27 +02:00
2026-06-23 16:22:27 +02:00
2026-05-01 17:40:22 +02:00
2026-05-27 15:11:36 +02:00
2026-05-21 19:30:30 +02:00
2026-05-15 16:07:35 +02:00
2026-05-19 17:08:14 +02:00
2026-05-22 14:24:04 +02:00
2026-06-29 11:26:23 -05:00
2026-05-14 13:15:03 +02:00
2026-05-14 11:12:25 +02:00
2026-05-11 10:40:26 -04:00
2026-05-01 17:40:22 +02:00
2026-05-01 17:40:22 +02:00
2026-06-04 18:34:04 -04:00
2026-05-25 18:19:06 +02:00
2026-05-25 18:12:40 +02:00
2026-05-14 10:56:10 +02:00
2026-05-14 10:57:44 +02:00
2026-05-01 17:40:22 +02:00
2026-05-01 17:40:22 +02:00
2026-05-23 04:32:20 -04:00
2026-05-20 14:09:09 +02:00
2026-05-20 14:12:06 +02:00
2026-05-29 15:25:21 +02:00
2026-05-19 20:54:20 +02:00
2026-06-24 13:49:22 +02:00
2026-05-19 20:54:20 +02:00
2026-06-29 09:02:04 -05:00
2026-05-19 20:54:20 +02:00
2026-05-01 17:40:22 +02:00
2026-06-29 08:51:15 -05:00
2026-05-19 20:54:20 +02:00
2026-06-12 13:49:46 -04:00
2026-06-12 13:49:46 -04:00
2026-05-25 16:49:18 +02:00
2026-05-21 10:54:23 +02:00
2026-06-29 09:44:29 -05:00
2026-06-28 20:11:21 -04:00
2026-05-14 12:02:53 +02:00
2026-05-20 14:24:19 +02:00
2026-05-25 23:51:48 +02:00
2026-05-14 12:02:53 +02:00
2026-05-23 04:32:20 -04:00
2026-06-04 11:15:28 +02:00
2026-06-04 18:35:01 -04:00
2026-05-01 17:40:22 +02:00
2026-05-01 17:40:22 +02:00
2026-05-01 17:40:22 +02:00
2026-05-19 21:33:12 +02:00
2026-05-01 17:40:22 +02:00
2026-05-01 17:40:22 +02:00
2026-05-01 17:40:22 +02:00
2026-05-01 17:40:22 +02:00
2026-07-02 21:47:33 -07:00
2026-07-02 11:10:24 -07:00
2026-07-02 11:10:24 -07:00
2026-07-02 21:47:33 -07:00
2026-06-09 19:48:37 -04:00
2026-06-04 18:34:04 -04:00
2026-06-09 19:48:37 -04:00
2026-06-11 02:08:02 -04:00
2026-06-29 10:49:43 -05:00
2026-06-24 13:38:09 +02:00
2026-05-21 11:39:55 +02:00
2026-05-19 09:42:13 +02:00
2026-06-04 18:37:32 -04:00
2026-06-04 11:15:28 +02:00
2026-06-22 18:30:16 +02:00
2026-06-16 01:25:04 -04:00
2026-05-01 17:40:22 +02:00
2026-06-04 18:34:04 -04:00
2026-06-04 18:38:25 -04:00
2026-06-04 18:34:04 -04:00
2026-05-01 17:40:22 +02:00
2026-07-02 11:10:24 -07:00
2026-05-01 17:40:22 +02:00
2026-06-04 18:37:32 -04:00
2026-06-04 18:38:25 -04:00
2026-06-04 18:38:25 -04:00
2026-05-23 18:04:21 +02:00
2026-05-21 19:30:30 +02:00
2026-05-01 17:40:22 +02:00
2026-06-29 14:49:39 -05:00
2026-05-27 11:15:21 +02:00
2026-05-04 11:18:25 +02:00
2026-05-04 10:31:06 +02:00
2026-05-04 08:57:19 +02:00
2026-05-10 16:47:29 +02:00
2026-05-04 08:57:19 +02:00
2026-05-04 09:57:13 +02:00
2026-05-27 11:15:21 +02:00
2026-06-28 20:46:23 -04:00
2026-06-16 01:25:04 -04:00
2026-05-08 20:52:29 +02:00
2026-05-19 17:08:14 +02:00
2026-05-25 17:29:02 +02:00
2026-07-02 11:10:24 -07:00
2026-05-16 13:00:30 +02:00
2026-07-02 11:10:24 -07:00
2026-05-01 17:40:22 +02:00
2026-05-22 13:26:46 +02:00
2026-05-01 17:40:22 +02:00
2026-05-01 17:40:22 +02:00
2026-05-05 12:53:51 +02:00
2026-05-01 17:40:22 +02:00
2026-05-01 17:40:22 +02:00
2026-05-01 17:40:22 +02:00
2026-06-10 13:10:03 -04:00
2026-05-01 17:40:22 +02:00
2026-05-01 17:40:22 +02:00
2026-05-05 14:22:03 +02:00
2026-05-21 10:19:36 +02:00
2026-05-01 17:40:22 +02:00
2026-05-19 21:01:15 -04:00
2026-06-04 18:38:25 -04:00
2026-06-04 18:35:01 -04:00
2026-05-08 20:52:29 +02:00
2026-06-08 16:28:52 +02:00
2026-06-21 02:25:42 -04:00
2026-05-27 15:11:36 +02:00
2026-06-09 19:48:37 -04:00
2026-05-01 17:40:22 +02:00
2026-06-04 18:34:04 -04:00
2026-05-17 21:55:53 +02:00
2026-05-06 13:20:34 +02:00
2026-05-23 11:28:36 +02:00
2026-05-01 17:40:22 +02:00
2026-05-01 17:40:22 +02:00
2026-05-01 17:40:22 +02:00
2026-05-20 08:42:00 +02:00
2026-05-01 17:40:22 +02:00
2026-05-01 17:40:22 +02:00
2026-05-01 17:40:22 +02:00
2026-06-22 21:48:35 +02:00
2026-06-04 18:37:32 -04:00
2026-05-21 11:58:43 +02:00
2026-06-22 21:48:35 +02:00
2026-06-09 19:48:37 -04:00
2026-06-09 19:48:37 -04:00
2026-06-09 19:48:37 -04:00
2026-06-09 19:48:37 -04:00
2026-06-09 19:48:37 -04:00
2026-06-09 19:48:37 -04:00
2026-06-11 02:08:02 -04:00
2026-06-09 19:48:37 -04:00
2026-05-03 19:36:50 +02:00
2026-05-01 17:40:22 +02:00
2026-06-11 02:08:02 -04:00
2026-06-09 19:48:37 -04:00
2026-06-09 19:48:37 -04:00
2026-06-09 19:48:37 -04:00
2026-06-09 19:48:37 -04:00
2026-06-09 19:48:37 -04:00
2026-06-09 19:48:37 -04:00
2026-05-06 13:20:34 +02:00
2026-06-09 19:48:37 -04:00
2026-06-09 19:48:37 -04:00
2026-06-09 19:48:37 -04:00
2026-06-09 19:48:37 -04:00
2026-06-11 02:08:02 -04:00
2026-06-11 02:08:02 -04:00
2026-06-09 19:48:37 -04:00
2026-06-09 19:48:37 -04:00
2026-05-01 17:40:22 +02:00
2026-06-04 11:14:04 +02:00
2026-06-04 11:14:04 +02:00
2026-05-01 17:40:22 +02:00
2026-05-01 17:40:22 +02:00
2026-05-23 15:15:55 +02:00
2026-05-29 09:42:24 +02:00
2026-05-20 22:00:10 +02:00
2026-05-17 19:51:29 +02:00
2026-05-17 19:51:29 +02:00
2026-05-16 20:34:09 +02:00
2026-05-16 20:34:09 +02:00
2026-05-21 19:30:30 +02:00
2026-05-08 16:07:36 +02:00
2026-06-04 18:37:32 -04:00
2026-06-28 20:46:23 -04:00
2026-06-04 18:37:32 -04:00
2026-06-23 15:59:27 +02:00
2026-05-01 17:40:22 +02:00
2026-05-01 17:40:22 +02:00
2026-06-23 15:59:27 +02:00
2026-06-04 19:23:54 -04:00
2026-05-01 17:40:22 +02:00
2026-05-08 20:48:36 +02:00
2026-05-25 16:49:18 +02:00
2026-06-04 18:38:25 -04:00
2026-06-04 18:38:25 -04:00
2026-06-04 18:38:25 -04:00
2026-05-15 15:21:03 +02:00
2026-06-21 12:25:45 +02:00
2026-05-01 17:40:22 +02:00
2026-06-04 18:38:25 -04:00
2026-06-29 11:28:32 -05:00
2026-06-06 13:28:47 -04:00
2026-06-04 18:38:25 -04:00
2026-06-04 18:38:25 -04:00
2026-06-29 11:28:32 -05:00
2026-05-01 17:40:22 +02:00
2026-05-29 14:36:26 -04:00
2026-05-21 09:56:50 +02:00
2026-05-14 16:33:51 -04:00
2026-05-21 06:48:20 +02:00
2026-05-16 21:01:09 +02:00
2026-05-11 16:32:51 +02:00
2026-05-14 12:02:53 +02:00
2026-05-01 17:40:22 +02:00
2026-05-01 17:40:22 +02:00
2026-06-04 18:37:32 -04:00
2026-06-28 20:46:23 -04:00
2026-06-04 18:37:32 -04:00
2026-06-04 18:34:04 -04:00
2026-06-04 18:37:32 -04:00