Sign In

runner-run

Package Overview
Dependencies
Maintainers
1
Versions
34
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

runner-run

Universal project task runner. Auto-detects toolchain, provides unified CLI.

Source
npmnpm
Version
0.25.0
Version published
Weekly downloads
1.7K
46.01%
Maintainers
1
Weekly downloads
 
Created
Source

runner-run

NPM Socket

runner is for people who bounce between codebases and refuse to memorize each repo's private little task-running religion.

Install it from npm, then stop guessing:

npm i -g runner-run
run <TAB>
runner install --frozen test build

Instead of remembering whether this project wants npm run, pnpm exec, bun x, cargo, uv run, deno task, make, just, go-task, or a monorepo wrapper, use the same shape everywhere.

What You Get

runner-run puts two commands on your PATH:

commanduse it for
runnerFull CLI: detect, install, clean, list, completions.
runShort task-first alias: run test, run build, etc.

runner is the grown-up command. run is the muscle memory command.

Install

npm i -g runner-run

Other package managers work too:

pnpm add -g runner-run
yarn global add runner-run
bun i -g runner-run

Or pin it per project for CI/dev shells:

npm install --save-dev runner-run

For cargo-binstall, source builds, Arch packages, container images, and the shell installer, see all installation methods.

Use It

runner                              # show detected project info
runner <task> [-- <args...>]        # run a task
runner run <target> [-- <args...>]  # run a task or command
run <target> [-- <args...>]         # alias for `runner run`

runner install [--frozen]           # install dependencies
runner clean [-y] [--include-framework]
runner list [--raw] [--json]        # list available tasks
runner doctor [--json]              # show resolver signals
runner why <task> [--json]          # explain how dispatch works
runner completions [<shell>] [-o <path>]

runner run <target> looks for a project task first. If no task exists, it falls back to an exec-style command through the detected toolchain when that ecosystem supports one.

The run binary always means "task or command". So:

run clean
run install

runs a task or command named clean or install, even though those are also runner built-ins.

Completions

Completions are the main trick. Let the shell ask runner what exists right now in the current project:

eval "$(runner completions)"
run <TAB>

Explicit shell forms:

eval "$(runner completions bash)"
eval "$(runner completions zsh)"
eval "$(runner completions fish)"

PowerShell:

runner completions powershell | Out-String | Invoke-Expression

No per-project command archaeology. No guessing which wrapper this repo invented in 2021.

Man Pages

Unix-like installs include man pages:

man runner
man run
man runner-list

What Runner Understands

Package managers and ecosystems:

npm, yarn, pnpm, bun, cargo, deno, uv, poetry, pipenv, go, bundler, composer

Task sources:

package.json / package.json5 / package.yaml
turbo.json / turbo.jsonc
deno.json / deno.jsonc
Makefile
justfile
Taskfile
bacon.toml
mise.toml / .mise.toml
Cargo aliases from .cargo/config.toml

Workspace context:

turbo, nx, pnpm, npm/yarn workspaces, Cargo workspaces

Supported Platforms

OSArchitectures
Linuxx64/arm64 glibc, x64/arm64 musl, armv7 glibc
macOSx64, arm64
Windowsx64, arm64, ia32
Androidarm64 best-effort (Termux)
FreeBSDx64, arm64 experimental
NetBSDx64 experimental

If your platform is not listed, a source build may still work. See the installation methods or poke the issue cave: https://github.com/kjanat/runner/issues.

Troubleshooting

runner works but run does not complete

Regenerate shell completions after installing or upgrading:

eval "$(runner completions)"

Both commands must live in the same bin directory for one generated completion registration to cover both.

More Docs

License

MIT (c) 2026 Kaj Kowalski

Keywords

automation

FAQs

Package last updated on 06 Aug 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts