claudegoodies
Command

workflow

From ruvnet

Event-driven workflow automation with message queues

Install

/workflow

Facts

Repository
ruvnet/ruflo
Status
Actively maintained
Last commit

Source preview

The instructions Claude Code reads when this command runs.

# Flow Nexus Workflows

Create and manage automated workflows with event-driven processing.

## Create Workflow
```javascript
mcp__flow-nexus__workflow_create({
  name: "CI/CD Pipeline",
  description: "Automated testing and deployment",
  steps: [
    { id: "test", action: "run_tests", agent: "tester" },
    { id: "build", action: "build_app", agent: "builder" },
    { id: "deploy", action: "deploy_prod", agent: "deployer" }
  ],
  triggers: ["push_to_main", "manual_trigger"]
})
```

## Execute Workflow
```javascript
mcp__flow-nexus__workflow_execute({
  workflow_id: "workflow_id",
  input_data: {
    branch: "main",
    commit: "abc123"
  },
  async: true // Execute via message queue
})
```

## Monitor Workflows
```javascript
// Get workflow status
mcp__flow-nexus__workflow_status({
  workflow_id: "id",
  include_metrics: true
})

// List workflows
mcp__flow-nexus__workflow_list({
  status: "running",
  limit: 10
})

// Get audit trail
mcp__flow-nexus__workflow_audit_trail({
  workflow_id: "id",
  limit: 50
})
```

## Agent Assignment
```javascript
mcp__flow-nexus__workflow_agent_assign({
  task_id: "task_id",
  agent_type: "coder",
  use_vector_similarity: true // AI-powered matching
})
```

## Queue Management
```javascript
mcp__flow-nexus__workflow_queue_status({
  include_messages: true
})
```

## Common Workflow Patterns

### CI/CD Pipeline
```javascript
mcp__flow-nexus_
View full source on GitHub →

Other slash commands