--- description: Build the dashboard UI if needed and print its URL --- Build the dashboard bundle if it is not there yet, then print the URL. The bootstrap already builds it on session start, so this is usually a no-op — use it to force a rebuild, or to finish the build if the bootstrap's own attempt failed (check `~/.claude/agent-dashboard/runtime/client-build.log`). ```bash node "${CLAUDE_PLUGIN_ROOT}/scripts/plugin-open.js" ``` The first run installs the client toolchain and takes a few minutes; later runs print the URL immediately. No server restart is needed — the server already serves from that directory. Then help the user open it: ```bash uname -s ``` - `Darwin` → `open ` - `Linux` → `xdg-open ` - otherwise → tell them to open the URL in a browser. Keep the output to a few lines. Pass `--force` to the script only if the user asks for a rebuild.