Agent skill · Design & Presentation

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.

rUv71,307★ · +1,002/wk · 3 repos on radarProfile →
claude-codecodexMIT
Install
npx skills add ruvnet/ruflo --skill workflow-automation --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 2 KB
Bundled scripts: none
Path: .agents/skills/workflow-automation/SKILL.md
Open the folder on GitHub →
Where it comes from
Source: ruvnet/ruflo
Stars: 67,015 · +629 this week
Language: TypeScript
Read our review of the source →

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# 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: [impleme

What's inside
Steps it walks through
  1. Purpose
  2. When to Trigger
  3. Commands
  4. Create Workflow
  5. Execute Workflow
  6. List Workflows
  7. Export Template
  8. View Status
  9. Built-in Templates
  10. Workflow Structure
  11. Best Practices
Commands it runs
npx claude-flow workflow create --name "deploy-flow" --template ci
npx claude-flow workflow execute --name "deploy-flow" --env production
npx claude-flow workflow list
npx claude-flow workflow export --name "deploy-flow" --format yaml
npx claude-flow workflow status --name "deploy-flow"
More from ruflo
All skills →
About this skill
What does the workflow-automation skill do?

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.

How do I install it?

Run `npx skills add ruvnet/ruflo --skill workflow-automation --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From ruvnet/ruflo, a repository with 67,015 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going