Skip to main content

Quickstart: CLI (5 Minutes)

Get MEMANTO working with real memory operations in under 5 minutes.

Prerequisites

  • MEMANTO installed (pip install memanto)
  • Moorcheh API key configured (memanto setup)
  • Terminal access

1. Check Status

Verify everything is set up:
memanto status

2. Create Your First Agent

memanto agent create quick-demo

3. Activate Session

memanto agent activate quick-demo
Verify activation:
memanto status
You should now see your active agent and session.

4. Store Your First Memory

Store a simple fact:
memanto remember "Paris is the capital of France" --type fact
Store a preference:
memanto remember "I prefer responses in JSON format" --type preference
Store a commitment:
memanto remember "Will complete the project by Friday" --type commitment

5. Recall Memories

Retrieve memories using semantic search:
memanto recall "What is the capital of France?"
Recall by semantic similarity (not exact match):
memanto recall "What format should responses be in?"

6. Get AI-Powered Answers

Generate answers grounded in your memories:
memanto answer "Where is the capital of France and what format should I use?"

7. View Daily Summary (optional)

See all your memories and any conflicts:
memanto daily-summary

8. Detect Contradictions (optional)

Check for conflicting memories:
memanto conflicts
If you add a contradictory memory:
memanto remember "Paris is in Germany" --type fact
Then check conflicts:
memanto conflicts

Next Steps

For CLI Users

For Developers (Programmatic Access)

Want to use MEMANTO via REST API or Python? → See First Agent Setup

Explore Features


Done! You’ve learned:
  • Create agents
  • Store memories
  • Recall semantically
  • Get AI answers
  • Detect conflicts
  • Manage sessions
Now explore advanced features in the guides!