OverviewHistoryStatsSecurity
npx skills add ...
Documentation
SKILL.md
npx skills add ruvnet/ruflo --skill workflow-automation
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 skills add ruvnet/ruflo --skill workflow-automation
Create and execute automated workflows for complex multi-step processes.
| Template | Description |
|---|---|
ci | Continuous integration pipeline |
deploy | Deployment workflow |
test | Testing workflow |
release | Release automation |
review | Code review workflow |
npx claude-flow workflow listnpx claude-flow workflow export --name "deploy-flow" --format yamlnpx claude-flow workflow status --name "deploy-flow"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"