Metis · Memory Curator — Remember
rememberSave important findings, concepts, or workflows to memory with automatic classification and configurable scope visibility. Retrieve via recall().
Instructions
Store something in memory with automatic classification and scope tagging.
The unified write interface to Metis's memory system. Classifies the content
into the appropriate memory layer and stores it with scope tags for later
retrieval via recall().
Memory types:
- 'episodic': A time-stamped event (something that happened)
- 'semantic': A distilled concept or definition (timeless knowledge)
- 'procedural': A workflow or how-to pattern
- 'note': A human-curated memory palace entry (saved to DB + markdown)
- 'auto': Let Metis classify based on content (default)
Scope tags determine visibility:
- scope='global': Visible to all agents and projects
- scope='agent': Visible only when agent_id matches
- scope='project': Visible only when project_id matches
- scope='session': Visible only in this session
Args:
content: The text to remember. Can be a finding, concept, workflow,
decision, or any text worth preserving.
memory_type: How to classify this memory. One of 'episodic', 'semantic',
'procedural', 'note', or 'auto' (default — Metis decides).
agent_id: Tag this memory as belonging to a specific agent (e.g. 'librarian').
project_id: Tag this memory as belonging to a specific project.
scope: Visibility scope: 'global' (default), 'agent', 'project', or 'session'.
title: Optional short title. Auto-generated from content if empty.
tags: Comma-separated topic tags (e.g. 'hat,diagnostics,rdts').
session_id: Current pipeline session ID (optional).
Returns:
Confirmation of what was stored, in which layer, with what scope.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| tags | No | ||
| scope | No | global | |
| title | No | ||
| content | Yes | ||
| agent_id | No | ||
| project_id | No | ||
| session_id | No | ||
| memory_type | No | auto |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |