Skip to main content

Fractal memory system for Claude Code

Project description

Oubli

image



Oubli: French for "forgetting." (Also a West African fruit so sweet it makes babies forget their mother's milk.)

A memory system that never forgets. Persistent fractal memory for Claude Code.

Features

  • Fractal in Both Directions - Synthesize raw memories into insights, drill down from insights to source details
  • Hybrid Search - Combines BM25 keyword search + semantic embeddings for intelligent retrieval
  • Core Memory - Essential facts about you (~2K tokens), loaded in every conversation
  • Proactive Memory - Claude searches and saves automatically, no prompting needed
  • Immediate Updates - Family, work, and identity changes update Core Memory instantly
  • Quiet Operation - Memory operations happen silently in the background
  • Local-First - All data stays on your machine, no external services
  • Visual Graph - Interactive visualization of your memory hierarchy (oubli viz)

Installation

pip install oubli
oubli setup  # Installs MCP server globally + hooks for current project

Then restart Claude Code. The embedding model (~80MB) downloads on first use.

Important: Hooks are installed project-locally by default (.claude/settings.local.json). This means Oubli only runs in projects where you explicitly enable it.

Enable in Other Projects

cd /path/to/your/project
oubli enable

Disable for a Project

cd /path/to/your/project
oubli disable

Requirements

Uninstall

oubli uninstall  # Removes MCP server, global hooks, commands
oubli disable    # (In each project) Remove project-local hooks
pip uninstall oubli

How It Works

Fractal Memory Hierarchy

The memory system is fractal in both directions:

           ┌─────────────────────────────────────────┐
           │            CORE MEMORY                  │
           │    (~2K tokens, always in context)      │
           │                                         │
           │  Identity, family, work, preferences    │
           └─────────────────────┬───────────────────┘
                                 │
                    ▲ synthesis  │  drill-down ▼
                                 │
Level 2    ○ "Deeply technical, values efficiency"
            ╲
Level 1    ○ ○ "Loves jazz fusion"  "Python expert"
            ╲│
Level 0    ○○○○ Raw memories with full conversation text
  • Upward (Synthesis): Raw memories consolidate into higher-level insights
  • Downward (Drill-down): From any insight, retrieve its source memories for full detail
Level Contains Use Case
Core Memory Essential identity (~2K tokens) Always loaded, answers most questions
Level 1+ Synthesized insights Quick context without full details
Level 0 Raw memories + full conversation When you need exact quotes or specifics

Hybrid Search

Oubli uses LanceDB's hybrid search combining:

  • BM25 Full-Text Search - Finds keyword matches
  • Semantic Embeddings - Finds conceptually related content (via sentence-transformers)
  • RRF Reranking - Merges both result sets intelligently

Example: Searching "jazz music" finds memories about "Pat Metheny" and "fusion harmonies" even without exact keyword matches.

Synthesis (Bottom-Up)

Run /synthesize to consolidate raw memories into insights:

  1. Merge duplicates - Similar memories at each level are combined
  2. Group by topic - Related memories clustered together
  3. Create insights - Level 1+ memories synthesize the patterns
  4. Update Core Memory - Incrementally updated (additions from insights, removals only with contradicting evidence)

Drill-Down Retrieval (Top-Down)

When you need more detail than a high-level insight provides:

  1. Search returns synthesized insights first (compact, high-signal)
  2. Get parents retrieves the source memories that formed an insight
  3. Get full text retrieves the complete conversation from a Level 0 memory

Nothing is ever lost - every insight links back to its source memories.

Usage

Natural Interaction

Just talk naturally. Claude handles memory operations silently:

  • "I prefer TypeScript over JavaScript" → Saved automatically
  • "What do you know about my work?" → Searches memory
  • "I no longer work at Spotify" → Deletes old, saves new, updates Core Memory

Import Existing Memories

Paste your Claude.ai memory export and ask:

"Import this into my memory"

Claude parses it into structured memories and optionally creates your Core Memory.

Slash Commands

  • /synthesize - Run full synthesis: merge duplicates, create insights, update Core Memory
  • /clear-memories - Clear all memories (requires confirmation)

CLI Commands

oubli viz              # Open interactive memory graph in browser
oubli viz --no-open    # Generate graph.html without opening

The visualization shows:

  • Hierarchical tree - Raw memories at top, synthesized insights below
  • Topic sidebar - Filter by topic to focus on specific areas
  • Color coding - Blue (L0 raw), Green (L1), Purple (L2+)
  • Tooltips - Hover for full summary, topics, keywords

Data Storage

All data stored locally in ~/.oubli/:

File Description
memories.lance/ LanceDB database with vector embeddings
core_memory.md Your Core Memory (human-readable, editable)
graph.html Memory visualization (generated by oubli viz)

What Gets Installed

Component Location Scope Description
MCP Server claude mcp Global 15 memory tools
Hooks .claude/settings.local.json Per-project UserPromptSubmit, PreCompact, Stop
Commands ~/.claude/commands/ Global /clear-memories, /synthesize
Instructions ~/.claude/CLAUDE.md Global How Claude uses the memory system

Note: Hooks are project-local by default. Use oubli enable in each project where you want Oubli.

MCP Tools

Retrieval

Tool Description
memory_search Hybrid search (BM25 + semantic)
memory_get Get full details including conversation text
memory_get_parents Drill down from synthesis to source memories
memory_list List memories by level
memory_stats Get memory statistics

Storage

Tool Description
memory_save Save a new memory (auto-embeds)
memory_import Bulk import memories
memory_update Update an existing memory
memory_delete Delete a memory

Synthesis

Tool Description
memory_synthesis_needed Check if synthesis should run (threshold: 5)
memory_prepare_synthesis Merge duplicates, return groups for synthesis
memory_synthesize Create Level 1+ insight from parent memories
memory_dedupe Manual duplicate cleanup

Core Memory

Tool Description
core_memory_get Get Core Memory content
core_memory_save Save Core Memory content

Development

git clone https://github.com/dremok/oubli.git
cd oubli
pip install -e .
oubli setup

# Test storage
python -c "
from oubli.storage import MemoryStore
store = MemoryStore()
print('Embeddings:', store.embeddings_enabled())
store.add(summary='Test memory', topics=['test'])
print(store.search('test'))
"

License

MIT

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

oubli-0.3.2.tar.gz (27.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

oubli-0.3.2-py3-none-any.whl (30.5 kB view details)

Uploaded Python 3

File details

Details for the file oubli-0.3.2.tar.gz.

File metadata

  • Download URL: oubli-0.3.2.tar.gz
  • Upload date:
  • Size: 27.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.4

File hashes

Hashes for oubli-0.3.2.tar.gz
Algorithm Hash digest
SHA256 57331fd284fec5795d8c869f28adefd8787854b7a4375f78c7adc7a81646409b
MD5 76a0da27232a794df365d092c5fc73fb
BLAKE2b-256 66f46dfb5e5640858b3eaafeaeb58bae38c5b89f2ce16afa119de578656f4d4b

See more details on using hashes here.

File details

Details for the file oubli-0.3.2-py3-none-any.whl.

File metadata

  • Download URL: oubli-0.3.2-py3-none-any.whl
  • Upload date:
  • Size: 30.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.4

File hashes

Hashes for oubli-0.3.2-py3-none-any.whl
Algorithm Hash digest
SHA256 3c6c65be04ae32ae548eba46212f7c9cfa1ee369a463d2784872f0e43e136ee3
MD5 ffa257dfa909ed0febb08c081c0b7e83
BLAKE2b-256 02a96e4acb71310c6a89043c97b36e15593a709e37f1495cdcd4bb4c82e9bda8

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page