remember
Store observations without evidence requirements. Best for ephemeral context, user preferences, and session notes.
{ "tool": "remember", "arguments": { "observation": "User prefers TypeScript over JavaScript" }}Parameters
Section titled “Parameters”| Parameter | Type | Required | Description |
|---|---|---|---|
observation | string | Yes | The observation to store |
tags | string[] | No | Tags for organization and retrieval |
decay_class | string | No | Decay rate: ephemeral, standard (default), durable, permanent |
Examples
Section titled “Examples”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" }}When to Use
Section titled “When to Use”- Session context that may be useful later
- User preferences and working style
- Temporary notes during exploration
- Observations without a verifiable source