ruvnet/ruflo

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.

All-time #8200 First seen Feb 8, 2026
8-week activity · all time api

Installation

$ npx skills add ruvnet/ruflo --skill workflow-automation

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from ruvnet/ruflo · top by installs.

npx skills add ruvnet/ruflo

Browse all from ruvnet/ruflo

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 71.7K
License LICENSE
Default branch main
Open issues 659
Status Active

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,760 B
  • docs SUMMARY.md 294 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 1,337 installs

Videos

Tutorials, guides, and showcases specifically about this skill.

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

npx claude-flow workflow create --name "deploy-flow" --template ci

Execute Workflow

npx claude-flow workflow execute --name "deploy-flow" --env production

List Workflows

npx claude-flow workflow list

Export Template

npx claude-flow workflow export --name "deploy-flow" --format yaml

View Status

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

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 reuse