Memory
Talon gives the AI agent a real memory — backed by SQLite — so nothing is lost between restarts. Conversations are preserved, facts are remembered, and context carries forward across every session.
How It Works
Section titled “How It Works”All memory is stored in a local SQLite database on your machine. There are two distinct memory layers:
- Conversation history — the full record of every message exchanged in every channel
- Knowledge memory — structured facts, notes, and context the agent explicitly stores for later recall
Both are persistent across restarts and accessible from the mobile UI.
Conversation History
Section titled “Conversation History”Every message sent or received in any channel is stored automatically. When Talon restarts, conversations resume exactly where they left off — full history intact, no context lost.
Conversations appear in the mobile and web UI conversation list, organized by channel. You can scroll back through the complete history of any channel at any time.
Channel: #dev-work [2026-03-01] Refactored auth module, tests passing [2026-03-02] Reviewed PR #47, left comments [2026-03-03] Investigated memory leak in worker poolKnowledge Memory
Section titled “Knowledge Memory”Beyond conversation logs, the agent can explicitly store and retrieve structured knowledge — facts, decisions, notes, and any context worth remembering long-term.
Storing a Memory
Section titled “Storing a Memory”Remember: The staging database password rotates every 30 days. Check with ops.Remember: Project uses Node 20 LTS, do not upgrade to 22 until Q3.Remember: Sarah is the lead on the payments team.Searching Memory
Section titled “Searching Memory”What do you know about the database setup?Recall anything about deployment proceduresSearch memory: authenticationListing Memories
Section titled “Listing Memories”List all stored memoriesShow me what you remember about this projectDeleting Memories
Section titled “Deleting Memories”Forget everything about the old API keysDelete memory: outdated deployment notesMemory Operations Reference
Section titled “Memory Operations Reference”| Operation | Description |
|---|---|
store | Save a new fact or note to memory |
search | Find memories matching a query |
list | Show all stored memories |
delete | Remove a specific memory by ID or content |
Mobile UI Integration
Section titled “Mobile UI Integration”All channels and their conversation histories appear in the Talon mobile app. Tap any channel to see the full message history, scroll back through past sessions, and pick up any conversation on your phone exactly where you left it on desktop.
Practical Examples
Section titled “Practical Examples”Project context that persists:
Store: This repo uses a monorepo structure. Packages live in /packages,apps in /apps. Always run `pnpm install` from root.Decision records:
Store: Decided to use Postgres over MySQL on 2026-02-15.Reason: better JSON support and team familiarity.Repeating reminders:
Store: Every Friday, remind me to update the changelog before EOD.