# Workflow Automation

> Create and run multi-step automation workflows with conditional logic, loops, and parallel execution

- Skill: `chainlesschain/workflow-automation` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds@latest add chainlesschain/workflow-automation`
- Raw SKILL.md: https://api.skillmd.com/api/skills/chainlesschain/workflow-automation/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Web & Frontend
- Author: chainlesschain (https://skillmd.com/u/chainlesschain)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/chainlesschain/workflow-automation

---


# Workflow Automation Skill

Create and manage multi-step automation workflows.

## Usage

```
/workflow-automation <action> [name/id] [options]
```

## Actions

| Action   | Description            | Example                                      |
| -------- | ---------------------- | -------------------------------------------- |
| `create` | Create a new workflow  | `/workflow-automation create "Daily Report"` |
| `run`    | Execute a workflow     | `/workflow-automation run daily-backup`      |
| `list`   | List all workflows     | `/workflow-automation list`                  |
| `status` | Check workflow status  | `/workflow-automation status workflow-id`    |
| `pause`  | Pause running workflow | `/workflow-automation pause workflow-id`     |
| `resume` | Resume paused workflow | `/workflow-automation resume workflow-id`    |
| `cancel` | Cancel workflow        | `/workflow-automation cancel workflow-id`    |

## Workflow Features

- **Sequential Steps**: Run actions one after another
- **Conditional Branching**: If/else based on previous results
- **Loops**: Repeat actions for a list of items
- **Parallel Execution**: Run independent actions simultaneously
- **Sub-workflows**: Nest workflows for complex pipelines
- **Error Handling**: Retry, skip, or abort on failure

