| name | amnesia |
|---|---|
| description | Set up persistent memory and identity for AI agents. Use when the user wants to give an agent persistent identity, manage agent memory files, set up IDENTITY.md/SOUL.md/MEMORY.md, create memory backup systems, or implement file-based agent continuity. Triggers on "agent memory," "persistent identity," "IDENTITY.md," "MEMORY.md," "SOUL.md," "agent backup," "remember across sessions," or "agent continuity." |
Memory management toolkit for AI agents. Because forgetting is not an option.
- Copy templates to workspace:
cp assets/templates/*.md /path/to/agent/workspace/-
Fill in each template with agent-specific information
-
Set up automated backups:
cp scripts/backup.sh /path/to/agent/scripts/
chmod +x /path/to/agent/scripts/backup.sh| File | Purpose |
|---|---|
IDENTITY.md |
Who the agent is — name, birthday, capabilities |
SOUL.md |
How the agent behaves — values, style, boundaries |
MEMORY.md |
Curated long-term memories |
USER.md |
Information about the primary user |
TOOLS.md |
Environment-specific notes |
memory/*.md |
Daily episodic logs |
Define static facts about the agent:
# IDENTITY.md - Who Am I?
- **Name:** [Agent name]
- **Creature:** [What the agent is]
- **Vibe:** [One-line personality]
- **Emoji:** [Representative emoji]
- **Birthday:** [Creation date]Define behavioral guidelines:
# SOUL.md - Who You Are
## Core Truths
[Fundamental principles]
## Boundaries
[What the agent won't do]
## Vibe
[Communication style]Curated, important information:
- Key learnings with dates
- Important facts
- People and relationships
- Project status
- Preferences discovered
- Mistakes to avoid
Raw episodic memory:
- Session starts
- Events and timestamps
- Conversations
- Learnings
- Tomorrow's tasks
Maintenance cycle: Periodically review daily logs → extract insights → update MEMORY.md
Backs up workspace to git:
./scripts/backup.sh [workspace_dir] [backup_repo_dir]Run on a cron schedule (e.g., hourly):
0 * * * * /path/to/scripts/backup.sh
Restores from backup after a wipe:
./scripts/restore.sh [backup_repo_dir] [workspace_dir]Initializes today's memory log:
./scripts/new-day.sh [workspace_dir]When an agent starts a new session:
- Read
IDENTITY.md— establish who you are - Read
SOUL.md— establish how you behave - Read
USER.md— know who you're helping - Read
MEMORY.md— recall long-term context - Read
memory/YYYY-MM-DD.md(today + yesterday) — recent context - Check
TOOLS.md— environment specifics
- Save immediately — Don't rely on context; write to files
- Date your entries — When was this learned?
- Curate aggressively — Not everything goes in MEMORY.md
- Back up frequently — Hourly is good, more often is better
- Version control everything — Git is your friend
- Templates:
assets/templates/ - Scripts:
scripts/ - GitHub: https://github.com/mulletmcnasty/amnesia