create_conversation_entry
Store conversation entries in an agent's archival memory for searchable records from external sources like Claude Code sessions, using metadata for filtering.
Instructions
Store a conversation entry in an agent's archival memory. Use this to record conversations from external sources (like Claude Code sessions) that should be searchable via search_archival_memory. Entries are formatted with metadata for easy filtering.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| agent_id | Yes | ID of the agent to store the conversation entry for | |
| role | Yes | Role of the message sender | |
| content | Yes | The message content | |
| timestamp | No | ISO 8601 timestamp of the message (defaults to now) | |
| source | No | Source of the conversation (e.g., "claude_code", "letta_ade") | |
| session_id | No | Session identifier for grouping related messages |