Loading...
Loading...
Workflow creation, execution, and template management. Automates complex multi-step processes with agent coordination. Use when: automating processes, creating reusable workflows, orchestrating multi-step tasks. Skip when: simple single-step tasks, ad-hoc operations.
npx skill4agent add ruvnet/claude-flow workflow-automationnpx claude-flow workflow create --name "deploy-flow" --template cinpx claude-flow workflow execute --name "deploy-flow" --env productionnpx claude-flow workflow listnpx claude-flow workflow export --name "deploy-flow" --format yamlnpx claude-flow workflow status --name "deploy-flow"| Template | Description |
|---|---|
| Continuous integration pipeline |
| Deployment workflow |
| Testing workflow |
| Release automation |
| Code review workflow |
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"