---
title: "Creating Pools"
description: "Strategy Description round robin Distribute tasks evenly across agents least busy Send to the agent with fewest pending tasks random Random assignment"
resource: https://www.aiagents.nexus/docs/manual/pools/creating-pools
generated: { by: "process:nexus-agent-assets", at: 2026-09-07T09:13:03Z }
status: stable
---

# Creating Pools

## Via CLI

```bash
naos pool create workers --size 5 --agent researcher
```

## Via Configuration

```yaml
pools:
  workers:
    agent: researcher
    size: 5
    strategy: round-robin
```

## Pool Strategies

| Strategy | Description |
|----------|-------------|
| **round-robin** | Distribute tasks evenly across agents |
| **least-busy** | Send to the agent with fewest pending tasks |
| **random** | Random assignment |
