From bcdad327daecfde029ae2aed753d5ad3b17fbea3 Mon Sep 17 00:00:00 2001 From: CodeGhost21 <164498022+CodeGhost21@users.noreply.github.com> Date: Thu, 9 Jul 2026 05:25:46 +0530 Subject: [PATCH] fix(mcp): add master_agent + master_reporter to RESOURCE_CATALOG (#4717) --- src/openhuman/mcp_server/resources.rs | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/src/openhuman/mcp_server/resources.rs b/src/openhuman/mcp_server/resources.rs index 7c2ff1290..ff1a806be 100644 --- a/src/openhuman/mcp_server/resources.rs +++ b/src/openhuman/mcp_server/resources.rs @@ -283,6 +283,18 @@ const RESOURCE_CATALOG: &[PromptResource] = &[ description: "Reasoning core of the split-brain orchestration loop: executes the front end's macro-instructions and compiles the channel reply.", content: include_str!("../orchestration/reasoning_agent/prompt.md"), }, + PromptResource { + uri: "openhuman://prompts/agents/master_agent", + name: "master_agent", + description: "Human-facing worker for the Master chat: OpenHuman talking directly to its human, orchestrating other agents on their behalf.", + content: include_str!("../orchestration/master_agent/prompt.md"), + }, + PromptResource { + uri: "openhuman://prompts/agents/master_reporter", + name: "master_reporter", + description: "Tool-free relay that reports an external agent's reply back into the Master chat as OpenHuman's own message.", + content: include_str!("../orchestration/master_reporter/prompt.md"), + }, PromptResource { uri: "openhuman://prompts/agents/skill_setup", name: "skill_setup",