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

# Running Workflows

## Execute a Workflow

```bash
naos workflow run data-pipeline

# Output:
# ✓ Step 1: fetch-data    (2.1s)
# ✓ Step 2: clean-data    (0.8s)
# ✓ Step 3: analyze       (3.5s)
# ✓ Step 4: report        (1.2s)
# ✓ Workflow completed in 7.6s
```

## Failed Execution

```bash
naos workflow run data-pipeline

# Output:
# ✓ Step 1: fetch-data    (2.1s)
# ✓ Step 2: clean-data    (0.8s)
# ✗ Step 3: analyze       (failed: out of memory)
# ✗ Workflow failed at step 3
```

## Resume from Failure

```bash
naos workflow resume data-pipeline

# Resuming from step 3...
# ✓ Step 3: analyze       (3.5s)
# ✓ Step 4: report        (1.2s)
# ✓ Workflow completed
```
