Skip to content

Latest commit

 

History

History
90 lines (64 loc) · 2.26 KB

File metadata and controls

90 lines (64 loc) · 2.26 KB

Session Memory Prompt

A skill that helps Heyron agents remember important details across sessions. Built for the Heyron Agent Jam #1: Memory Systems hackathon.

What It Does

  1. Auto-save important info — When you tell the agent something important, it saves to MEMORY.md
  2. Session start recall — On new session, agent can show you what was last discussed
  3. Manual memory commands — "remember X" or "what do you remember?"

Why This Exists

Most agents forget everything between sessions. This skill fixes that with a simple file-based system that anyone can use.

Installation

  1. Copy the session-memory folder into your skills directory:

    cp -r session-memory ~/workspace/skills/
    
  2. Restart your agent or reload skills.

Usage

Save something to memory

user: Remember that I'm building a template pack to sell
agent: Saved! I'll remember this next session.

Ask what agent remembers

agent: What do you remember?
agent: Here's what I remember:
- Building a Canva template pack
- First two templates done
- ...

Trigger at session end (optional)

Add to your end-of-session routine:

  • Prompt: "What should I remember from this session?"
  • Agent saves key points to MEMORY.md

Files

  • session-memory.js — Main skill logic
  • SKILL.md — Skill documentation
  • prompts.md — Prompt templates

Configuration

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.

Example

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

Why It Works

  • 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

License

MIT License


Built by jelly @porkjelly77 for Heyron Agent Jam #1