From bridgey-deploy
Check the health and status of the remote agent deployment. Use when the user says "remote status", "check remote", "is my agent running", "server status", or runs /remote-status.
How this skill is triggered — by the user, by Claude, or both
Slash command
/bridgey-deploy:remote-statusThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Check the health of the remote agent deployment. Connection details are read from `bridgey-deploy.config.json` in the agent's root directory.
Check the health of the remote agent deployment. Connection details are read from bridgey-deploy.config.json in the agent's root directory.
Read bridgey-deploy.config.json to get:
tailscale_host — the Tailscale hostname of the remote serverremote_path — the path on the remote servercontainer_name — the Docker container nameIf bridgey-deploy.config.json doesn't exist, ask the user for connection details.
Run these commands via SSH and report results:
ssh {tailscale_host} "docker ps --filter name={container_name} --format '{{.Status}}'"
Report: running/stopped, uptime.
Check if the bridgey daemon is responding inside the container:
ssh {tailscale_host} "docker exec {container_name} curl -sf http://localhost:3000/.well-known/agent.json 2>/dev/null && echo 'daemon: healthy' || echo 'daemon: not running or not responding'"
Report: daemon healthy/unhealthy, agent card details if available.
ssh {tailscale_host} "df -h {remote_path} | tail -1"
Report: used/available space.
ssh {tailscale_host} "find {remote_path}/user/memory -name '*.md' -printf '%T@ %p\n' 2>/dev/null | sort -rn | head -1"
Report: last memory file modification time (proxy for last agent activity).
ssh {tailscale_host} "docker logs {container_name} --tail 10 2>&1"
Report: last 10 lines of container output.
Present as a concise status report:
npx claudepluginhub kickinrad/bridgey --plugin bridgey-deployRuns diagnostic checks on agent workspace: config, identity, memory, SQLite index, crons, hooks, HTTP bridge, messaging plugins, and dreaming. Supports --fix for safe auto-repairs. Use after agent create/import or when something feels off.
Runs Evey status checks: agent health/uptime via Docker, Moltbook karma/followers, wallet funds, active crons, bridge inbox pending, recent tool logs. Use for quick system health overview.
Manages Agents Observe server: start/stop/restart, view dashboard, check stats, tail logs (Docker, CLI, MCP), and diagnose issues.