workflow
From ruvnet
Event-driven workflow automation with message queues
Install
/workflowFacts
- Repository
- ruvnet/ruflo
- Status
- Actively maintained
- Last commit
- Source file
- .claude/commands/flow-nexus/workflow.md
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
feature-development
★ 229,918Workflow command scaffold for feature-development in everything-claude-code.
affaan-mupdated 15d agoMITdatabase-migration
★ 229,918Workflow command scaffold for database-migration in everything-claude-code.
affaan-mupdated 15d agoMITadd-language-rules
★ 229,918Workflow command scaffold for add-language-rules in everything-claude-code.
affaan-mupdated 15d agoMITcommit-push-pr
★ 137,934Commit, push, and open a PR
anthropicsupdated 14d agodedupe
★ 137,934Find duplicate GitHub issues
anthropicsupdated 14d agotriage-issue
★ 137,934Triage GitHub issues by analyzing and applying labels
anthropicsupdated 14d ago