workflow-automation
>
Works with
Claude CodeCursorCodex CLIGitHub CopilotGemini CLI
---
name: workflow-automation
description: >
license: MIT
---
# Workflow Automation Skill
## Purpose
Create and execute automated workflows for complex multi-step processes.
## When to Trigger
- Multi-step automated processes
- Reusable workflow creation
- Complex task orchestration
- CI/CD pipeline setup
## Commands
### Create Workflow
```bash
npx claude-flow workflow create --name "deploy-flow" --template ci
```
### Execute Workflow
```bash
npx claude-flow workflow execute --name "deploy-flow" --env production
```
### List Workflows
```bash
npx claude-flow workflow list
```
### Export Template
```bash
npx claude-flow workflow export --name "deploy-flow" --format yaml
```
### View Status
```bash
npx claude-flow workflow status --name "deploy-flow"
```
## Built-in Templates
| Template | Description |
|----------|-------------|
| `ci` | Continuous integration pipeline |
| `deploy` | Deployment workflow |
| `test` | Testing workflow |
| `release` | Release automation |
| `review` | Code review workflow |
## Workflow Structure
```yaml
name: example-workflow
steps:
- name: analyze
agent: researcher
task: "Analyze requirements"
- name: implement
agent: coder
depends: [analyze]
task: "Implement solution"
- name: test
agent: tester
depends: [implement]
task: "Write and run tests"
```
## Best Practices
1. Define clear step dependencies
2. Use appropriate agent types per step
3. Include validation gates
4. Export workflows for reuseMore General & Other skills
find-skills
vercel-labs/skills
Helps users discover and install agent skills when they ask questions like "how do I do X", "find a skill for X", "is there a skill that can...", or express interest in extending capabilities. This skill should be used when the user is looking for functionality that might exist as an installable skill.
1.5M
grill-me
mattpocock/skills
A relentless interview to sharpen a plan or design.
972.7k
grill-with-docs
mattpocock/skills
A relentless interview to sharpen a plan or design, which also creates docs (ADR's and glossary) as we go.
828.8k

