بنقرة واحدة
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.