UI Dashboard

A local web dashboard for browsing, searching, and managing your project's knowledge base.

Launching the Dashboard

$ lore ui

This starts a local Express server and opens your browser to the dashboard. By default it runs on port 3333.

# Use a custom port
$ lore ui --port 8080

Dashboard Features

Knowledge Base View

Browse all your Lore entries in a searchable, filterable interface. Each entry displays its type, title, context, linked files, tags, and creation date. Entries are rendered as formatted Markdown.

Drafts Review

Review auto-captured drafts directly in the dashboard UI. Accept, edit, or discard drafts without touching the command line.

Health Score

View your project's Lore Score — a composite metric of Coverage, Freshness, and Depth — with visual progress bars and actionable tips.

Dependency Graph

Visualize the import/dependency relationships between your project's modules and see which files have Lore entries attached.

How It Works

The dashboard is a built-in Express server bundled with Lore. It serves a static HTML/CSS/JS frontend and reads directly from your .lore/ directory. No data ever leaves your machine — everything is 100% local.

💡 Tip
The UI is read-only by default. To edit entries, use lore edit <id> to open the JSON in your editor, or use the drafts review interface.