Skip to content

remember

Store observations without evidence requirements. Best for ephemeral context, user preferences, and session notes.

{
"tool": "remember",
"arguments": {
"observation": "User prefers TypeScript over JavaScript"
}
}
ParameterTypeRequiredDescription
observationstringYesThe observation to store
tagsstring[]NoTags for organization and retrieval
decay_classstringNoDecay rate: ephemeral, standard (default), durable, permanent

Basic observation:

{
"tool": "remember",
"arguments": {
"observation": "User is debugging authentication flow"
}
}

With tags and decay:

{
"tool": "remember",
"arguments": {
"observation": "Project uses pnpm, not npm",
"tags": ["tooling", "preferences"],
"decay_class": "durable"
}
}
  • Session context that may be useful later
  • User preferences and working style
  • Temporary notes during exploration
  • Observations without a verifiable source
  • Facts that need evidence (use learn)
  • Conclusions from multiple facts (use believe)
  • Information you need to cite (use learn)