Back to skills

read-memories

data

Searches past Claude Code session logs using DuckDB to recover context from previous conversations. Given a keyword, it queries all JSONL log files across projects (or just the current one with --here

Setup & Installation

npx skills add https://github.com/duckdb/read-memories --skill read-memories
or paste the link and ask your coding assistant to install it
https://github.com/duckdb/read-memories
View on GitHub

What This Skill Does

Searches past Claude Code session logs using DuckDB to recover context from previous conversations. Given a keyword, it queries all JSONL log files across projects (or just the current one with --here) and returns matching messages with timestamps and roles. Results can be materialized into a local DuckDB file for interactive follow-up queries. Instead of scrolling through chat history manually or relying on fragmented notes, this lets you query structured session logs with SQL filters, timestamps, and role context in one step.

When to use it

  • Working with read memories functionality
  • Implementing read memories features
  • Debugging read memories related issues