---
title: "Creating Supervisors"
description: "Creating Supervisors"
resource: https://www.aiagents.nexus/docs/manual/supervisors/creating-supervisors
generated: { by: "process:nexus-agent-assets", at: 2026-09-07T09:13:03Z }
status: stable
---

# Creating Supervisors

## Via CLI

```bash
naos supervisor create main --strategy one-for-one --max-restarts 3
```

## Via Configuration

```yaml
supervisors:
  main:
    strategy: one-for-one
    maxRestarts: 3
    restartWindow: 60
    children:
      - researcher
      - analyzer
      - worker
```

## Adding Children

```bash
# Add individual child
naos supervisor add-child main researcher

# Add multiple children
naos supervisor add-child main researcher analyzer worker
```

## Verify

```bash
naos supervisor status main

# Supervisor: main
# Strategy: one-for-one
# Max Restarts: 3
# Restart Window: 60s
#
# Children:
#   researcher   ● running    0 restarts
#   analyzer     ● running    0 restarts
#   worker       ○ stopped    0 restarts
```
