How this skill is triggered — by the user, by Claude, or both
Slash command
/environment:restartThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Stop and restart the Environment Dashboard server.
Stop and restart the Environment Dashboard server.
Before executing commands, determine the plugin installation directory:
~/.claude/plugins/installed_plugins.jsonenvironment@installPath value as PLUGIN_DIR in all commands belowStop the server if running:
lsof -ti :3848 | xargs kill 2>/dev/null; sleep 1
Start the server from the plugin directory:
PLUGIN_DIR="<installPath from installed_plugins.json>"
nohup node "$PLUGIN_DIR/server.js" > /dev/null 2>&1 &
sleep 2
Verify server is responsive:
curl -s http://localhost:3848/api/health
If health check fails, try the overview endpoint:
curl -s http://localhost:3848/api/overview | head -c 50
If the server restarted successfully:
Environment Dashboard restarted at http://localhost:3848
If the server failed to start:
Failed to restart Environment Dashboard. Check server logs for details.
npx claudepluginhub samgreendev/claude-code-environment --plugin environmentStarts a local dashboard server (Deno) for managing projects, viewing workflow graphs, agent streams, and documents. Useful for monitoring and managing multi-project workflows via browser.
Starts, stops, or checks dot-dash server for real-time browser dashboard monitoring Claude Code sessions, streaming transcripts via WebSocket, and prompt injection.
Manages Agents Observe server: start/stop/restart, view dashboard, check stats, tail logs (Docker, CLI, MCP), and diagnose issues.