Skip to content

bivvy templates

Lists all available templates from built-in, local, and remote sources, organized by category.

Usage

Terminal window
bivvy templates
Terminal window
bivvy templates --category ruby

Options

OptionDescription
--categoryFilter templates by category (e.g., ruby, node, python)

What It Shows

Templates are grouped by category. Each template shows its name and a short description:

Available Templates
system — System-level package managers
brew Install macOS dependencies from Brewfile
apt Install Debian/Ubuntu packages
ruby — Ruby ecosystem tools
bundle-install Install Ruby dependencies using Bundler
rails-db Set up Rails database
node — Node.js ecosystem tools
yarn-install Install Node.js dependencies using Yarn
npm-install Install Node.js dependencies using npm
pnpm Install Node.js dependencies using pnpm
...
rust — Rust ecosystem tools
cargo-build Build Rust project with Cargo
...
82 templates available. Use `bivvy add <template>` to add one.

Template Sources

Templates are loaded from multiple sources in priority order:

  1. Project-local (.bivvy/templates/steps/) — highest priority
  2. User-local (~/.bivvy/templates/steps/)
  3. Remote (configured via template_sources in config)
  4. Built-in (bundled with Bivvy)

Local and remote templates that aren’t in the built-in manifest appear under a custom category.

Categories

Bivvy ships with templates organized in these categories:

CategoryDescription
systemSystem-level package managers (brew, apt, yum, pacman)
windowsWindows package managers (chocolatey, scoop)
version_managerVersion managers (mise, asdf, volta, fnm)
rubyRuby ecosystem (bundle-install, rails-db)
nodeNode.js ecosystem (yarn-install, npm-install, pnpm, bun, and frameworks)
pythonPython ecosystem (pip, poetry, uv, and frameworks)
rustRust ecosystem (cargo-build, diesel-migrate)
goGo ecosystem
phpPHP ecosystem (composer, laravel)
swiftSwift ecosystem
gradleGradle/Spring Boot
elixirElixir ecosystem (mix)
javaJava ecosystem (maven)
dotnet.NET ecosystem
dartDart and Flutter
denoDeno runtime
iacInfrastructure as Code (terraform, aws-cdk, pulumi, ansible)
containersContainer orchestration (docker-compose, helm)
commonCross-cutting concerns (env-copy, pre-commit)
monorepoMonorepo tools (nx, turborepo, lerna)
installRuntime and tool installers

Examples

List all available templates:

Terminal window
bivvy templates

Show only Python templates:

Terminal window
bivvy templates --category python

See Also