aubeshim installs PATH shims that let existing bun, npm, pnpm, and
yarn commands use aube when the command shape is
compatible.
The goal is to get aube's fast installs, strict layout, and run-time auto-install checks without editing each project's scripts.
For developers with many JavaScript checkouts using several different package managers, that can mean hundreds of gigabytes of duplicate dependencies saved.
Note: aubeshim is a third-party project and is not associated with en.dev, the
organization behind aube and mise.
- Local npm installs and scripts run through
aube. That includesnpm install,npm ci,npm run build,npm test, andnpm start. - npm package edits are normalized to aube's command names:
npm install <package>becomesaube add <package>, andnpm uninstall <package>becomesaube remove <package>. pnpmcommands pass through toaube, since aube already presents a pnpm-compatible command surface.yarnroutes common package-manager commands and script names toaube; Yarn-specific management commands fall back to the real Yarn binary.bunroutes package-manager commands such asbun install,bun add, andbun runtoaube; runtime commands and unknown commands fall back to the real Bun binary.--versionand-vprint the real package manager version. In repos where aubeshim is configured to shim, they also print the aubeshim and aube versions in a parenthesized hint.
Global npm tools are managed through mise:
- Global
outdatedoperations using-gor--globalrunmise outdatedwith--bump -C "$HOME". - Global package add/install operations using
-gor--globalrunmise use -g npm:<package>. - Global package remove operations using
-gor--globalrunmise unuse -g npm:<package>.
Commands that need npm's exact registry or account behavior fall back to the real npm:
npm view,npm show, andnpm infowith--jsonfall back so tools such as mise can consume npm's registry metadata format.npm publishandnpm unpublishfall back to preserve npm's registry, auth, access, provenance, OTP, tag, workspace, and lifecycle semantics.- npm-only commands such as
npm pkg,npm search, andnpm whoamifall back to the real npm.
The recommended install path is Cargo:
cargo install aubeshim
aubeshim install --forceThat installs the aubeshim binary with Cargo and creates bun, npm, pnpm,
and yarn shims in ~/.local/share/aubeshim/shims.
From a source checkout, use the development installer instead:
./install.shThat builds the checkout, copies aubeshim to ~/.local/bin, and replaces
shims in ~/.local/share/aubeshim/shims.
Activate aubeshim after mise activate or any other tool manager that rewrites
PATH. mise installs its own package-manager shims, so aubeshim must activate
last for bun, npm, pnpm, and yarn to resolve to aubeshim.
For zsh:
eval "$(mise activate zsh --shims)"
eval "$(aubeshim activate zsh)"For bash:
eval "$(mise activate bash --shims)"
eval "$(aubeshim activate bash)"For fish:
mise activate fish --shims | source
aubeshim activate fish | sourceFor POSIX profile files:
eval "$(aubeshim activate sh)"aubeshim activate removes existing aubeshim shim-dir entries before prepending
the shim directory, so it is safe to run more than once.
For zsh, put the activation in .zshrc for interactive terminals. If
non-interactive zsh processes also need the shims, for example editors or agents
that invoke zsh, add a guarded activation to .zshenv too:
if (( $+commands[aubeshim] )); then
eval "$(aubeshim activate zsh)"
fiIf .zshrc later runs mise activate, keep the .zshrc aubeshim activation
after it so aubeshim remains first in PATH.
On Linux desktops, adding the POSIX activation to .profile can help GUI
applications launched by the session inherit the shims too, even if your
interactive shell is zsh. Many desktop sessions use .profile through sh
semantics rather than zsh startup files, depending on how your display manager
starts the user session:
if command -v mise >/dev/null 2>&1; then
eval "$(mise activate sh --shims)"
fi
if command -v aubeshim >/dev/null 2>&1; then
eval "$(aubeshim activate sh)"
fiKeep the shell-specific activation in .zshrc, .bashrc, or equivalent for
interactive terminals, since .profile is not sourced by every shell startup
path.
aubeshim reads a TOML config file from:
AUBESHIM_CONFIG, when set.$XDG_CONFIG_HOME/aubeshim/config.toml, whenXDG_CONFIG_HOMEis set.~/.config/aubeshim/config.toml, otherwise.
The config file controls whether a directory uses the aube shim or passes through to the real package manager:
enabled = true
default = true
ignore = [
"~/devel/work/broken-expo",
"~/devel/work/legacy/**",
]
shim = [
"~/devel/work/*",
"~/devel/projects/**",
]enabled controls whether aubeshim does any shimming at all and defaults to
true. When enabled = false, every invocation passes through to the real
bun, npm, pnpm, or yarn.
ignore is a list of directory globs that should pass through to the real
package manager. shim is a list of directory globs that should use aube.
default controls what happens when no directory glob matches and defaults to
true.
Precedence is:
enabledignoreshimdefault
Globs match the current working directory or any ancestor directory. This means
a command run from packages/app still matches a glob for the package,
workspace, or parent directory that contains it. Use absolute paths or ~ so
the config keeps working no matter where the command starts.
* matches within a single path component. Because globs are checked against
the current directory and its ancestors, ~/devel/work/* matches commands run
inside any immediate child directory of ~/devel/work. ** is recursive and
can match zero or more path components, so use it for directories that may live
under nested paths, such as ~/devel/projects/**. A trailing /** also matches
the base directory itself.
For a config managed by ~/dotfiles, symlink it into the default location:
mkdir -p ~/.config/aubeshim
ln -s ~/dotfiles/config/aubeshim/config.toml ~/.config/aubeshim/config.tomlEnvironment variables can override tool discovery:
AUBESHIM_CONFIG: path to the aubeshim config file.AUBESHIM_AUBE: path to the aube binary.AUBESHIM_REAL_BUN: path to the real Bun binary.AUBESHIM_REAL_NPM: path to the real npm binary.AUBESHIM_REAL_PNPM: path to the real pnpm binary.AUBESHIM_REAL_YARN: path to the real Yarn binary.AUBESHIM_SHIM_DIR: path to the installed shim directory.
By default, real package-manager discovery asks mise which first, then falls
back to PATH.
If mise is installed, aubeshim requires mise 2026.5.6 or newer so aube-aware
tool discovery is available.
Use mise for globally managed npm CLIs:
mise use -g npm:prettier@latest
mise use -g npm:@anthropic-ai/claude-code@latestaubeshim keeps that workflow working by sending npm registry metadata commands
such as npm view ... --json to the real npm binary, then leaving mise to
install and expose the resulting global tool on PATH.
Use npm outdated -g, pnpm outdated -g, bun outdated -g, or
yarn outdated -g to check those tools through mise. aubeshim translates those
commands to mise outdated --bump -C "$HOME" and passes package arguments as
npm:<package>.
Direct global add/install/remove commands for named packages also use mise.
Examples include npm install -g prettier, pnpm add -g eslint,
bun add -g typescript, and yarn remove -g cowsay.
Known package-manager interop findings that need later upstream reports are tracked in aube-issues.