Incremental, crash-resilient re-mining wrapper for mempalace — mine only what's new since last run, or a single session, without losing history or creating duplicates.
Project description
mempalace-refresh
Incremental, crash-resilient re-mining wrapper for mempalace.
Mempalace's built-in mine command is skip-if-filed by design — once a file has any drawer in the palace, mine never re-visits it. That's correct for static files, but wrong for live-appending Claude Code session logs that grow every message, across compactions, for days.
mempalace-refresh makes mempalace properly incremental:
- Only mines what's new since the last run (per-file mtime tracking)
- Subprocess per file — a ChromaDB segfault on file N doesn't nuke the batch
- Additive — upsert semantics + stable drawer IDs mean re-mining never deletes or duplicates; old chunks no-op, new chunks are appended
source_filemetadata stays correct — points at the real.jsonl, not a tmp path- Targeted — mine just one session with
ONLY <uuid> - Fail-loud on API drift — if a mempalace update renames what we monkey-patch, the script exits 99 with a clear message
Install
pip install mempalace-refresh
Requires mempalace 3.2.x installed.
Usage
mempalace-refresh # catch up: mine everything new since last run
mempalace-refresh STATUS # per-file change status
mempalace-refresh ONLY <uuid> # mine a single session (substring match)
mempalace-refresh RESET # wipe state (next run re-mines everything)
mempalace-refresh REPAIR # delegates to `mempalace repair --yes`
State lives at ~/.cache/mempalace-refresh/state.json. Nothing else is stored — the palace itself is mempalace's.
Environment
PROJECTS_DIR— override~/.claude/projects/(Claude Code session logs)MEMPALACE_PALACE— override~/.mempalace
How it works (short)
- Each
.jsonlunderPROJECTS_DIRis tracked by mtime in state. - Changed files are mined one at a time via a fresh Python subprocess.
- The subprocess monkey-patches
mempalace.palace.file_already_minedto bypass mempalace's skip-check, andmempalace.convo_miner.scan_convosto feed it exactly one file. - Mempalace then scans the real
.jsonl, runs its regex-basedgeneral_extractor, and upserts drawers. Because drawer IDs arehash(source_file + chunk_index):- Chunks that already existed → upsert updates metadata in place, no-op
- Chunks for newly appended content → new IDs → genuinely new drawers
- State is committed per file so any later crash loses zero progress.
Result: your palace reflects every session exactly as it would if you'd mined each one from the start, plus incremental additions for all subsequent growth.
License
MIT. See LICENSE.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file mempalace_refresh-0.2.3-py3-none-any.whl.
File metadata
- Download URL: mempalace_refresh-0.2.3-py3-none-any.whl
- Upload date:
- Size: 11.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c4d60b9beacf8611f7f7ec7f745a9662d8e68636f4f39bbc9c7adbdc53475224
|
|
| MD5 |
c6f13b2377e7507ba49e31b4cccc52d7
|
|
| BLAKE2b-256 |
b0661a28b5359e786ccbda90c501b99842f69b71097e869b184e840fc3669a75
|