How this skill is triggered — by the user, by Claude, or both
Slash command
/bryllen:bryllen-closeThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Stop all running Bryllen processes (Vite dev server, MCP HTTP server).
Stop all running Bryllen processes (Vite dev server, MCP HTTP server).
Kill only THIS project's servers using PIDs from the ports file:
if [ -f .bryllen-ports.json ]; then
# Kill by PID (safe) — never by port (could kill another project's server)
node -e "
const f = JSON.parse(require('fs').readFileSync('.bryllen-ports.json','utf8'));
for (const pid of [f.pid, f.vitePid, f.httpPid].filter(Boolean)) {
try { process.kill(pid, 'SIGTERM'); } catch {}
}
"
rm -f .bryllen-ports.json
else
echo "No .bryllen-ports.json found — no servers to stop for this project."
fi
This kills by PID, not port — so other bryllen instances are never affected.
Confirm: "Bryllen servers stopped for this project."
npx claudepluginhub madebynoam/bryllen --plugin bryllenОстанавливает Apache HTTP Server. Публикации сохраняются — при следующем /web-publish сервер запустится снова.
Stops mo markdown viewer server for current Git project via config lookup and mo --shutdown. Use for claw-mo-down invocations, stopping doc viewer, or killing mo server.
Stops the PowerMem server that was started by the Claude Code plugin, using the tracked PID in the plugin data directory.