一键导入
hermes-webui-ops
Operate and troubleshoot Hermes WebUI on Surface Pro 3 — start, restart, LAN access, and common issues.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Operate and troubleshoot Hermes WebUI on Surface Pro 3 — start, restart, LAN access, and common issues.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Diagnose and fix Hermes messaging gateway connectivity issues (Telegram/Discord down, stale locks, PM2 problems)
Backup Hermes agent to GitHub and restore on a new VPS. Covers what to include/exclude, GitHub token requirements, and restore steps. Includes automated scripts.
GitHub auth setup: HTTPS tokens, SSH keys, gh CLI login.
Clone, create, fork, configure, and manage GitHub repositories. Manage remotes, secrets, releases, and workflows. Works with gh CLI or falls back to git + GitHub REST API via curl.
Fetch YouTube video transcripts and transform them into structured content (chapters, summaries, threads, blog posts). Use when the user shares a YouTube URL or video link, asks to summarize a video, requests a transcript, or wants to extract and reformat content from any YouTube video.
Manage Linear issues, projects, and teams via the GraphQL API. Create, update, search, and organize issues. Uses API key auth (no OAuth needed). All operations via curl — no dependencies.
| name | hermes-webui-ops |
| description | Operate and troubleshoot Hermes WebUI on Surface Pro 3 — start, restart, LAN access, and common issues. |
| version | 1 |
| author | Hermes Agent |
| license | MIT |
| metadata | {"hermes":{"tags":["hermes-webui","webui","surface","ops"],"related_skills":["sudo-password-delivery"]}} |
Location: ~/.hermes/hermes-webui/
Always use start.sh — it sources .env before launching the server.
cd ~/.hermes/hermes-webui && bash start.sh
Restart (after editing .env):
kill $(ps aux | grep 'server.py' | grep -v grep | awk '{print $2}')
sleep 1
cd ~/.hermes/hermes-webui && bash start.sh
ss -tlnp | grep 8787
curl -s -o /dev/null -w "%{http_code}" http://127.0.0.1:8787
Edit ~/.hermes/hermes-webui/.env:
HERMES_WEBUI_HOST=0.0.0.0
Then restart. Access from phone: http://<surface-lan-ip>:8787
Find Surface LAN IP: ip -4 addr show | grep inet | grep -v 127.0.0.1
Download binary (not in apt):
cd /tmp && curl -L https://github.com/cloudflare/cloudflared/releases/latest/download/cloudflared-linux-amd64 -o cloudflared && chmod +x cloudflared
Quick tunnel (no account, URL changes on restart):
# CRITICAL: kill any existing cloudflared first to avoid port conflicts
kill $(ps aux | grep cloudflared | grep -v grep | awk '{print $2}') 2>/dev/null
# Ensure webui is running on 127.0.0.1:8787 first
ss -tlnp | grep 8787
# Start cloudflared with output redirected to own log
cd /tmp && exec ./cloudflared tunnel --url http://127.0.0.1:8787 > /tmp/cf.log 2>&1
# Wait for URL (10-15s), then check log
sleep 12 && cat /tmp/cf.log | grep trycloudflare
For permanent URL: create free Cloudflare account, create named tunnel, write config to ~/.cloudflared/config.yml.
Tunnel goes down frequently — if URL stops responding, kill cloudflared processes, wait 1s, restart. Quick tunnels without a Cloudflare account have no uptime guarantee. Consider a named tunnel for reliability.
server.py does NOT read .env directly. start.sh sources .env before calling the Python server. Always restart via start.sh after config changes.
Also: bootstrap.py is the onboarding entry point, start.sh calls bootstrap.py --no-browser. server.py is the raw server (used by bootstrap.py). Always use start.sh to start.