diff --git a/src/openhuman/mcp_server/resources.rs b/src/openhuman/mcp_server/resources.rs index 7c2ff1290f..ff1a806be7 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",