The time when one package manager was all you needed is long gone. pkg⋅mgr² inventories your package managers and their packages, so you can see what you have, what’s outdated, and what’s taking up space.
Use whatever you want without compromising visibility into what’s going on.
Tip
No need to remember to npx ***@latest anymore. We update npx’d stuff too.
brew install --cask mxcl/made/package-manager-managerNo brew? Download the
.dmgfrom./releases/.
pkg⋅mgr² can inspect, update, and uninstall packages on hosts you already reach over SSH, including hosts on your local network or Tailscale network.
-
On a remote Mac, install Package Manager Manager in
/Applications. Linux hosts are agentless; APT/dpkg, apk, DNF/RPM, and Zypper/RPM systems are supported. -
Make sure SSH works non-interactively and the host key is trusted:
ssh pangolin true -
Choose Package Manager Manager → Add / Edit Hosts… and add the SSH host or an alias from
~/.ssh/config.
Each host gets its own Installed and Outdated sections in the sidebar. Linux
inventory includes native packages that provide command-line tools, plus global
npm, pnpm, and Bun packages, pipx applications, cargo install and go install
binaries, pkgx packages, and uv tool tools when those managers are present. System-package
actions use non-interactive sudo; without it, those packages remain visible but read-only.
pkg⋅mgr² uses OpenSSH directly. Your keys, agent, host aliases, and
known_hosts stay where they already live; the app stores no SSH credentials.
pkg⋅mgr² currently inventories:
- Homebrew formulae and casks
- tools and runtimes installed with
mise - global npm, pnpm, and Bun packages
- npx cache entries
- Skills packages installed with
skillsornpx skills uv tooltools anduvPython installs- Python applications installed with
pipx uvxcached environmentscargo installbinariesgo installbinariespkgxpackages, including multiple installed versionsrustupand installed Rust toolchains
It also pulls package summaries, categories, URLs, and latest-version metadata where the project has a source for it. If metadata is missing, the package still shows up. It just looks less informed.
npm, pnpm, and Bun support covers global packages, not dependencies in each
project’s node_modules. pipx support covers applications in its managed
environments. Go support reads embedded build metadata from binaries in GOBIN
or the first GOPATH entry’s bin directory (usually ~/go/bin).
pkgx support reads PKGX_DIR (usually ~/.pkgx) and keeps track of all installed
versions, like mise tools and uv-managed Pythons. Updating installs the newer
version alongside older ones. Uninstall removes the displayed version and keeps
any remaining versions in the inventory.
See what’s new in pnpm, Bun, pipx, Go, and pkgx support.
On your local Mac, install packages through Homebrew, npm, pnpm, Bun, pipx, Go, or pkgx from a package’s detail pane. The corresponding package manager must already be available. Remote hosts support updates and removals, but not new installs.
The detail pane offers update and uninstall actions when pkg⋅mgr² knows the native command to run.
Supported update paths:
brew upgradebun update --global --latestnpm install --global package@latestpnpm update --global --latestnpm exec --yes --package package@version -- trueuv tool upgradeuv python installpipx upgradego install package@latestpkgx +package@version truecargo install --force
Supported uninstall paths:
brew uninstallbun remove --globalnpm uninstall --globalpnpm remove --global- remove npx cache entries
uv tool uninstalluv python uninstallpipx uninstall- remove uvx cached environments
- remove Go binaries after checking their location and embedded package path
- remove the displayed pkgx version from
PKGX_DIR, after checking its resolved path cargo uninstall
Important
rustup is inventory-only for now. pkg⋅mgr² will show rustup and toolchains,
but it will not update or uninstall them.
Get your agent to add new package managers and give us a PR.
Note
We want to support everything! Yes! Everything!
Keep new manager support boring and off the main thread. The menu bar helper
runs PackageScanner.inventory(database:) in the background, writes a
PackageHostSnapshot, and the main app renders that snapshot. Do not add package
manager scans, network loads, or shell commands to SwiftUI views or main-window
models.
Checklist:
- Add the manager to
PackageManagerKindinSources/PMMCore/Models.swift. - Add one
scanX(database:)method toSources/PMMCore/PackageScanner.swiftand call it frominventory(database:). Return[]when the tool is missing or the manager has no local state. - Build
ManagedPackagevalues with stableidentifierprefixes, readabledisplayName,installedVersion, optionallatestVersion, and install or binary paths when cheap to find. - Wire update/uninstall only when the native command is obvious:
PackageUpdater,PackageUninstaller, and theirsupports(_:)methods. Inventory-only support is fine. - Put the manager in a sidebar group in
MainWindowModel.swiftand give it a dashboard SF Symbol inMainWindowDashboardView.swift. - Map it in
PackageDossierClient.provider(for:)only if AutomIC Vault has a matching provider. - Update the README’s inventory, install, and action support, plus the website’s supported-tool lists and remote-host documentation where applicable.
- Add focused tests beside the touched code: scanner parsing in
PackageScannerTests, action commands inPackageUpdaterTestsorPackageUninstallerTests, and UI grouping inMainWindowModelTestswhen a new section changes.
The hosted feed is generated by one reentrant command:
./scripts/update-discover-feedAn automation should keep following the command's status until it finishes:
PMM_FEED_STATUS=NEEDS_AGENT— follow the printed research prompt, write.feed-work/response.json, then run the same command again.PMM_FEED_STATUS=COMMITTED— the validated feed was committed; push the commit normally to publish it through GitHub Pages.PMM_FEED_STATUS=NOOP— no new packages, stale recommendations, or due editorial need work.PMM_FEED_STATUS=ERROR— correct the reported response problem and rerun; the previous feed remains untouched.
Use ./scripts/update-discover-feed --check to validate the checked-in feed
without network access and --self-test to exercise the complete handoff and
commit flow with fixtures.
The generator publishes two contracts. www/feed/v1.json remains the rolling
compatibility snapshot. www/feed/v2.json is the newest page of an append-only
archive: every editorial and its new-package, recently-updated, and recommendation
shelves are kept as self-contained blocks. Package-only refreshes update v1 and wait
for the next editorial rather than displacing the story at the top. Each editorial
publication is followed by For You, New Packages, and Recently Updated snapshots
before the next story. For You snapshots contain at most ten cards and rotate through the 24-card
recommendation pool across later sections. Recently Updated does the same in
five-card rows. A page holds at most 20
blocks; when it fills, the generator freezes it under www/feed/v2/pages/ and
links to it with nextPageURL. Clients can therefore load older pages as the
human scrolls without needing historical package dictionaries or a server.
Editorial bodies contain 600–1,000 words of Markdown with at least three ##
subheadings. Each editorial also carries two to four related package cards,
including its primary package, so the reader ends with working Details and
Install actions rather than a dead end.
Feed v2 is script-owned. Do not rewrite frozen pages, IDs, package metadata, or
install URLs by hand. A normal feed commit may contain www/feed/v1.json,
www/feed/v2.json, new files below www/feed/v2/pages/, and referenced artwork.
pkg⋅mgr² shells out to your package managers. It does not replace them, normalize their data perfectly, or pretend their caches are a coherent database.
Homebrew metadata requires brew update in the helper refresh path. Network
metadata is best-effort; local inventory should still work when that data is
unavailable.
Remote Mac management requires a compatible version of Package Manager Manager
in /Applications. Linux system-package management supports APT/dpkg, apk,
DNF/RPM, and Zypper/RPM. Interactive SSH passwords, sudo passwords, and first-connection
host-key prompts are not supported inside the app; connect once in Terminal
before adding the host.

