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

# Creating Workflows

## Via CLI

```bash
naos workflow create my-pipeline
```

## Adding Steps

```bash
naos workflow add-step my-pipeline step-1
naos workflow add-step my-pipeline step-2
naos workflow add-step my-pipeline step-3
```

## Via Configuration

```yaml
workflows:
  my-pipeline:
    steps:
      - name: step-1
        agent: agent-a
      - name: step-2
        agent: agent-b
      - name: step-3
        agent: agent-c
```

## Verify

```bash
naos workflow status my-pipeline

# Workflow: my-pipeline
# Steps: 3
# Status: ready
#
# Steps:
#   1. step-1  → step-2  → step-3
```
