A skill that helps Heyron agents remember important details across sessions. Built for the Heyron Agent Jam #1: Memory Systems hackathon.
- Auto-save important info — When you tell the agent something important, it saves to MEMORY.md
- Session start recall — On new session, agent can show you what was last discussed
- Manual memory commands — "remember X" or "what do you remember?"
Most agents forget everything between sessions. This skill fixes that with a simple file-based system that anyone can use.
-
Copy the
session-memoryfolder into your skills directory:cp -r session-memory ~/workspace/skills/ -
Restart your agent or reload skills.
user: Remember that I'm building a template pack to sell
agent: Saved! I'll remember this next session.
agent: What do you remember?
agent: Here's what I remember:
- Building a Canva template pack
- First two templates done
- ...
Add to your end-of-session routine:
- Prompt: "What should I remember from this session?"
- Agent saves key points to MEMORY.md
session-memory.js— Main skill logicSKILL.md— Skill documentationprompts.md— Prompt templates
The skill uses these defaults:
- Memory file:
~/workspace/MEMORY.md - Format: Plain markdown with dates
You can change the memory file location by setting WORKSPACE environment variable.
Session 1:
user: Remember that I'm building a Canva template pack for car content creators
agent: Saved! Key point: Building Canva template pack for car content creators.
Session 2 (next day):
user: What have we been working on?
agent: Based on memory:
- Building Canva template pack for car content creators
- Started with BEFORE/AFTER template
- Selling on Etsy for $9.99
- Simple — No database, no embeddings, just markdown files
- Portable — Copy the folder, it works
- Useful — Solves the real problem: agents forgetting
- No setup — Works out of the box
MIT License
Built by jelly @porkjelly77 for Heyron Agent Jam #1