feat: deploy infrastructure + disk/drive, calendar, presentation, workspaces, onboarding, demo user

This commit is contained in:
2026-05-19 16:26:26 +03:00
parent 688d043dad
commit 3529c39b22
304 changed files with 18826 additions and 1176 deletions
+2
View File
@@ -15,6 +15,7 @@ from app.agents.ui_test_agent import UITestAgent
from app.agents.rollout_agent import RolloutAgent
from app.agents.conductor_agent import ConductorAgent
from app.agents.supervisor_agent import SupervisorAgent
from app.agents.meta_agent import MetaAgent
class AgentRegistry:
@@ -36,6 +37,7 @@ class AgentRegistry:
self.register(RolloutAgent())
self.register(ConductorAgent())
self.register(SupervisorAgent())
self.register(MetaAgent())
def register(self, agent: BaseAgent) -> None:
if not agent.name: