MemoryViewer
Full memory panel listing all stored facts with source, confidence, and forget controls.
Preview
Release memory2 facts
- persistentUse TypeScript for new product surfaces.from Project preferences92% conf· 2 hours ago
- workingThe current release uses the complete Kanshō registry pack.from Release checklist86% conf· just now
Props
| Prop | Type | Description |
|---|---|---|
| items* | MemoryItem[] | Working and persistent memory items to display. |
| title | string | Panel title. Defaults to "Memory". |
| onEdit | (id: string) => void | Shows an edit action and receives the selected item id. |
| onDelete | (id: string) => void | Shows a two-step delete action and receives the item id. |
| className | string | Additional CSS classes for the outer wrapper. |
* required.
Usage
import { MemoryViewer } from "@/components/agent/memory-viewer";
<MemoryViewer
items={items}
title="Release memory"
onEdit={handleEdit}
onDelete={handleDelete}
/>