The Workflow Tab provides real-time visualization of agent interactions, task delegation networks, and workflow execution patterns within the mindX autonomous intelligence platform.
Status: β DEPLOYED & OPERATIONAL Features: Interactive flow diagrams, task networks, performance analytics Visualization: SVG-based network graphs with real-time animation
βββββββββββββββββββ
β π§ Mastermind β
β (Primary) β
β Tasks: 47/52 β
βββββββββββββββββββ
βββββββββββββββββ
β π» SimpleCoderβ
β (Worker) β
β Queue: 3 β
βββββββββββββββββ
βββββββββββββββ
β π§ ToolName β
β Active: β β
βββββββββββββββ
Orchestration β Specialized: 45%
Orchestration β Tools: 30%
Specialized β Tools: 20%
Peer-to-Peer: 5%
Average Task Duration: 2.3s
P50 Latency: 1.8s
P95 Latency: 4.2s
P99 Latency: 8.1s
Mastermind: 78% capacity
Coordinator: 65% capacity
SimpleCoder: 89% capacity
Guardian: 42% capacity
class WorkflowTab extends TabComponent {
constructor(config) {
super({
id: 'workflow',
label: 'Workflow',
refreshInterval: 5000,
autoRefresh: true
});
}
renderWorkflowDiagram(data) {
// Create SVG network visualization
const svg = d3.select('#workflow-graph')
.append('svg')
.attr('width', this.width)
.attr('height', this.height);
// Render nodes and connections
this.renderNodes(svg, data.agents);
this.renderConnections(svg, data.workflows);
}
}
GET /workflows/active
Response: {
"workflows": [
{
"workflow_id": "wf_001",
"source_agent": "mastermind",
"target_agent": "simplecoder",
"task_type": "code_generation",
"status": "in_progress",
"started_at": "2026-01-23T14:30:00Z"
}
]
}
GET /workflows/stats
Response: {
"active_count": 12,
"completed_today": 847,
"error_rate": 0.02,
"avg_duration": 2.3
}
The Workflow Tab provides essential visibility into the dynamic interactions between agents, enabling optimization of task delegation and workflow performance.