User prefers TypeScript over JavaScript for all new projects.
Owner: kansho-agentSource: conversation msg-334Created: 2 Jun 2026Last used: used yesterday· decays slowly
Full memory panel listing all stored facts with source, confidence, and forget controls.
User prefers TypeScript over JavaScript for all new projects.
Repo name: kansho-ui — the component library being built in public.
Current deadline: end of Q2 for the public launch of the component catalog.
User timezone: Europe/Brussels (UTC+2 in summer).
Organisation billing plan upgraded to Pro — confirmed via Stripe webhook.
| Prop | Type | Description |
|---|---|---|
| facts* | MemoryFact[] | The list of memory facts to display.not final |
| onDelete | (id: string) => void | Called when the user deletes a fact.not final |
| onRollback | (id: string) => void | Called when the user rolls back a fact to its previous state.not final |
| className | string | Additional CSS classes for the outer wrapper.not final |
* required. Props marked “not final” may change before release.
import { MemoryFactCard } from "@/components/memory/memory-fact-card";
// Render a list of facts with delete + rollback controls:
facts.map((fact) => (
<MemoryFactCard
key={fact.id}
fact={fact}
onDelete={handleDelete}
onRollback={handleRollback}
/>
))