Hierarchical conversation compression with natural memory decay
Go to file
rob 538d8e0ccf Define architecture for hierarchical memory with decay
Core concept:
- Conversations compress into summaries over time
- Each level links back to more detailed versions
- Memory strength decays over time
- Accessing a memory boosts its strength
- Neglected memories eventually fade away

Includes data models, compression flow, API design, and CLI spec.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-07 04:10:42 -04:00
.gitignore Initial project setup 2026-01-07 04:09:06 -04:00
CLAUDE.md Define architecture for hierarchical memory with decay 2026-01-07 04:10:42 -04:00
README.md Initial project setup 2026-01-07 04:09:06 -04:00
pyproject.toml Initial project setup 2026-01-07 04:09:06 -04:00

README.md

Fading Memories

Hierarchical conversation compression with natural memory decay

Installation

pip install -e .

Usage

TODO: Add usage instructions

Documentation

Full documentation is available at: https://pages.brrd.tech/rob/fading-memories/

Development

# Clone the repository
git clone https://gitea.brrd.tech/rob/fading-memories.git
cd fading-memories

# Create virtual environment
python -m venv .venv
source .venv/bin/activate

# Install for development
pip install -e ".[dev]"

# Run tests
pytest

License

TODO: Add license