Skip to content

Get started

Install fledge.

One binary, no runtime. Pick a path below, then run fledge --version to confirm. The latest release is v1.5.1.

crates.io

cli

Fastest. Builds from source via cargo.

$ cargo install fledge

Homebrew

cli

macOS + Linux. Pre-built bottle from the tap.

$ brew install CorvidLabs/tap/fledge

Install script

cli

Detects your OS + arch, drops a binary on PATH.

$ curl -fsSL https://raw.githubusercontent.com/CorvidLabs/fledge/main/install.sh | sh

Nix

cli

Run without installing, or add to a flake.

$ nix run github:CorvidLabs/fledge

From source

Clone and build with a local toolchain.

# Clone + build
$ git clone https://github.com/CorvidLabs/fledge.git
$ cd fledge
$ cargo install --path .

Verify

Confirm the install and list the built-in templates.

$ fledge --version
fledge 1.5.1

$ fledge templates list
→ rust-cli, ts-bun, python-cli, go-cli, …

Shell completions

Auto-install for the current shell, or emit completions for bash, zsh, and fish by hand.

# Auto-detect the current shell
$ fledge completions --install

# Or by hand
$ fledge completions bash >> ~/.bashrc
$ fledge completions zsh > ~/.zfunc/_fledge
$ fledge completions fish > ~/.config/fish/completions/fledge.fish