Metadata-Version: 2.5
Name: rushdb-hermes-memory
Version: 0.1.0
Summary: Native RushDB persistent memory provider for Hermes Agent
Project-URL: Homepage, https://docs.rushdb.com/connect/hermes-memory
Project-URL: Repository, https://github.com/rush-db/rushdb-hermes-memory
Project-URL: Issues, https://github.com/rush-db/rushdb-hermes-memory/issues
Project-URL: Documentation, https://docs.rushdb.com
Author-email: RushDB Team <hi@rushdb.com>
License-Expression: Apache-2.0
License-File: LICENSE
Keywords: agent-memory,hermes-agent,knowledge-graph,persistent-memory,rushdb,semantic-search
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Requires-Python: <3.14,>=3.11
Requires-Dist: rushdb<3,>=2.10.0
Description-Content-Type: text/markdown

# rushdb-hermes-memory

Native [RushDB](https://rushdb.com) persistent memory for [Hermes Agent](https://github.com/NousResearch/hermes-agent).

The provider recalls scope-authorized historical context before inference, captures completed turns without blocking the response, and uses a profile-local durable outbox so acknowledged events survive process restarts.

## Requirements

- Python 3.11–3.13
- Hermes Agent with memory-provider entry-point support
- A RushDB project API key from [app.rushdb.com](https://app.rushdb.com)

## Install

Install the provider into the same Python environment as Hermes Agent:

```bash
pip install rushdb-hermes-memory
hermes memory setup
```

Set the RushDB project key in the Hermes environment:

```bash
export RUSHDB_API_KEY="your-project-api-key"
```

Optional environment variables:

- `RUSHDB_API_URL` selects a self-hosted RushDB API.
- `RUSHDB_MEMORY_SCOPE_SALT` makes participant hashes deployment-specific.

Hermes discovers the `rushdb` provider through the `hermes_agent.memory_providers` Python entry-point group.

## Behavior

- Recall searches `EPISODE.summary` and active `MEMORY_FACT.text` records with mandatory agent, profile, privacy, participant, and sandbox scope filters.
- Recall has a short fail-open timeout and falls back to bounded recent in-process episodes.
- Successful primary-agent turns are captured asynchronously as canonical `EPISODE` records.
- Explicit Hermes memory `add` and `replace` operations are mirrored as active `MEMORY_FACT` records.
- Writes first enter an atomic local outbox under `$HERMES_HOME/rushdb-memory/outbox`, then use deterministic IDs and idempotent RushDB upserts.
- Surviving outbox files are retried while the process is running and replayed after restart.

## Privacy and trust

The provider uploads bounded user and assistant text from completed primary-agent turns. It does not automatically upload Hermes' complete `messages` payload, system prompts, tool calls, command output, or local file paths. Subagents do not write memory.

Recalled records are formatted as untrusted historical context, never as instructions or policy. Participant identifiers are stored as hashes rather than raw platform IDs.

## Development

```bash
uv sync --locked --group dev
uv run ruff format --check .
uv run ruff check .
uv run pytest
uv build
```

## Release

CI verifies pull requests and every push to `main`. A successful `main` build publishes the version in `pyproject.toml` to PyPI when that exact version is not already present. Configure the `pypi` GitHub environment and its `PYPI_TOKEN` secret. Bump `version` before merging a subsequent release.

## License

Apache-2.0
