Agent Management
Agents are the core identity in MEMANTO. Each agent maintains its own memory namespace and sessions.What is an Agent?
An agent represents a persistent identity that can maintain memories across sessions:- Unique identifier - Never changes (e.g.,
customer-support-bot) - Memory namespace - Isolated from other agents
- Multiple sessions - Can have sessions at different times
- Long-term context - Memories persist across sessions
Agent Lifecycle
Creating Agents
CLI Method
Create an agent:REST API Method
Listing Agents
View all agents you’ve created:REST API
Agent Sessions
Understanding Sessions
A session is a 6-hour window where an agent is active:- Session Token - Cryptographically signed JWT
- 6-hour duration - Expires after 6 hours of creation
- Can be extended - Keep agent active longer
- Auto-renewal - Can renew automatically on expiry
Activate Session
Start a new session for an agent:~/.memanto/config.json.
Check Active Session
Extend Session
Keep an agent active longer:Deactivate Session
End the current session:Agent Metadata
View Agent Metadata
- Agent ID
- Created timestamp
- Memory count by type
- Last session info
- Summary of important memories
Multi-Agent Patterns
Support Team (Multiple Agents per Team)
Each support representative has their own agent:Specialized Agents
Different agents for different functions:Testing & Development
Separate agents for testing:Agent Scaling
Naming Convention
Use clear, descriptive names:Organization Strategy
Performance Considerations
Agent Limits
- No hard limit on number of agents (free tier up to 5 agents)
- Each agent can have unlimited memories
- Sessions limited to 1 active per agent at a time
- Memories queryable in under 100ms on average
Optimization Tips
- Reuse agent sessions - Don’t create new sessions frequently if active session is available
- Batch operations - Store multiple memories at once
- Deactivate sessions - Deactivate sessions when no longer needed to free resources
Memory Count by Agent
Check memory usage:Next Steps
- Store Memories: Memory Operations Guide
- Session Management: Session Management Guide
- Daily Workflows: Daily Workflows Guide
- CLI Reference: Agent Commands
- API Reference: Agent Endpoints
Agents are the foundation of MEMANTO. Master agent management to build powerful memory-enabled applications!