Start a live roadmap dashboard server in the browser
Starts a live-updating roadmap dashboard server from logbook features files.
npx claudepluginhub mcfearsome/claude-logbookStart a local web server that serves a live-updating roadmap dashboard from the logbook features file.
Read .claude/logbook.local.md for config. Check if this is a workspace (config has a projects field) or a single project.
Determine the port. If $ARGUMENTS contains a number, use that. Otherwise, use port 0 (auto-assign).
Run the roadmap server in the background:
Single project mode (no projects in config):
node ${CLAUDE_PLUGIN_ROOT}/server/roadmap-server.mjs <features-file-path> <port>
Workspace mode (config has projects field):
node ${CLAUDE_PLUGIN_ROOT}/server/roadmap-server.mjs --workspace <path-to-logbook.local.md> <port>
In workspace mode, the server reads features.json from every linked project and shows a unified dashboard with per-project breakdown, filter buttons, and cross-project dependency tracking.
The server will:
http://127.0.0.1:<port>Tell the user the server is running and how to stop it (Ctrl+C in the background process, or the user can ask you to stop it).
Note: The server requires Node.js to be installed.