Hermes skill44 recipesTabby Tavern companion

Local AI Stack Connectivity

A verified playbook for wiring Docker inference engines, chat UIs, search, and MCP gateways on one network. Distilled from the Tabby Tavern lab — not theory.

THE CONNECTION RULE — wire any OpenAI-compatible UI to an engine:
  1. Path is always /v1http://<host>:<port>/v1. Never /api/v1. Never put /v1/chat/completions in the base URL.
  2. Host is the in-network service name, not localhost. Inside Docker, localhost is the container you are in. Open WebUI talks to TabbyAPI at http://tabbyapi:5000/v1.
  3. Model is the exact served id (e.g. llama3.1:8b), not the word “ollama”. Ask /v1/models.
  4. If the engine has auth, pass its API key. Do not “fix” a 401 by changing the host.

What’s in this Space

FileWhat it is
SKILL.mdFull Hermes skill: connection rule, discovery, wiring workflow, pitfalls
references/wiring-recipes.md44 recipes — config location, keys, one-line fix, verify step

Pitfalls already paid for

Install as a Hermes skill

mkdir -p ~/.hermes/skills/mlops/local-ai-stack-connectivity
cp SKILL.md ~/.hermes/skills/mlops/local-ai-stack-connectivity/
cp -r references ~/.hermes/skills/mlops/local-ai-stack-connectivity/

Reference implementation

Tabby Tavern stack v2.0.0 · dockroot-mcp · sell sheet

Skill author: Jeremy Panasuk. License: Apache-2.0. Hermes Agent by Nous Research.