Install AgileBuilder

Install AgileBuilder CLI on your computer

Requirements

Before installing AgileBuilder, make sure your system meets these requirements:

  • Node.js: Version 18.0 or higher
  • npm / pnpm / yarn: Any package manager
  • Git: Required for importing templates from Git repositories

pnpm is recommended as the package manager for better performance.


Install the CLI

Install AgileBuilder CLI globally via npm:

# Using npm
npm install -g agilebuilder

# Using pnpm
pnpm add -g agilebuilder

# Using yarn
yarn global add agilebuilder

After installation, verify it works:

agilebuilder --version

Launch the Local UI

Start the local management interface:

agilebuilder ui

The browser will automatically open http://localhost:3456.

The local UI works offline. All data is stored on your machine.


Offline Installation

For offline environments, you can download pre-built binaries:

  1. Go to GitHub Releases and download the archive for your platform
  2. Extract to any directory
  3. Add the binary to your PATH environment variable

Uninstall

To uninstall AgileBuilder:

npm uninstall -g agilebuilder

Next Steps