Skip to main content

Documentation Index

Fetch the complete documentation index at: https://slackhive.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

Memory is one of the four layers of an agent’s brain - see Concepts for how it fits with the system prompt, skills, and wiki. Every memory is inlined into the system prompt on every turn. There is no retrieval step, no command to trigger - the agent always sees what it has learned. Memory tab showing agent reference memories

Where memory lives in the UI

Open any agent → Instructions tab → Memory sub-tab.
  • A list of saved memories grouped by type
  • Content and description for each memory
  • A delete button on each memory

How memories get saved

When something in a conversation is worth keeping across sessions, the agent asks the user first - “Should I remember that you prefer BigQuery over Redshift?” - and only writes the memory after you confirm. Ask-before-saving keeps memory clean and prevents noise.

Memory types

TypePurposeExample
feedbackBehavioral corrections, validated approaches”Don’t mock the database in integration tests”
userFacts about people the agent works with”Kai leads the data team, prefers concise answers”
projectOngoing work context, decisions, deadlines”Merge freeze starts 2026-03-05 for mobile release”
referencePointers to external systems”Pipeline bugs tracked in Linear project INGEST”

Memory file format

---
name: kai_team_lead
description: Kai leads the data team and prefers concise answers
type: user
---

Kai is the lead of the data team. They prefer concise, direct answers
without lengthy preamble. They use BigQuery, not Redshift.
FieldRequiredNotes
nameYesSnake_case unique key per agent
typeYesOne of user, feedback, project, reference
descriptionNoOne-line summary shown in the Memory tab

Size budget

Total inlined memory has a cap (MAX_INLINED_MEMORY_BYTES in the runner). If an agent accumulates more than the budget allows, the oldest entries overflow and are dropped with a warning. Prune stale memories from the Memory tab.

Updating and deleting

  • Update - the agent overwrites the file with the same name. The DB uses (agent_id, name) as the unique key, so there are no duplicates.
  • Delete - click × on the memory card. Removed from the database and not reloaded on next start.
Memories persist until you delete them. There is no TTL.

Next steps

Concepts

How memory fits with system prompt, skills, and wiki.

Coach

Turn conversation insights into skills and wiki pages.