Starting the dashboard
Runslowave dashboard from any terminal. It starts a server on 127.0.0.1:8765 by default and opens the URL in your default browser automatically.
The dashboard is intended for localhost use only. Binding to a non-loopback host will print a warning because doing so may expose private memories on your local network.
Dashboard sections
The dashboard is organized into several views. Use the sidebar to navigate between them.Reading the Memory view
Each schema row shows its content, scope, status (active, stale, needs_review, archived, or forgotten), salience score, confidence, and how many times it has been exposed and used. Sort by any column to find frequently-used memories, recently updated records, or low-salience items at risk of fading.
Clicking into a schema opens its detail view, where you can see:
- The raw evidence that supports it (episodes and raw events)
- Every retrieval it has appeared in, with the associated feedback
- Outgoing and incoming
relates_torelations - Co-activation edges from usage patterns
- The suppression audit log, if it has ever been forgotten or unforgotten
Forget and Unforget
The dashboard exposes two mutating actions: Forget and Unforget. These are visible on each schema’s detail page.- Forget sets the schema’s status to
forgottenand removes it from all future retrieval. The source evidence is preserved and the action is logged with a timestamp and optional reason. - Unforget reverses a previous forget, restoring the schema to its prior status.
Reading the Database Health section
The Diagnostics page includes a Database Health panel that reports the results of a live SQLite integrity check plus storage metrics.What does the integrity check cover?
What does the integrity check cover?
Slowave runs
PRAGMA integrity_check against the database when you load the Diagnostics page. A result of ok means the file is structurally sound. Any other result — for example, after an unclean shutdown or disk error — is reported as needs_attention and also appears as an attention item on the Home page. If the integrity check is not ok, stop writing to the database and restore from a backup created with slowave backup.- File size and WAL/SHM auxiliary file sizes
- Page utilization — the ratio of used to allocated pages (high free-page counts suggest the database could benefit from
VACUUM) - Table row counts — raw events, episodes, prototypes, schemas, feedback events, and relations
- Object counts — tables, indexes, and views in the schema
