memory-recall

Extract and compile user and project facts from past conversations into a structured memory artifact.

37|4|Updated Mar 31, 2026
One-click install
npx skills add https://github.com/MerkyorLynn/Lynn --skill memory-recall-merkyorlynn
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: memory-recall
Source: https://github.com/MerkyorLynn/Lynn/tree/main/skills2set/memory-recall
Command: npx skills add https://github.com/MerkyorLynn/Lynn --skill memory-recall-merkyorlynn

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill solves AI amnesia by preserving user preferences, project context, and decisions across sessions so the agent can pick up where it left off instead of asking the user to repeat everything.

Core Features & Use Cases

  • Automated session summarization that turns recent conversation turns into rolling digests for later reuse.
  • Fact extraction into a structured store that records important, reusable facts with importance scores, categories, deduplication, and decay.
  • Time-layered compilation and assembled memory that produces a compact memory document loaded at session start for immediate contextual recall.
  • Use case: You tell the agent your database details and preferred tooling today, then tomorrow you ask it to “connect to the database,” and it automatically recalls the saved port, database type, and project setup.

Quick Start

Tell the agent: “Remember that my PostgreSQL is running on port 5433 and I prefer tabs over spaces for writing code.”

Frequently Asked Questions about memory-recall

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I retain user preferences and project facts across different chat sessions?

Persistent cross-session memory solves this by extracting and compiling user and project facts from past conversations into a structured store. The agent then injects this compiled memory artifact at the start of each new session for immediate historical context recall.

How does semantic search work for retrieving past agent context?

Semantic recall works by matching current queries against a structured fact store that features importance scoring and deduplication. This mechanism retrieves relevant historical facts and compiles them into a memory document loaded at the start of each session.

What is the best way to build long-term recall for an ongoing project?

The best approach uses automated session summarization to turn recent conversation turns into rolling digests. These digests feed into a structured fact store with importance scoring and decay, ensuring ongoing projects maintain seamless context and preference retention.

Can I use cross-session memory to answer follow-ups like what did I tell you before?

Yes, cross-session memory answers follow-ups like what did I tell you before by applying time-layered compilation to past conversations. It retrieves specific user facts and project context from the structured store to provide an accurate, historically grounded response.

Does fact extraction support deduplication and importance scoring for memory management?

Yes, fact extraction records reusable facts with importance scores, categories, and deduplication to manage memory efficiently. This prevents redundant data and ensures the compiled memory artifact remains compact and highly relevant when injected at session start.