Files
SuperCharged-Claude-Code-Up…/dexto/docs/examples/memory.md
admin b52318eeae feat: Add intelligent auto-router and enhanced integrations
- Add intelligent-router.sh hook for automatic agent routing
- Add AUTO-TRIGGER-SUMMARY.md documentation
- Add FINAL-INTEGRATION-SUMMARY.md documentation
- Complete Prometheus integration (6 commands + 4 tools)
- Complete Dexto integration (12 commands + 5 tools)
- Enhanced Ralph with access to all agents
- Fix /clawd command (removed disable-model-invocation)
- Update hooks.json to v5 with intelligent routing
- 291 total skills now available
- All 21 commands with automatic routing

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2026-01-28 00:27:56 +04:00

1.9 KiB

title
title
Memory: Persistent Context & Learning

import ExpandableImage from '@site/src/components/ExpandableImage';

Memory: Persistent Context & Learning

Create and save memories so your agent automatically uses them to create personalized experiences.

What it does

Dexto's memory system allows agents to:

  • Remember user preferences across sessions
  • Learn from past interactions to provide better responses
  • Store important context for future reference
  • Personalize responses based on saved information

How it works

Agents automatically create and retrieve memories during conversations. You can also manually save important information:

# In any Dexto session
> "Remember that I prefer TypeScript over JavaScript"
> "Save that my timezone is PST"
> "Remember my favorite color is blue"

The agent will use these memories in future conversations:

# Later in a different session
> "Create a new project for me"
# Agent: "I'll create a TypeScript project for you since that's your preference..."

Memory Types

  • User Preferences: Personal settings and choices
  • Context: Important background information
  • Facts: Specific details to remember
  • Learned Patterns: Behavioral insights from interactions

Managing Memories

View memories

dexto
# Navigate to "Memories" in the sidebar

Clear memories

Delete individual memories or clear all via the Web UI settings.

Privacy

  • Memories are stored locally by default
  • Configure storage backend (Redis, PostgreSQL, SQLite)
  • Full control over what gets saved
  • Export and import capabilities

Learn More