Kanshō

Docs / Memory and context /

MemoryViewer

Full memory panel listing all stored facts with source, confidence, and forget controls.

Preview

ActiveUser92% conf

User prefers TypeScript over JavaScript for all new projects.

Owner: kansho-agentSource: conversation msg-334Created: 2 Jun 2026Last used: used yesterday· decays slowly
ActiveUser98% conf

Repo name: kansho-ui — the component library being built in public.

Owner: kansho-agentSource: tool:list_reposCreated: 28 May 2026Last used: used 3 hours ago
StaleSession61% conf

Current deadline: end of Q2 for the public launch of the component catalog.

Owner: kansho-agentSource: conversation msg-102Created: 1 Jun 2026· expires in 6d
ActiveUser88% conf

User timezone: Europe/Brussels (UTC+2 in summer).

Owner: kansho-agentSource: conversation msg-11Created: 20 May 2026
ActiveOrg100% confirreversible

Organisation billing plan upgraded to Pro — confirmed via Stripe webhook.

Owner: billing-agentSource: webhook:stripe/invoice.paidCreated: 14 Jun 2026

Props

PropTypeDescription
facts*MemoryFact[]The list of memory facts to display.not final
onDelete(id: string) => voidCalled when the user deletes a fact.not final
onRollback(id: string) => voidCalled when the user rolls back a fact to its previous state.not final
classNamestringAdditional CSS classes for the outer wrapper.not final

* required. Props marked “not final” may change before release.

Usage

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}
  />
))