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

# Quickstart

> A CLI for humans and agents - get your first squad running in 5 minutes

## Installation

Install the Squads CLI globally:

<CodeGroup>
  ```bash npm theme={null}
  npm install -g squads-cli
  ```

  ```bash yarn theme={null}
  yarn global add squads-cli
  ```

  ```bash pnpm theme={null}
  pnpm add -g squads-cli
  ```
</CodeGroup>

## Initialize Your Project

Create a new squads project:

```bash theme={null}
squads init my-project
cd my-project
```

This creates the basic structure:

```
my-project/
├── .agents/
│   ├── squads/
│   │   └── research/
│   │       └── SQUAD.md
│   └── memory/
├── .claude/
│   └── settings.json
└── CLAUDE.md
```

## Run Your First Squad

Check the status of your squads:

```bash theme={null}
squads status
```

Run the research squad:

```bash theme={null}
squads run research
```

## What's Next?

<CardGroup cols={2}>
  <Card title="Understand Agents" icon="robot" href="/concepts/agents">
    Learn how agents work
  </Card>

  <Card title="Configure Squads" icon="users" href="/concepts/squads">
    Customize your teams
  </Card>
</CardGroup>
