Claude Code hooks that preserve task state and user preferences across auto-compaction
Project description
Claude Smart Compact
Two Claude Code CLI hooks that preserve task state, in-progress todos, and user preferences across auto-compaction, without bloating the context window.
How it works
- PreCompact runs when the CLI is about to auto-compact. It reads the
session transcript, extracts the last user message + in-flight turns + the
latest
TodoWritesnapshot, and writes a Markdown memory file to<project>/.claude/compact-memory/<session_id>.md. - UserPromptSubmit runs on every user prompt after the first compaction. It injects a short pointer telling the agent the memory file is available and may be read on demand.
- Preferences are agent-authored — the hook preserves a
## Preferencessection on every run, but does not populate it automatically. Append with the Edit tool when the user states a lasting preference.
Install
From PyPI:
pip install claude-smart-compact
cd /path/to/your/project
claude-smart-compact install
The installer automatically creates or updates .claude/settings.json with the required hook entries,
preserving any existing configuration. To skip this and manage settings.json manually, pass --no-settings.
Manual (without pip)
If you prefer not to pip install, copy claude_smart_compact/ into
your project's .claude/hooks/ directly. The deployed layout is:
<project>/.claude/hooks/
├── pre_compact.py
├── user_prompt.py
└── lib/
├── core.py
├── memory.py
└── transcript.py
Verify
Run the manual trace script:
python3 tests/trace_run.py tests/fixtures/transcript_with_todos.jsonl
Run tests
pip install -e ".[dev]"
pytest --cov=hooks
Debug
Every hook run appends to <project>/.claude/compact-memory/<session_id>.trace.jsonl.
tail -f this file to watch the hooks work in real time.
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
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 claude_smart_compact-0.1.2.tar.gz.
File metadata
- Download URL: claude_smart_compact-0.1.2.tar.gz
- Upload date:
- Size: 17.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.15
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2c549538fa8cbdc56f623d49915df5b16cd87ee82740b61119ab85740d170bc9
|
|
| MD5 |
96f23e61c6a8f8b2f3471114a705d78b
|
|
| BLAKE2b-256 |
7256d4f21b4e76c4e8c67f9c1a1b5150d9d58ca6ee333b286f2096d1bcb9bd77
|
File details
Details for the file claude_smart_compact-0.1.2-py3-none-any.whl.
File metadata
- Download URL: claude_smart_compact-0.1.2-py3-none-any.whl
- Upload date:
- Size: 12.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.15
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7f1155c333612ab912397d0af3acc15ec751c4cd7678e0067df20b0ea4132b21
|
|
| MD5 |
d204d87af9554f82c99e7c2e6b2aa807
|
|
| BLAKE2b-256 |
d4e1ed044f7c558d92f826adaf5e344ea1bd5bc4d63a8fddd78bf09d7fc3c88d
|