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 update and uninstall packages on any Mac you already reach over SSH, including Macs on your local network or Tailscale network.
-
Install Package Manager Manager in
/Applicationson each Mac. -
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 Mac gets its own Installed and Outdated sections in the sidebar. You can update one package, update everything outdated, or uninstall a package from the remote Mac.
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
- global npm packages
- npx cache entries
- global agent skills installed with
skillsornpx skills uv tooltools anduvPython installsuvxcached environmentscargo installbinariesrustupand 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.
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 lists under "What It Finds" and "Updating and Removing".
- Add focused tests beside the touched code: scanner parsing in
PackageScannerTests, action commands inPackageUpdaterTestsorPackageUninstallerTests, and UI grouping inMainWindowModelTestswhen a new section changes.
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 management requires a compatible version of Package Manager Manager in
/Applications on the other Mac. Interactive SSH passwords and first-connection
host-key prompts are not supported inside the app; connect once in Terminal
before adding the host.

