Workflows
{{ runtime_summary.total_workflows }}
{{ runtime_summary.active_workflows }} active
{% extends "base.html" %}
{% set page_title = "Runtime" %}
{% block title %}Runtime | Suvra{% endblock %}
{% block content %}
Workflow engine, MCP server registry, and agent-to-agent gateway. Agent-to-agent delegation is policy-gated and audited through the same enforcement engine as every other action. {{ runtime_summary.total_workflows }} {{ runtime_summary.active_workflows }} active {{ runtime_summary.total_runs }} {{ runtime_summary.mcp_servers }} {{ runtime_summary.a2a_messages }}Runtime Engine
Workflows
Runs
MCP Servers
A2A Messages
Workflows
Preview — in-memory durability
{% for wf in workflows %}
Name Steps Trigger Created
{% endfor %}
{{ wf.name }}
{{ wf.description }}{{ wf.step_count }}
{{ wf.trigger or 'manual' }}
{{ wf.created_at[:10] if wf.created_at else '—' }}
MCP Servers
Preview — registry only
{% for srv in mcp_servers %}
Server ID Status
{% endfor %}
{{ srv.server_id }}
{{ srv.status }}
A2A Messages
{% for msg in a2a_messages %}
From To Task Status
{% endfor %}
{{ msg.from_agent_id }}
{{ msg.to_agent_id }}
{{ msg.task }}
{{ msg.status }}
Create your first workflow:
curl -X POST localhost:8000/v2/runtime/workflows \
-H 'Content-Type: application/json' \
-d '{"workflow_id": "wf1", "name": "Deploy Pipeline"}'