dwsy/agent

episodic-memory

Search past conversations for context, decisions, and patterns. Use when the user references previous work or when you encounter familiar problems.

First seen Mar 22, 2026

Installation

$ npx skills add dwsy/agent --skill episodic-memory

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from dwsy/agent · top by installs.

npx skills add dwsy/agent

Browse all from dwsy/agent

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 22
License MIT
Default branch main
Open issues 42
Status Active

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,901 B
  • docs SUMMARY.md 170 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 7 installs

SKILL.md

Episodic Memory

You have access to a searchable index of all past pi conversations across all projects.

When to Search

  • User says "like we did before", "remember when", "how did we solve X", "what did we try"
  • User references a past session, project, or decision
  • You encounter an error or pattern that might have been addressed previously
  • Starting work on a feature similar to something done before
  • User asks about project history or past decisions

How to Search

Use the episodicmemorysearch tool:

// Semantic search (finds by meaning, not just keywords)
{ "query": "authentication middleware implementation" }

// Multi-concept AND search (results must match ALL concepts)
{ "query": ["React Router", "authentication", "JWT"] }

// Filter by date
{ "query": "database migration", "after": "2025-01-01" }

// Text search for exact phrases
{ "query": "useAuth hook", "mode": "text" }

Tips for Good Queries

  • Use descriptive phrases, not single keywords
  • Try the problem description, not just the solution
  • If first search doesn't find it, try rephrasing or broadening
  • Use multi-concept search when looking for a specific intersection of topics

Viewing Full Conversations

If a search result snippet isn't enough context, use episodicmemoryshow with the session file path from the search results to see the full conversation.

Important

  • Search results are snippets (chunks of ~4 turns). They show the relevant part, not the whole conversation.
  • Results include a relevance score — higher is better.
  • The project name in results shows which directory the session was in.
  • Don't search for every query — only when past context would genuinely help.