ov-openwebui/skills/openwebui/SKILL.md
Open WebUI image with auto-configured LLM providers, MCP servers, and Jupyter on port 8080. MUST be invoked before building, deploying, configuring, or troubleshooting the openwebui image.
npx skillsauth add overthinkos/overthink-plugins openwebuiInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Open WebUI with auto-configured LLM providers (Ollama, OpenRouter), MCP server discovery, and Jupyter code execution. No manual setup needed — secrets auto-managed via ov secrets.
openwebui:
base: fedora
layers:
- agent-forwarding
- openwebui
- dbus
- ov
ports:
- "8080:8080"
| Layer | Purpose |
|-------|---------|
| agent-forwarding | SSH + GPG agent forwarding into container |
| openwebui | Open WebUI with auto-config entrypoint |
| dbus | D-Bus session bus |
| ov | Overthink CLI for in-container management |
ov image build openwebui
ov config openwebui -e OPENROUTER_API_KEY=sk-or-xxx
ov start openwebui
# Open http://localhost:8080
ov secrets gpg setup
ov secrets gpg set OPENROUTER_API_KEY sk-or-xxx
ov image build openwebui
ov config openwebui --env-file .secrets
ov start openwebui
ov config ollama
ov config openwebui --env-file .secrets --update-all
ov start ollama openwebui
ov config ollama
ov config jupyter --update-all
ov config selkies-desktop --update-all
ov config openwebui --env-file .secrets --update-all
ov start ollama jupyter selkies-desktop openwebui
# Tier 1: Auto-generated infrastructure secrets
ov secrets list ov/openwebui
ov secrets get ov/openwebui webui-secret-key
ov secrets set ov/openwebui admin-password --generate
# Tier 2: User API keys (GPG-encrypted)
ov secrets gpg set OPENROUTER_API_KEY sk-or-new-key
ov secrets gpg show
ov config openwebui --env-file .secrets --update-all
Deploy alongside provider containers for full functionality:
# 1. Deploy ollama (provides OLLAMA_HOST)
ov config ollama
ov start ollama
# 2. Deploy jupyter (provides jupyter MCP server)
ov config jupyter --update-all
ov start jupyter
# 3. Deploy openwebui (consumes both)
ov config openwebui --env-file .secrets --update-all
ov start openwebui
Open WebUI receives:
OLLAMA_BASE_URL=http://ov-ollama:11434 — local LLM inferenceTOOL_SERVER_CONNECTIONS=[...] — MCP servers (jupyter + chrome-devtools)CODE_EXECUTION_ENGINE=jupyter — code execution via Jupyter/ov-openwebui:openwebui — Auto-config entrypoint, secrets, env_accepts, TOOL_SERVER_CONNECTIONS format/ov-foundation:agent-forwarding — SSH/GPG forwarding/ov-jupyter:jupyter — deploy alongside for MCP notebooks and code execution/ov-ollama:ollama — deploy alongside for local LLM inference/ov-hermes:hermes — alternative AI frontend (CLI agent vs web UI)/ov-selkies:selkies-desktop — deploy alongside for shared Chrome browserov status openwebui
ov service status openwebui # openwebui: RUNNING
curl -s -o /dev/null -w '%{http_code}' http://localhost:8080 # 200
ov shell openwebui -c "open-webui version"
# Verify secrets
podman secret ls | grep openwebui # webui-secret-key, admin-password
# Verify MCP (inside container process)
podman exec ov-openwebui cat /proc/3/environ | tr '\0' '\n' | grep TOOL_SERVER_CONNECTIONS
Latest ov eval live openwebui run: 24 passed, 0 failed, 0 skipped.
Covers: openwebui entrypoint script presence, pixi python + ov binary,
and deploy-scope: service up, port reachable on 127.0.0.1:${HOST_PORT:8080},
HTTP 200 on / (30-second timeout for first-request startup), admin
email env var injected. See /ov-build:eval for the framework.
/ov-openwebui:openwebui — layer authoring/ov-build:eval — declarative testing framework/ov-build:secrets — WEBUI_ADMIN_PASSWORD + provider API keys/ov-core:config — -e WEBUI_ADMIN_EMAIL=... deploy-time env setupMUST be invoked before building, deploying, configuring, or troubleshooting the openwebui image.
/ov-build:image — image family umbrella (image: entries in overthink.yml, build/validate/inspect/list)/ov-build:build — build.yml vocabulary (distros, builders, init-systems)tools
OpenCharly CLI (charly) binary installed into container/VM images for in-container use. Use when working with charly binary deployment inside containers, native D-Bus support, or the full charly toolchain (charly binary + virtualization + gocryptfs + socat).
development
Operator CachyOS workstation profile — a kind:local template + target:local deploy that installs the full dev stack (30 candies) onto a CachyOS host via ShellExecutor. Lives in the overthinkos/cachyos submodule. MUST be invoked before editing or applying the charly-cachyos workstation profile.
tools
Fedora box with the full charly toolchain using shared candies. Rootless-first — runs as uid=1000 with passwordless sudo (no root, no cap_add: ALL). Same candy list as charly-arch. Includes NVIDIA GPU runtime. MUST be invoked before building, deploying, configuring, or troubleshooting the charly-fedora box.
tools
Arch Linux box with the full charly toolchain. Rootless-first — runs as uid=1000 with passwordless sudo (no root, no cap_add: ALL). Composes /charly-coder:charly-mcp so the box is reachable as an MCP gateway on port 18765. NVIDIA GPU runtime composed in. MUST be invoked before building, deploying, configuring, or troubleshooting the charly-arch box.