一键导入
pebble-stop
Stop a running Pebble — shut down the launcher serving the chat interface
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Stop a running Pebble — shut down the launcher serving the chat interface
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Install, update, launch, and talk to Pebble — the PWA chat interface — from a Hermes agent
Component catalogue for Pebble `pebble_send` type "ui" blocks — OpenUI Lang syntax, components, the action model (buttons, forms, $state), and what Pebble does NOT support. View when building an interactive UI block.
Update an existing Pebble install to the latest version (binary + bundled plugin)
| name | pebble-stop |
| description | Stop a running Pebble — shut down the launcher serving the chat interface |
| category | integrations |
| tags | ["pebble","hermes","stop","shutdown"] |
The Pebble launcher serves the web app on port 5173. To stop it, kill whatever
holds that port:
lsof -ti:5173 | xargs kill -9 2>/dev/null
Confirm it's down:
curl -s http://localhost:5173/health || echo "Pebble is stopped."
This stops only the Pebble launcher (the web app + /api/* reverse proxy).
It does not:
8642 — those keep running,~/.hermes/plugins/pebble/ or the binary at
~/.hermes/bin/pebble.To start Pebble again, see the pebble:pebble-setup skill
(../pebble-setup/SKILL.md) — step 2 also frees the
port before launching, so a fresh start handles a stale process on its own.