Metadata-Version: 2.4
Name: shofer-live-memory
Version: 0.4.3
Summary: A cheap, persistent, read-only codebase memory for Claude Code — a large-context model that accumulates repo knowledge across sessions and answers via ask_live_memory instead of re-reading files.
Author: shofer.dev
License: Apache-2.0
Project-URL: Homepage, https://github.com/shofer-dev/claude-code-live-memory
Project-URL: Repository, https://github.com/shofer-dev/claude-code-live-memory
Project-URL: Issues, https://github.com/shofer-dev/claude-code-live-memory/issues
Keywords: mcp,claude-code,memory,codebase,context,llm
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries
Requires-Python: >=3.10
Description-Content-Type: text/markdown
Requires-Dist: mcp>=1.2.0
Requires-Dist: anthropic>=0.40.0
Requires-Dist: starlette>=0.37.0
Requires-Dist: uvicorn>=0.30.0
Requires-Dist: watchdog>=4.0.0
Provides-Extra: dev
Requires-Dist: mypy>=1.8; extra == "dev"
Requires-Dist: pytest>=8.0; extra == "dev"
Requires-Dist: pytest-asyncio>=0.23; extra == "dev"

# live-memory — MCP server

mcp-name: io.github.shofer-dev/live-memory

A cheap, persistent, **read-only** codebase memory for Claude Code. A separate large-context model runs
as a long-lived MCP server and *accumulates* knowledge of your repository across sessions; your agent
asks it via one tool, `ask_live_memory`, instead of re-reading files. It learns passively from the files
your agent reads/edits and stays current as the repo changes. Read-only and path-jailed; zero-config on a
Claude subscription (Haiku), or point it at any OpenAI-compatible / local model.

This package is the **server** behind the [live-memory Claude Code plugin](https://github.com/shofer-dev/claude-code-live-memory).

## Install & run

```bash
pip install shofer-live-memory
live-memory-server          # serves http://127.0.0.1:7711/mcp
```

Then point an MCP client at `http://127.0.0.1:7711/mcp` (the Claude Code plugin wires this for you).

- **Full docs / README:** https://github.com/shofer-dev/claude-code-live-memory
- **Design:** https://github.com/shofer-dev/claude-code-live-memory/blob/main/DESIGN.md
- **Privacy policy:** https://github.com/shofer-dev/claude-code-live-memory/blob/main/PRIVACY.md

Apache-2.0.
