> ## Documentation Index
> Fetch the complete documentation index at: https://docs.agentsfleet.net/llms.txt
> Use this file to discover all available pages before exploring further.

# Install the client

> Install and remove the agentsfleet command-line client.

# Install the client

## What this does

This installs the `agentsfleet` command-line client. You can then manage fleets from a terminal.

## Before you begin

Install Node.js 24 or later. The package also supports Bun 1.3.14 or later.

## Steps

1. Install the package from npm.

   ```bash theme={"theme":"vesper"}
   npm install --global @agentsfleet/cli
   ```

   ```text theme={"theme":"vesper"}
   added <varies> packages in <varies>
   ```

2. Show the client version.

   ```bash theme={"theme":"vesper"}
   agentsfleet --version
   ```

   ```text theme={"theme":"vesper"}
   <varies>
   ```

## Verify it works

Run the local checks.

```bash theme={"theme":"vesper"}
agentsfleet doctor
```

```text theme={"theme":"vesper"}
<varies>
```

The command checks the API, your selected workspace, and the workspace binding. A failed check returns a nonzero exit code; see the [command reference](/cli/agentsfleet#errors) for the meanings.

## Common problems

If `agentsfleet` is not found, reopen the terminal. Also check that the npm global binary directory is in your `PATH`.

If installation reports an unsupported runtime, upgrade Node.js to version 24 or later.

## Remove or undo

Removing the client does not delete remote fleets or workspace data.

```bash theme={"theme":"vesper"}
npm uninstall --global @agentsfleet/cli
```

```text theme={"theme":"vesper"}
removed <varies> packages in <varies>
```

## Related pages

* [Quickstart](/quickstart)
* [Client configuration](/cli/configuration)
* [Global options](/cli/flags)
