fix(hooks): always mine the active transcript as convos, additive to MEMPAL_DIR

#1230 fixed --mode convos for the case where MEMPAL_DIR was unset, but
left two configurations broken:

  - MEMPAL_DIR set to a project dir: convos never mined (MEMPAL_DIR
    overrode the transcript path); only project files were ingested.
  - MEMPAL_DIR set to a conversations dir per the old hooks/README: the
    projects miner ran on JSONL — same wrong-miner behaviour.

The shell hooks (mempal_save_hook.sh, mempal_precompact_hook.sh) had
the same MEMPAL_DIR-overrides-transcript bug AND were missing --mode
on every spawned `mempalace mine` call.

Make the auto-ingest *additive*. _get_mine_dir → _get_mine_targets,
returning a list of (dir, mode) pairs:

  - MEMPAL_DIR (when valid) contributes (dir, "projects")
  - A valid transcript JSONL contributes (parent, "convos")
  - Both can appear together; the hook spawns one ingest per target

Same change applied to the shell save and precompact hooks. Precompact
also gained transcript_path parsing so it can run the convos mine
synchronously before context is compressed. hooks/README.md updated to
describe MEMPAL_DIR as a project-files target, never a convos target.
This commit is contained in:
Igor Lins e Silva
2026-04-27 00:32:35 -03:00
parent 6a8beef604
commit eb4de04339
6 changed files with 197 additions and 113 deletions
+1 -1
View File
@@ -67,7 +67,7 @@ Edit `mempal_save_hook.sh` to change:
- **`SAVE_INTERVAL=15`** — How many human messages between saves. Lower = more frequent saves, higher = less interruption. - **`SAVE_INTERVAL=15`** — How many human messages between saves. Lower = more frequent saves, higher = less interruption.
- **`STATE_DIR`** — Where hook state is stored (defaults to `~/.mempalace/hook_state/`) - **`STATE_DIR`** — Where hook state is stored (defaults to `~/.mempalace/hook_state/`)
- **`MEMPAL_DIR`** — Optional. Set to a conversations directory to auto-run `mempalace mine <dir>` on each save trigger. Leave blank (default) to let the AI handle saving via the block reason message. - **`MEMPAL_DIR`** — Optional **project directory** (code, notes, docs) to also mine on each save trigger, with `--mode projects`. The hook ALWAYS mines the active conversation transcript automatically with `--mode convos``MEMPAL_DIR` is purely additive, never an override. Leave blank if you don't want to ingest project files.
- **`MEMPALACE_PYTHON`** — Optional env var. Python interpreter with mempalace + chromadb installed. Auto-detects: `MEMPALACE_PYTHON` env var → repo `venv/bin/python3` → system `python3`. Set this if your venv is in a non-standard location. - **`MEMPALACE_PYTHON`** — Optional env var. Python interpreter with mempalace + chromadb installed. Auto-detects: `MEMPALACE_PYTHON` env var → repo `venv/bin/python3` → system `python3`. Set this if your venv is in a non-standard location.
### mempalace CLI ### mempalace CLI
+32 -12
View File
@@ -41,17 +41,18 @@
# to save everything. After the AI saves, compaction proceeds normally. # to save everything. After the AI saves, compaction proceeds normally.
# #
# === MEMPALACE CLI === # === MEMPALACE CLI ===
# This repo uses: mempalace mine <dir> # The hook ALWAYS mines the active conversation transcript synchronously
# or: mempalace mine <dir> --mode convos # before compaction (via `mempalace mine <transcript-dir> --mode convos`).
# Set MEMPAL_DIR below if you want the hook to auto-ingest before compaction. # MEMPAL_DIR is an *additional*, optional target for project files — it
# Leave blank to rely on the AI's own save instructions. # does not replace the conversation mine.
STATE_DIR="$HOME/.mempalace/hook_state" STATE_DIR="$HOME/.mempalace/hook_state"
mkdir -p "$STATE_DIR" mkdir -p "$STATE_DIR"
# Optional: set to the directory you want auto-ingested before compaction. # Optional: project directory (code / notes / docs) to also mine before
# Example: MEMPAL_DIR="$HOME/conversations" # compaction. Mined with `--mode projects`. The conversation transcript
# Leave empty to skip auto-ingest (AI handles saving via the block reason). # is always mined regardless — this is purely additive.
# Example: MEMPAL_DIR="$HOME/projects/my_app"
MEMPAL_DIR="" MEMPAL_DIR=""
# Resolve the Python interpreter. Same contract as mempal_save_hook.sh: # Resolve the Python interpreter. Same contract as mempal_save_hook.sh:
@@ -64,15 +65,34 @@ fi
# Read JSON input from stdin # Read JSON input from stdin
INPUT=$(cat) INPUT=$(cat)
SESSION_ID=$(echo "$INPUT" | "$MEMPAL_PYTHON_BIN" -c "import sys,json; print(json.load(sys.stdin).get('session_id','unknown'))" 2>/dev/null) # Parse session_id and transcript_path in one call. Sanitize both before
# interpolating into shell — same contract as mempal_save_hook.sh.
eval $(echo "$INPUT" | "$MEMPAL_PYTHON_BIN" -c "
import sys, json, re
data = json.load(sys.stdin)
sid = data.get('session_id', 'unknown')
tp = data.get('transcript_path', '')
safe = lambda s: re.sub(r'[^a-zA-Z0-9_/.\-~]', '', str(s))
print(f'SESSION_ID=\"{safe(sid)}\"')
print(f'TRANSCRIPT_PATH=\"{safe(tp)}\"')
" 2>/dev/null)
# Expand ~ in path
TRANSCRIPT_PATH="${TRANSCRIPT_PATH/#\~/$HOME}"
echo "[$(date '+%H:%M:%S')] PRE-COMPACT triggered for session $SESSION_ID" >> "$STATE_DIR/hook.log" echo "[$(date '+%H:%M:%S')] PRE-COMPACT triggered for session $SESSION_ID" >> "$STATE_DIR/hook.log"
# Optional: run mempalace ingest synchronously so memories land before compaction # Run ingest synchronously so memories land before compaction. Two
# independent targets — both run if both are set:
# 1. TRANSCRIPT_PATH (from Claude Code) → parent dir, --mode convos
# 2. MEMPAL_DIR → --mode projects
if [ -n "$TRANSCRIPT_PATH" ] && [ -f "$TRANSCRIPT_PATH" ]; then
mempalace mine "$(dirname "$TRANSCRIPT_PATH")" --mode convos \
>> "$STATE_DIR/hook.log" 2>&1
fi
if [ -n "$MEMPAL_DIR" ] && [ -d "$MEMPAL_DIR" ]; then if [ -n "$MEMPAL_DIR" ] && [ -d "$MEMPAL_DIR" ]; then
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" mempalace mine "$MEMPAL_DIR" --mode projects \
REPO_DIR="$(dirname "$SCRIPT_DIR")" >> "$STATE_DIR/hook.log" 2>&1
mempalace mine "$MEMPAL_DIR" >> "$STATE_DIR/hook.log" 2>&1
fi fi
# Silent: return empty JSON to not block. "decision": "allow" is invalid — # Silent: return empty JSON to not block. "decision": "allow" is invalid —
+19 -17
View File
@@ -45,10 +45,10 @@
# stop_hook_active=true so we let it through. No infinite loop. # stop_hook_active=true so we let it through. No infinite loop.
# #
# === MEMPALACE CLI === # === MEMPALACE CLI ===
# This repo uses: mempalace mine <dir> # The hook ALWAYS mines the active conversation transcript automatically
# or: mempalace mine <dir> --mode convos # (via `mempalace mine <transcript-dir> --mode convos`). MEMPAL_DIR is an
# Set MEMPAL_DIR below if you want the hook to auto-ingest after blocking. # *additional*, optional target for project files — it does not replace
# Leave blank to rely on the AI's own save instructions. # the conversation mine.
# #
# === CONFIGURATION === # === CONFIGURATION ===
@@ -56,9 +56,10 @@ SAVE_INTERVAL=15 # Save every N human messages (adjust to taste)
STATE_DIR="$HOME/.mempalace/hook_state" STATE_DIR="$HOME/.mempalace/hook_state"
mkdir -p "$STATE_DIR" mkdir -p "$STATE_DIR"
# Optional: set to the directory you want auto-ingested on each save trigger. # Optional: project directory (code / notes / docs) to also mine each
# Example: MEMPAL_DIR="$HOME/conversations" # save trigger. Mined with `--mode projects`. The conversation transcript
# Leave empty to skip auto-ingest (AI handles saving via the block reason). # is always mined regardless — this is purely additive.
# Example: MEMPAL_DIR="$HOME/projects/my_app"
MEMPAL_DIR="" MEMPAL_DIR=""
# Resolve the Python interpreter the hook should use. # Resolve the Python interpreter the hook should use.
@@ -157,19 +158,20 @@ if [ "$SINCE_LAST" -ge "$SAVE_INTERVAL" ] && [ "$EXCHANGE_COUNT" -gt 0 ]; then
echo "[$(date '+%H:%M:%S')] TRIGGERING SAVE at exchange $EXCHANGE_COUNT" >> "$STATE_DIR/hook.log" echo "[$(date '+%H:%M:%S')] TRIGGERING SAVE at exchange $EXCHANGE_COUNT" >> "$STATE_DIR/hook.log"
# Auto-mine the transcript. Two paths: # Auto-mine. Two independent targets — both run if both are set:
# 1. TRANSCRIPT_PATH (from Claude Code) — mine the directory it lives in # 1. TRANSCRIPT_PATH (from Claude Code) → parent dir, --mode convos
# 2. MEMPAL_DIR (user-configured) — mine that directory # (Claude Code session JSONL — must use the convo miner)
# At least one should work. If neither is set, nothing mines. # 2. MEMPAL_DIR (user-configured project) → --mode projects
MINE_DIR="" # (code, notes, docs)
# MEMPAL_DIR is *additive*, not an override: a user with MEMPAL_DIR
# pointed at their project still gets the active conversation mined.
if [ -n "$TRANSCRIPT_PATH" ] && [ -f "$TRANSCRIPT_PATH" ]; then if [ -n "$TRANSCRIPT_PATH" ] && [ -f "$TRANSCRIPT_PATH" ]; then
MINE_DIR="$(dirname "$TRANSCRIPT_PATH")" mempalace mine "$(dirname "$TRANSCRIPT_PATH")" --mode convos \
>> "$STATE_DIR/hook.log" 2>&1 &
fi fi
if [ -n "$MEMPAL_DIR" ] && [ -d "$MEMPAL_DIR" ]; then if [ -n "$MEMPAL_DIR" ] && [ -d "$MEMPAL_DIR" ]; then
MINE_DIR="$MEMPAL_DIR" mempalace mine "$MEMPAL_DIR" --mode projects \
fi >> "$STATE_DIR/hook.log" 2>&1 &
if [ -n "$MINE_DIR" ]; then
mempalace mine "$MINE_DIR" >> "$STATE_DIR/hook.log" 2>&1 &
fi fi
# MEMPAL_VERBOSE toggle: # MEMPAL_VERBOSE toggle:
+44 -34
View File
@@ -197,27 +197,27 @@ def _output(data: dict):
sys.stdout.buffer.flush() sys.stdout.buffer.flush()
def _get_mine_dir(transcript_path: str = "") -> tuple[str, str]: def _get_mine_targets(transcript_path: str = "") -> list[tuple[str, str]]:
"""Determine directory to mine and the miner mode to use. """Return the list of ``(dir, mode)`` targets for auto-ingest.
Returns ``(dir, mode)`` where ``mode`` is ``"projects"`` or ``"convos"``. MEMPAL_DIR (when set and resolvable) contributes a ``"projects"``
Empty ``dir`` means no ingest should run. target. A valid transcript JSONL contributes a ``"convos"`` target
on its parent dir. Both may appear together — the hook runs one
ingest per target, so a user with MEMPAL_DIR pointed at their
project dir still gets the active conversation mined verbatim.
MEMPAL_DIR is treated as a project directory ("projects" mode). The An empty list means no ingest should run.
transcript-path fallback resolves to the parent of a Claude Code
session JSONL, which must be mined with the conversation miner —
running the projects miner there ingests JSONL as if it were source
code.
""" """
targets: list[tuple[str, str]] = []
mempal_dir = os.environ.get("MEMPAL_DIR", "") mempal_dir = os.environ.get("MEMPAL_DIR", "")
if mempal_dir: if mempal_dir:
resolved = Path(mempal_dir).expanduser().resolve() resolved = Path(mempal_dir).expanduser().resolve()
if resolved.is_dir(): if resolved.is_dir():
return str(resolved), "projects" targets.append((str(resolved), "projects"))
path = _validate_transcript_path(transcript_path) path = _validate_transcript_path(transcript_path)
if path is not None and path.is_file(): if path is not None and path.is_file():
return str(path.parent), "convos" targets.append((str(path.parent), "convos"))
return "", "projects" return targets
_MINE_PID_FILE = STATE_DIR / "mine.pid" _MINE_PID_FILE = STATE_DIR / "mine.pid"
@@ -275,36 +275,46 @@ def _spawn_mine(cmd: list) -> None:
def _maybe_auto_ingest(transcript_path: str = ""): def _maybe_auto_ingest(transcript_path: str = ""):
"""Run mempalace mine in background if a mine directory is available.""" """Run mempalace mine in background for every available target."""
mine_dir, mode = _get_mine_dir(transcript_path) targets = _get_mine_targets(transcript_path)
if not mine_dir: if not targets:
return return
if _mine_already_running(): if _mine_already_running():
_log("Skipping auto-ingest: mine already running") _log("Skipping auto-ingest: mine already running")
return return
try: for mine_dir, mode in targets:
_spawn_mine([sys.executable, "-m", "mempalace", "mine", mine_dir, "--mode", mode]) try:
except OSError: _spawn_mine([sys.executable, "-m", "mempalace", "mine", mine_dir, "--mode", mode])
pass except OSError:
pass
def _mine_sync(transcript_path: str = ""): def _mine_sync(transcript_path: str = ""):
"""Run mempalace mine synchronously (for precompact -- data must land first).""" """Run mempalace mine synchronously for every target (precompact)."""
mine_dir, mode = _get_mine_dir(transcript_path) targets = _get_mine_targets(transcript_path)
if not mine_dir: if not targets:
return return
try: STATE_DIR.mkdir(parents=True, exist_ok=True)
STATE_DIR.mkdir(parents=True, exist_ok=True) log_path = STATE_DIR / "hook.log"
log_path = STATE_DIR / "hook.log" for mine_dir, mode in targets:
with open(log_path, "a") as log_f: try:
subprocess.run( with open(log_path, "a") as log_f:
[sys.executable, "-m", "mempalace", "mine", mine_dir, "--mode", mode], subprocess.run(
stdout=log_f, [
stderr=log_f, sys.executable,
timeout=60, "-m",
) "mempalace",
except (OSError, subprocess.TimeoutExpired): "mine",
pass mine_dir,
"--mode",
mode,
],
stdout=log_f,
stderr=log_f,
timeout=60,
)
except (OSError, subprocess.TimeoutExpired):
pass
def _desktop_toast(body: str, title: str = "MemPalace"): def _desktop_toast(body: str, title: str = "MemPalace"):
+88 -31
View File
@@ -12,7 +12,7 @@ from mempalace.hooks_cli import (
SAVE_INTERVAL, SAVE_INTERVAL,
_count_human_messages, _count_human_messages,
_extract_recent_messages, _extract_recent_messages,
_get_mine_dir, _get_mine_targets,
_log, _log,
_maybe_auto_ingest, _maybe_auto_ingest,
_mempalace_python, _mempalace_python,
@@ -494,6 +494,43 @@ def test_mine_sync_with_env_uses_projects_mode(tmp_path):
assert cmd[cmd.index("--mode") + 1] == "projects" assert cmd[cmd.index("--mode") + 1] == "projects"
def test_maybe_auto_ingest_with_both_set(tmp_path):
"""When MEMPAL_DIR and a transcript are both set, BOTH spawns happen."""
mempal_dir = tmp_path / "project"
mempal_dir.mkdir()
convo_dir = tmp_path / "convos"
convo_dir.mkdir()
transcript = convo_dir / "session.jsonl"
transcript.write_text("")
with patch.dict("os.environ", {"MEMPAL_DIR": str(mempal_dir)}):
with patch("mempalace.hooks_cli.STATE_DIR", tmp_path):
with patch("mempalace.hooks_cli._MINE_PID_FILE", tmp_path / "mine.pid"):
with patch("mempalace.hooks_cli.subprocess.Popen") as mock_popen:
_maybe_auto_ingest(str(transcript))
assert mock_popen.call_count == 2
cmds = [call.args[0] for call in mock_popen.call_args_list]
modes = {cmd[cmd.index("--mode") + 1] for cmd in cmds}
assert modes == {"projects", "convos"}
def test_mine_sync_with_both_set(tmp_path):
"""Precompact sync runs BOTH mines when MEMPAL_DIR + transcript are set."""
mempal_dir = tmp_path / "project"
mempal_dir.mkdir()
convo_dir = tmp_path / "convos"
convo_dir.mkdir()
transcript = convo_dir / "session.jsonl"
transcript.write_text("")
with patch.dict("os.environ", {"MEMPAL_DIR": str(mempal_dir)}):
with patch("mempalace.hooks_cli.STATE_DIR", tmp_path):
with patch("mempalace.hooks_cli.subprocess.run") as mock_run:
_mine_sync(str(transcript))
assert mock_run.call_count == 2
cmds = [call.args[0] for call in mock_run.call_args_list]
modes = {cmd[cmd.index("--mode") + 1] for cmd in cmds}
assert modes == {"projects", "convos"}
def test_maybe_auto_ingest_oserror(tmp_path): def test_maybe_auto_ingest_oserror(tmp_path):
"""OSError during subprocess spawn is silenced.""" """OSError during subprocess spawn is silenced."""
mempal_dir = tmp_path / "project" mempal_dir = tmp_path / "project"
@@ -550,70 +587,90 @@ def test_mine_already_running_corrupt_file(tmp_path):
assert _mine_already_running() is False assert _mine_already_running() is False
# --- _get_mine_dir --- # --- _get_mine_targets ---
def test_get_mine_dir_mempal_dir(tmp_path): def test_get_mine_targets_mempal_dir_only(tmp_path):
"""MEMPAL_DIR takes priority, is expanded/resolved, and is treated as projects mode.""" """MEMPAL_DIR alone yields a single projects target, expanded/resolved."""
mempal_dir = tmp_path / "project" mempal_dir = tmp_path / "project"
mempal_dir.mkdir() mempal_dir.mkdir()
transcript = tmp_path / "t.jsonl"
transcript.write_text("")
with patch.dict("os.environ", {"MEMPAL_DIR": str(mempal_dir)}): with patch.dict("os.environ", {"MEMPAL_DIR": str(mempal_dir)}):
result_dir, result_mode = _get_mine_dir(str(transcript)) targets = _get_mine_targets("")
assert Path(result_dir).resolve() == mempal_dir.resolve() assert len(targets) == 1
assert result_mode == "projects" assert Path(targets[0][0]).resolve() == mempal_dir.resolve()
assert targets[0][1] == "projects"
def test_get_mine_dir_mempal_dir_tilde(tmp_path): def test_get_mine_targets_mempal_dir_tilde(tmp_path):
"""MEMPAL_DIR with a tilde prefix is expanded correctly.""" """MEMPAL_DIR with a tilde prefix is expanded correctly."""
mempal_dir = tmp_path / "project" mempal_dir = tmp_path / "project"
mempal_dir.mkdir() mempal_dir.mkdir()
home = Path.home() home = Path.home()
# Build a ~-relative path only if tmp_path is inside home
try: try:
rel = mempal_dir.relative_to(home) rel = mempal_dir.relative_to(home)
except ValueError: except ValueError:
pytest.skip("tmp_path is not under home, cannot build ~-relative path") pytest.skip("tmp_path is not under home, cannot build ~-relative path")
tilde_path = "~/" + str(rel) tilde_path = "~/" + str(rel)
with patch.dict("os.environ", {"MEMPAL_DIR": tilde_path}): with patch.dict("os.environ", {"MEMPAL_DIR": tilde_path}):
result_dir, result_mode = _get_mine_dir("") targets = _get_mine_targets("")
assert Path(result_dir).resolve() == mempal_dir.resolve() assert len(targets) == 1
assert result_mode == "projects" assert Path(targets[0][0]).resolve() == mempal_dir.resolve()
assert targets[0][1] == "projects"
def test_get_mine_dir_transcript_fallback(tmp_path): def test_get_mine_targets_transcript_only(tmp_path):
"""Transcript fallback resolves to its parent dir in convos mode.""" """A valid transcript JSONL alone yields a single convos target."""
transcript = tmp_path / "t.jsonl" transcript = tmp_path / "t.jsonl"
transcript.write_text("") transcript.write_text("")
with patch.dict("os.environ", {}, clear=True): with patch.dict("os.environ", {}, clear=True):
result_dir, result_mode = _get_mine_dir(str(transcript)) targets = _get_mine_targets(str(transcript))
assert Path(result_dir).resolve() == tmp_path.resolve() assert len(targets) == 1
assert result_mode == "convos" assert Path(targets[0][0]).resolve() == tmp_path.resolve()
assert targets[0][1] == "convos"
def test_get_mine_dir_transcript_path_traversal_rejected(tmp_path): def test_get_mine_targets_both_set(tmp_path):
"""Transcript paths with '..' components are rejected and return no dir.""" """When MEMPAL_DIR and a valid transcript are both set, BOTH targets appear.
This is the regression that motivates the additive-targets design:
users who set MEMPAL_DIR previously had their conversations silently
skipped because MEMPAL_DIR overrode the transcript path.
"""
mempal_dir = tmp_path / "project"
mempal_dir.mkdir()
convo_dir = tmp_path / "convos"
convo_dir.mkdir()
transcript = convo_dir / "session.jsonl"
transcript.write_text("")
with patch.dict("os.environ", {"MEMPAL_DIR": str(mempal_dir)}):
targets = _get_mine_targets(str(transcript))
modes = {mode for _, mode in targets}
assert modes == {"projects", "convos"}
by_mode = {mode: Path(d) for d, mode in targets}
assert by_mode["projects"].resolve() == mempal_dir.resolve()
assert by_mode["convos"].resolve() == convo_dir.resolve()
def test_get_mine_targets_transcript_path_traversal_rejected(tmp_path):
"""Transcript paths with '..' components are rejected (no convos target)."""
with patch.dict("os.environ", {}, clear=True): with patch.dict("os.environ", {}, clear=True):
result_dir, result_mode = _get_mine_dir("../../etc/passwd") targets = _get_mine_targets("../../etc/passwd")
assert result_dir == "" assert targets == []
assert result_mode == "projects"
def test_get_mine_dir_transcript_non_jsonl_rejected(tmp_path): def test_get_mine_targets_transcript_non_jsonl_rejected(tmp_path):
"""Transcript paths without .jsonl/.json extension are rejected.""" """Transcript paths without .jsonl/.json extension are rejected."""
bad = tmp_path / "notes.txt" bad = tmp_path / "notes.txt"
bad.write_text("content") bad.write_text("content")
with patch.dict("os.environ", {}, clear=True): with patch.dict("os.environ", {}, clear=True):
result_dir, result_mode = _get_mine_dir(str(bad)) targets = _get_mine_targets(str(bad))
assert result_dir == "" assert targets == []
assert result_mode == "projects"
def test_get_mine_dir_empty(): def test_get_mine_targets_empty():
"""Returns empty dir when nothing is available.""" """Returns empty list when nothing is available."""
with patch.dict("os.environ", {}, clear=True): with patch.dict("os.environ", {}, clear=True):
assert _get_mine_dir("") == ("", "projects") assert _get_mine_targets("") == []
# --- _parse_harness_input --- # --- _parse_harness_input ---
+13 -18
View File
@@ -16,7 +16,8 @@ class TestSaveHookAutoMines:
def test_hook_mines_transcript_path(self): def test_hook_mines_transcript_path(self):
"""The hook receives TRANSCRIPT_PATH from Claude Code. """The hook receives TRANSCRIPT_PATH from Claude Code.
It should use that to mine the conversation, not depend on MEMPAL_DIR.""" It should use that to mine the conversation as --mode convos,
independently of MEMPAL_DIR (which is for project files only)."""
hook_path = os.path.join( hook_path = os.path.join(
os.path.dirname(os.path.dirname(__file__)), os.path.dirname(os.path.dirname(__file__)),
"hooks", "hooks",
@@ -24,23 +25,17 @@ class TestSaveHookAutoMines:
) )
src = open(hook_path).read() src = open(hook_path).read()
# The hook ALREADY receives TRANSCRIPT_PATH in the JSON input. # The hook must drive the conversation mine off TRANSCRIPT_PATH,
# It should use this to mine the current session's transcript # using `dirname` to derive the parent dir, and tagging it with
# regardless of whether MEMPAL_DIR is set. # `--mode convos` so the convo miner runs (not the projects miner).
# The hook must have a path that uses TRANSCRIPT_PATH to determine assert "TRANSCRIPT_PATH" in src, "hook must read transcript_path"
# what to mine, separate from the MEMPAL_DIR path. assert "mempalace mine" in src, "hook must invoke `mempalace mine`"
uses_transcript = "TRANSCRIPT_PATH" in src assert (
has_mine = "mempalace mine" in src 'dirname "$TRANSCRIPT_PATH"' in src
# TRANSCRIPT_PATH must appear in the mining logic, not just the parse block ), "hook must mine the transcript's parent directory"
transcript_drives_mine = "MINE_DIR" in src and "dirname" in src and "TRANSCRIPT_PATH" in src assert (
"--mode convos" in src
assert uses_transcript and has_mine and transcript_drives_mine, ( ), "transcript mine must use --mode convos, not the projects miner"
"Save hook only mines when MEMPAL_DIR is set (defaults to empty). "
"The hook receives TRANSCRIPT_PATH from Claude Code — it should "
"mine that file automatically so conversations are saved without "
"the user setting an env var. Currently the hook says 'saved in "
"background' but nothing actually saves."
)
def test_mempal_dir_default_not_empty(self): def test_mempal_dir_default_not_empty(self):
"""If MEMPAL_DIR is still used, it should have a sensible default, """If MEMPAL_DIR is still used, it should have a sensible default,