Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.memanto.ai/llms.txt

Use this file to discover all available pages before exploring further.

memanto remember

Store a single memory.
memanto remember TEXT [OPTIONS]
Arguments:
  • TEXT - Memory content (required)
Options:
  • -t, --type TEXT - Memory type (default: fact)
  • --title TEXT - Optional title
  • --confidence FLOAT - Confidence 0-1 (default: 1.0)
  • --batch PATH - Load memories from JSON file
Examples: Simple memory:
memanto remember "Paris is the capital of France"
With type:
memanto remember "Customer prefers email" --type preference
With title:
memanto remember "Will deliver report Friday" --type commitment --title "Delivery Deadline"
Lower confidence:
memanto remember "Thinks customer is in finance" --type fact --confidence 0.7
Batch from file:
memanto remember --batch batch.json
Memory Types: fact, preference, decision, commitment, goal, event, instruction, relationship, context, learning, observation, error, artifact