Languages tools your agent already has
Runtimes and package managers already on the machine, so an agent can run code rather than only write it.
23 toolsAn agent that can only produce code is a very good autocomplete. One that can run it finds out whether it worked. These are what let your agent execute a script it just wrote, install what that script needs, and read the real error instead of predicting one.
The tools
Preinstalled on every plan, with nothing to set up. A few depend on the engine you pick.
nodeRun JavaScript and TypeScript scripts, servers and build steps.
npmInstall dependencies and run the scripts a project already defines.
bunInstall, bundle, test and run, all in one fast toolchain.
python3Run Python scripts and one-off snippets.
uvResolve Python dependencies and run tools in isolated environments.
goBuild, test and run Go programs and modules.
rustcCompile Rust source files directly.
cargoBuild, test and manage Rust crates and their dependencies.
makeRun the build targets a Makefile already describes.
cmakeConfigure and generate native builds for C and C++ projects.
gccCompile and link C programs.
g++Compile and link C++ programs.
gofmtFormat Go source to the canonical style, in place or on stdout.
bunxRun a package binary straight from npm without installing it first.
uvxRun a Python CLI from PyPI in a throwaway environment, with no install step.
justRun project recipes from a justfile.
taskRun project tasks from a Taskfile.yml.
phpRun PHP scripts — and the interpreter wp-cli needs for WordPress work.
pkg-configTell a build where a system library's headers and flags live.
autoconfGenerate the ./configure script an autotools source tree expects.
automakeGenerate the Makefiles that go with an autotools configure script.
libtoolBuild and link shared libraries portably during a source build.
patchelfRepoint a downloaded binary's interpreter or library search path.
A real command line, already set up
Every agent runs on a sandboxed machine with the whole toolbox preinstalled. No setup step, on any plan.
