memory

Store observations, decisions, and discoveries in a persistent SQLite FTS5 memory system.

Updated Aug 23, 2026
One-click install
npx skills add https://github.com/abhiroopb/synthetic-mind --skill memory-abhiroopb
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: memory
Source: https://github.com/abhiroopb/synthetic-mind/tree/main/skills/memory
Command: npx skills add https://github.com/abhiroopb/synthetic-mind --skill memory-abhiroopb

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) and references (resource) components.

What problem does it solve?

This Skill addresses the critical issue of AI agents losing all context between sessions by providing a persistent, searchable knowledge store.

Core Features & Use Cases

  • Persistent Knowledge Store: Captures observations, decisions, and discoveries across sessions.
  • Full-Text Search: Enables efficient retrieval of past information using SQLite with FTS5.
  • Progressive Disclosure: Offers layered retrieval from a compact index to full details.
  • Use Case: Recall a specific bug fix from weeks ago by searching for keywords, or review decisions made during a complex project.

Quick Start

Search your memory for any past observations related to the checkout flow.

Frequently Asked Questions about memory

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

FAQPage Schema
How do I keep AI agent context and memory persistent across sessions?

Persistent AI memory stores observations, decisions, and discoveries locally in a SQLite database, ensuring accumulated knowledge remains available across all future sessions.

Can I do full-text search on my AI agent's past knowledge base?

Yes, full-text search is enabled using SQLite with FTS5, allowing you to efficiently retrieve past information and recall specific historical observations by searching keywords.

What is progressive disclosure for AI memory retrieval?

Progressive disclosure is a layered retrieval mechanism that transitions from a compact index to full details, enabling efficient access to stored agent context without overwhelming the search.

Do I need external dependencies to use SQLite for AI agent memory?

No external dependencies are required. The system uses SQLite with FTS5 to locally store and search session tracking data, decisions, and discoveries without external services.

What's the best way to review complex project decisions made by an AI agent weeks ago?

You can use the persistent knowledge store to review decisions made during a complex project by searching your memory for keywords related to past sessions and observations.