Install
openclaw skills install @ericatmumo/mumo-hermesRuns a multi-model deliberation across models from different labs (Claude, GPT, Gemini, Grok, DeepSeek, Kimi, and more) via mumo's MCP server, returning full responses plus typed cross-model reactions. Use when independent perspectives are needed on architecture/product decisions, design and plan review before implementation, pre-launch pressure tests, tradeoffs with multiple defensible framings, or explicit user requests for a mumo panel. Especially valuable for pre-implementation review of anything touching auth, security, tokens, payments, data exposure, or migrations.
openclaw skills install @ericatmumo/mumo-hermesmumo runs a deliberation across models from different labs (Claude, GPT, Gemini, Grok, DeepSeek, Kimi, and more) and returns their full responses plus typed cross-model reactions: each model says, in its own words, what it keeps, challenges, or wants explored in the others' claims. Use it when independent perspectives are useful — especially for high-regret decisions where a single model's confidence is a real risk.
The mumo MCP server is configured in ~/.hermes/config.yaml under mcp_servers, and the block references ${MUMO_API_KEY} rather than embedding the key. If this skill was installed from the skills hub (hermes skills install clawhub/mumo-hermes), Hermes prompts for MUMO_API_KEY at install time and auto-saves it to ~/.hermes/.env, which is what that reference resolves to. If installed via git clone, see config/mumo.yaml in this skill's directory for the canonical block to merge under your mcp_servers: key, and add a MUMO_API_KEY=mmo_live_… line to ~/.hermes/.env yourself.
Either way, after the config lands, fully exit and restart Hermes (the /reload-mcp slash command is unreliable across versions).
If tools return auth errors, the API key is missing or invalid. Check that MUMO_API_KEY is set in ~/.hermes/.env — Hermes sends an empty credential when the reference does not resolve, which the server answers with a 401. Direct the user to https://mumo.chat/settings/api-keys to create one (keys start with mmo_live_).
Use mumo when the cost of being wrong is greater than the cost of deliberation — especially when the solution space is wide, failure modes are hidden, you may be anchored on a design, or rollback would be hard. Examples:
architecture decisions with non-obvious tradeoffs, plan or design review before commitment, pre-launch pressure tests, stuck debugging after N failed repair attempts, pre-commit adversarial review on risky diffs, memory/skill promotion gates, strategy questions with multiple defensible framings, explicit user requests.
If you authored the plan or code under review, that's a reason FOR a panel, not against it — the author is the worst-positioned reviewer of their own work.
Skip mumo for factual lookups, syntax help, routine refactors, formatting, dependency bumps with clear errors, or normal edit-test cycles. The deliberation tax is real — extra tokens, extra latency, extra moderation work — so spend it on decisions where mistakes compound.
Load at most one playbook when it clearly fits:
| Playbook | When |
|---|---|
contested-decision | choosing between options with real tradeoffs |
design-review | reviewing a proposed system, API, plan, or code shape |
uncertainty-expansion | exploring unknowns, stress-testing assumptions |
red-team | finding failure modes, abuse cases, or launch risks |
If none clearly fits, use this kernel only.
These are defaults. If the user prefers more autonomy (e.g., "don't ask before appending" or "always include a GPT and a Gemini model"), follow their preferences over this guidance.
Call create_deliberation with the user's problem. Set application to "Hermes Agent". Set moderator_name to your own model identity (e.g., the model Hermes is currently running as — Claude, GPT, Gemini, or the local model) for audit clarity — not the user's name; their identity is already on the session. Optionally set takeaway: true for a structured round 0 Takeaway — see Takeaway.
Verify the response contains a session_id, and keep that exact returned ID for every downstream call. UUID shape is a sanity check; identity continuity is the real check. If it is missing, malformed, or inconsistent with list_sessions, recover via Verifying the call actually fired before proceeding.
Call wait_for_round with the session_id. That alone is enough — a session has at most one round in flight, so it resolves to the round you just started; pass round_id only when you want an earlier round. Long waits are normal — frontier-model panels typically take 15–120s, and 60+ seconds isn't a failure signal. Tell the user upfront ("running a panel — expect ~30–60s") so the wait doesn't feel broken.
Branch on the response's structuredContent.recommended_client_action rather than parsing prose. The 5-value enum tells you exactly what to do:
| Action | What it means | What to do |
|---|---|---|
proceed_with_complete_result | All target models completed | Read the round normally |
proceed_with_partial_result | Some failed, ≥1 succeeded (is_usable: true) | Read what's there; note absent models if relevant to the user |
poll_again | Round still in progress | Call wait_for_round again with the same args |
retry | Round failed with at least one transient failure (rate-limit, provider error, internal deadline) | The failed round is auto-refunded; call append_round with the same prompt to retry |
abandon | Round failed with no transient failures | Don't retry; report failure to the user |
The server derives this from round_status + per-model error_code — it's the canonical "what next?" signal. Treat transport / tool-call errors separately from mumo round status: catch transport failures around the call; branch on recommended_client_action for everything else.
On a usable round, read the claim map first, then relevant participant prose. The claim map is the navigation layer; prose is the supporting evidence. It's also your privileged preview — participants haven't seen each other's reactions, you have (see Reactions are in the ledger).
Create snippets as your primary response to the round. Optionally add a round prompt for broad steering.
Call append_round if another round would help. Optionally set takeaway: true for a per-round Takeaway (see Takeaway). Otherwise stop and synthesize for the user yourself.
You are an extension of the operator, not a third party setting up a scenario. When the deliberation is about the operator's problem, write the prompt in first person — "I'm the CTO of…", "We have 10 weeks and…", "Here's my migration plan…" — as if they're asking the panel directly. "You are X" case-study framing makes models grade a hypothetical instead of advising a real person, and it changes their answers. Reserve second person for prompts where the panel itself is the actor being tasked.
Autonomous agent loops occasionally fabricate tool-call results — reporting a deliberation as sent when it wasn't. If you suspect this (the response is missing the expected session_id, or the value you're about to pass downstream doesn't match what create_deliberation actually returned), treat the call as not successfully established and recover:
list_sessions. Match by prompt content to confirm whether your create_deliberation actually ran.create_deliberation again — don't continue downstream as if the session exists.list_sessions returned (not whatever was in your context) for the next call.mumo's session_id (and round_id, when you use it) are UUIDs as a service contract — a returned value that doesn't match UUID format is one signal something is off, but identity continuity matters more than format. The strongest check is whether the session_id your subsequent calls reference matches what create_deliberation actually returned in its response.
Snippets are moderator attention. They mark what mattered in the prior round and optionally explain why.
| Type | Reaction |
|---|---|
| KEEP | this seems worth preserving |
| EXPLORE | there's something here |
| CHALLENGE | I'm not convinced |
| CORE | this feels central |
| SHIFT | this changed the frame |
A snippet comment can be reflective, evaluative, clarifying, skeptical, or directive. "This feels like the crux" and "I'm least convinced by this" are valid comments. You do not need an action verb or next-step directive. The quality bar is: is this a genuine, situated reaction to what the model said?
Use the round prompt for broad comments that don't attach to a specific quote. Use snippets for quote-grounded attention.
Avoid huge quote dumps, generic praise repeated across many snippets, or comments that shift participants away from the problem into platform meta. More guidance: references/snippets.md.
Use this test:
Does this note help participants think about the user's problem, or does it mainly report on the platform, session, or process?
Don't use snippet comments to narrate your own moderation process ("I'm using CHALLENGE to redirect the panel"). Don't include platform meta ("this model used the most tokens"). Just react.
The claim map encodes consensus and contestation as structured reactions on quoted claims. Each claim shows:
Reading discipline:
The claim map is not a verdict. It compresses argumentative structure but loses rhetorical nuance and confidence texture. Use it to navigate; read prose to understand.
Participants never see each other's reactions. Each model's prior-round reactions return only to their author, as private notes, with an instruction to weave the ones that matter into its next response — in its own words, in prose. Peers see that prose, not the underlying reactions. Frontier panels carry forward most of what matters this way, but the carry is the author's choice, not a guarantee.
This makes the claim map your privileged preview: reading it after a round, you see the full reaction ledger before any participant has responded to it. Two consequences:
If responses include claim_confidence or snippets[].comment_confidence, these are self-reported and not calibrated across models. Surface the confidence_disclaimer string if displaying scores.
Mumo surfaces fault lines and supporting arguments; it does not produce the decision. The decision belongs to you (the agent) and the user. When acting on a deliberation:
If you lose track of the session_id mid-conversation (long chats, context compaction, dropped tool result), recover before starting a new deliberation:
list_sessions to find your latest sessions. Match by prompt content.get_session with the recovered ID for full state, or wait_for_round(session_id) if you suspect a round is still in flight — it resolves to the latest round on its own.create_deliberation if the original is recoverable — duplicate sessions waste tokens and produce confusing parallel state.One optional flag requests an LLM-curated summary on top of the raw round output:
takeaway (default false) — accepted on create_deliberation AND append_round. Generates a per-round Takeaway (round_takeaway: bottom_line + items[] of question / answer / consensus with claim references) for that round; surfaces on get_session.Set it liberally when round-level summaries may matter — it bills at cost (no markup) through the standard credit wallet.
Full mechanics and artifact field reference: references/takeaway.md.
After each usable round you have one job before deciding whether to continue: synthesize what the panel said for the user. There are two paths, and which one applies depends on whether you opted into a Takeaway when you called the tool:
takeaway: true on this round, get_session returns a structured round_takeaway (bottom_line + items[] of question / answer / consensus, with claim references). Use it as your read path — it's produced for agent consumption and saves you from re-summarizing prose.Either way, don't dump the transcript. Mumo produces structure; your job is to translate it into "here's what the panel thinks and what to do next." Surface the round's claim_map_url so the user can open the claim map directly — an owner-only link to their session.
Then align with the user on whether to append a round.
More at references/synthesis.md.
Append another round when:
Stop when:
The panel does not need to converge. Sometimes the right output is a clear map of why the decision remains contested — that's actionable for the user, even without a verdict.
Pacing: positions develop across rounds, not within them — a reaction gets woven into the next round's prose, which draws reactions of its own a round later.
| Need | Tool |
|---|---|
| Start a session | create_deliberation |
| Wait for model responses | wait_for_round |
| Add a follow-up round | append_round |
| Recover/read full state | get_session |
| Share a session at a public link | share_session |
| Find prior sessions | list_sessions |
| Confirm model IDs | list_models |
| Check wallet balance | get_credit |
In Hermes' tool registry these surface as mcp_mumo_create_deliberation, mcp_mumo_wait_for_round, etc.
If the user names specific models, call list_models first. Otherwise omit models and let mumo select the panel. More on model selection: references/model-selection.md.
references/claim-maps.mdreferences/takeaway.mdreferences/snippets.mdreferences/model-selection.mdreferences/synthesis.mdreferences/operating-notes.md