SysOps: deploy-all — 2026-06-09 12:56 UTC

This commit is contained in:
sysops
2026-06-09 12:56:59 +00:00
parent 9b88e7c110
commit 3bf15c4850
9 changed files with 159 additions and 16 deletions
+1 -1
View File
@@ -470,7 +470,7 @@ async def stream_daily_briefing():
"agent_msg", "agent_mesh", agent, "agent",
f"@{agent}: {ev.get('title') or ev.get('event_type')}",
)
for agent_key in ("bizdev", "finance", "sourcing", "halal", "packaging"):
for agent_key in ("bizdev", "finance", "sourcing", "halal", "packaging", "hr"):
yield _briefing_step(
"agent_msg", "agent_mesh", "herman", "agent",
f"Herman → {agent_key}: briefing context gedeeld",
+3 -3
View File
@@ -12,7 +12,7 @@ CHANNEL_ROUTES = {
"marketing": "/marketing",
"beurs": "/beurs",
"agents": "/agents",
"hermes": "/hermes",
"hr": "/agents",
"browser": "/browser",
"documents": "/documents",
"settings": "/settings",
@@ -56,8 +56,8 @@ def _resolve_source(row: dict[str, Any]) -> dict[str, Any]:
source_url = "/marketing"
elif agent in ("wholesale_scraper", "retail_intel"):
source_url = "/retail"
elif agent == "hermes":
source_url = "/hermes"
elif agent == "hr":
source_url = "/agents"
internal_url = source_url if source_url.startswith("/") else None
external_url = source_url if source_url and source_url.startswith("http") else None