AgentStack
SKILL verified MIT Self-run

Hermes Bridge

skill-zedarvates-botte-secrete-hermes-bridge · by zedarvates

Expose auto_route/local_chat/fusion/find_skills/infra_tips to Hermes-Agent (or any framework that expects OpenAI-function-calling tool specs instead of MCP) — plus a one-call MCP config generator for the zero-code path if the framework already speaks MCP. Use when connecting botte-secrète's routing belt to another agent framework.

No reviews yet
0 installs
2 views
0.0% view→install

Install

$ agentstack add skill-zedarvates-botte-secrete-hermes-bridge

✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

Are you the author of Hermes Bridge? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

hermes_bridge — connect the belt to another agent framework

botte-secrète already runs a standard MCP server (skills.llm_mcp.server, stdio JSON-RPC). If the target framework speaks MCP, that's the whole integration — no code in this module runs:

python -m skills.hermes_bridge.cli config --cwd /path/to/botte-secrete
# → paste the printed {"mcpServers": {...}} block into the framework's MCP config

This module exists for frameworks — [[hermes-second-brain]] among them — that instead expect a flat list of OpenAI-function-calling tool specs + a dispatcher, a common shape for agents built before/without MCP support.

python -m skills.hermes_bridge.cli schemas          # the 5 tool specs, OpenAI-shaped
python -m skills.hermes_bridge.cli call botte_auto_route --prompt "rename x to y"
from skills.hermes_bridge import TOOL_SCHEMAS, dispatch

# register TOOL_SCHEMAS with the framework's tool-calling mechanism, then:
dispatch("botte_auto_route", {"prompt": "..."})   # → JSON string, same shape as the MCP tool

The 5 tools

Deliberately a subset of the ~35-tool MCP surface — the ones that matter for a second-brain / routing integration:

| tool | what it does | |------|----------------| | botte_auto_route | decide local-vs-cloud (0 tokens); execute=true to actually run it | | botte_local_chat | run a prompt on a local model — 0 cloud tokens | | botte_fusion | cascade / draft_refine / vote — models collaborating | | botte_find_skills | 0-token local search over installed skill catalogs | | botte_infra_tips | hardware/software setup advice for running local models |

Why this matters for a second-brain agent

Every task [[hermes-second-brain]] would otherwise send straight to its own model gets a chance to resolve locally or via the cheapest capable tier first — see [[bench]] for the measured (not asserted) savings from that. botte_find_skills also gives Hermes 0-token access to the local skill catalog instead of re-deriving capabilities from scratch each session.

Related: [[llmmcp]] (the native MCP server this bridges from), [[autorouter]], [[bench]] (the proof), docs/integrations/hermes.md (the full integration write-up).

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet — be the first.

Versions

  • v0.1.0 Imported from the upstream source.