Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions src/openhuman/mcp_server/resources.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
Loading