Installation

This guide covers various ways to install DevBoy tools on your system.

Prerequisites

  • Rust 1.75 or later (for building from source)
  • Git (for cloning the repository)
  • A GitHub, GitLab, Jira, or ClickUp account (for API access)

Installation methods

The easiest way to install DevBoy tools. Install globally so the devboy command is available system-wide. The correct binary for your platform is installed automatically.

npm
pnpm
yarn
npm install -g @devboy-tools/cli

Then use via CLI:

devboy --help

Building from source gives you the latest features and is recommended for development.

# Clone the repository
git clone https://github.com/meteora-pro/devboy-tools.git
cd devboy-tools

# Build the project
cargo build --release

# The binary will be available at:
# ./target/release/devboy

From pre-built binaries

Download pre-built binaries from the Releases page.

macOS:

# Download the latest release for your architecture
curl -L -o devboy.tar.gz https://github.com/meteora-pro/devboy-tools/releases/latest/download/devboy-macos-arm64.tar.gz

# Extract
tar -xzf devboy.tar.gz

# Move to a directory in your PATH
sudo mv devboy /usr/local/bin/

Linux:

# Download for x86_64
curl -L -o devboy.tar.gz https://github.com/meteora-pro/devboy-tools/releases/latest/download/devboy-linux-x86_64.tar.gz

# Extract
tar -xzf devboy.tar.gz

# Move to a directory in your PATH
sudo mv devboy /usr/local/bin/

Windows:

  1. Download devboy-windows-x86_64.exe.zip from releases
  2. Extract the ZIP file
  3. Add the directory to your PATH environment variable

Verify installation

After installation, verify that DevBoy is working:

devboy --help

You should see the help output with available commands.

Next steps

Now that you have DevBoy installed, proceed to the Quick Start guide to configure your first integration.