Memory Commands
Store, retrieve, and manage memories using the MEMANTO CLI.memanto remember
Store a single memory.TEXT- Memory content (required)
-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
fact, preference, decision, commitment, goal, event, instruction, relationship, context, learning, observation, error, artifact
memanto recall
Retrieve memories using semantic search.QUERY- Search query (required)
-t, --type TEXT- Filter by type-l, --limit INTEGER- Max results (default: 5, max: 100)--sort TEXT- Sort by: recency, confidence (default: recency)--as-of DATETIME- Recall as of timestamp--changed-since DATE- Changed since date--current-only- Only current (non-superseded) memories
memanto answer
Get AI-powered answers grounded in memories.QUESTION- Question to answer (required)
-l, --limit INTEGER- Memories to use (default: 10)
memanto daily-summary
Generate a comprehensive daily summary of all memories.-a, --agent TEXT- Specific agent (default: active agent)
memanto conflicts
Detect and resolve contradictory memories.-a, --agent TEXT- Specific agent (default: active agent)--threshold FLOAT- Confidence threshold (default: 0.7)
Memory File Commands
memanto memory export
Export all agent memories to file.--agent TEXT- Specific agent (default: active)--format TEXT- Format: md, json (default: md)--output PATH- Output file path
memanto memory sync
Sync memories to MEMORY.md for Claude Code integration.--agent TEXT- Specific agent
Batch Operations
Create batch.json
Store Batch
Workflow: Complete Memory Cycle
Tips & Best Practices
DO
- Use specific memory types
- Include titles for clarity
- Regular exports for backup
- Check conflicts weekly
- Use batch import for large datasets
DON’T
- Store duplicates
- Generic types (use fact, preference, etc.)
- Ignore conflicts
- Forget to extend sessions
- Store sensitive data
Next Steps
- Session Commands: Manage Sessions
- Agent Commands: Manage Agents
- Memory Types: All Memory Types