Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 11 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
</p>
<p align="center">
<a href="https://trendshift.io/repositories/15418">
<img src="https://trendshift.io/_next/image?url=https%3A%2F%2Ftrendshift.io%2Fapi%2Fbadge%2Frepositories%2F15418&w=640&q=75" alt="Memori%2fLabs%2FMemori | Trendshif">
<img src="https://trendshift.io/_next/image?url=https%3A%2F%2Ftrendshift.io%2Fapi%2Fbadge%2Frepositories%2F15418&w=640&q=75" alt="Memori%2fLabs%2FMemori | Trendshift">
</a>
</p>

Expand Down Expand Up @@ -63,7 +63,7 @@ npm install @memorilabs/memori
```
</details>

<details>
<details open>
<summary><b>Python SDK</b></summary>

```bash
Expand Down Expand Up @@ -106,7 +106,7 @@ async function main() {
```
</details>

<details>
<details open>
<summary><b>Python SDK</b></summary>

```python
Expand Down Expand Up @@ -153,16 +153,18 @@ Read the [benchmark overview](docs/memori-cloud/benchmark/overview.mdx), see the

## OpenClaw (Persistent Memory for Your Gateway)

By default, OpenClaw agents forget everything between sessions. The Memori plugin fixes that. It captures durable facts and preferences after each conversation, then injects the most relevant context back into future prompts automatically.
By default, OpenClaw agents forget everything between sessions. The Memori plugin fixes that. It automatically captures structured memory from conversation and agent execution after each turn — including tool calls, decisions, and outcomes — and makes it available for agents to recall on demand.

No changes to your agent code or prompts are required. The plugin hooks into OpenClaw's lifecycle, so you get structured memory, Intelligent Recall, and Advanced Augmentation with a drop-in plugin.
No changes to your agent code or prompts are required. The plugin hooks into OpenClaw's lifecycle, so you get structured memory, agent-controlled recall, and Advanced Augmentation with a drop-in plugin.

```bash
openclaw plugins install @memorilabs/openclaw-memori
openclaw plugins enable openclaw-memori

openclaw config set plugins.entries.openclaw-memori.config.apiKey "YOUR_MEMORI_API_KEY"
openclaw config set plugins.entries.openclaw-memori.config.entityId "your-app-user-id"
openclaw memori init \
--api-key "YOUR_MEMORI_API_KEY" \
--entity-id "your-app-user-id" \
--project-id "my-project"

openclaw gateway restart
```
Expand Down Expand Up @@ -218,7 +220,7 @@ mem.attribution("12345", "my-ai-bot");
```
</details>

<details>
<details open>
<summary><b>Python SDK</b></summary>

```python
Expand All @@ -242,7 +244,7 @@ mem.setSession(sessionId);
```
</details>

<details>
<details open>
<summary><b>Python SDK</b></summary>

```python
Expand Down
Loading