Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计通过

memorimemori 搜索

Agent Skill

memori 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

10,234

周安装

410

GitHub Stars

1

下载量

3,313
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:memori(memori 搜索)
来源仓库:https://github.com/rpkruse/memori
安装命令:
openclaw skills install memori
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install memori

简介

使用 Memori SDK 的 OpenClaw 代理的长期记忆。自动捕获对话并智能地回忆跨会话的上下文。

SKILL.md

name
memori
id
@memorilabs/openclaw-memori
description
Long-term memory for OpenClaw agents using the Memori SDK. Automatically captures conversations and equips the agent with explicit tools to recall context across sessions.
license
MIT
compatibility
metadata
openclaw
requires
env
bins
primaryEnv
MEMORI_API_KEY
externalServices

Memori - Structured Long-term Memory for OpenClaw

Give your OpenClaw agents a persistent, structured memory system. Memori automatically captures what happens in the background and gives agents the tools to bring it back when relevant.

Core Workflow

Memori operates on two parallel tracks through OpenClaw lifecycle hooks:

1. Automatic Capture (Advanced Augmentation)

After the agent responds, Memori automatically:

  1. Captures the conversation turn (user + assistant)
  2. Sends it to the Memori backend for intelligent processing
  3. Extracts durable facts, deduplicates, and updates the knowledge graph.

_(No manual save commands needed - capture just works)._

2. Agent-Controlled Recall (Intelligent Retrieval)

Memori does not blindly stuff the context window. Instead, it equips the agent with explicit tools to retrieve history exactly when it needs it:

  1. memori_recall: Searches the structured memory graph for specific facts, constraints, and prior decisions.
  2. memori_recall_summary: Retrieves structured daily briefs and rolling summaries of prior sessions.
  3. memori_feedback: Reports on memory quality to improve extraction accuracy.

Installation

openclaw plugins install @memorilabs/openclaw-memori

Configuration

Add to your ~/.openclaw/openclaw.json or use the openclaw memori init CLI command:

openclaw memori init \
  --api-key "YOUR_MEMORI_API_KEY" \
  --entity-id "your-entity-id" \
  --project-id "your-project-id"

Alternatively, configure it directly via JSON:

{
  "plugins": {
    "entries": {
      "openclaw-memori": {
        "enabled": true,
        "config": {
          "apiKey": "${MEMORI_API_KEY}",
          "entityId": "openclaw-user",
          "projectId": "default-project"
        }
      }
    }
  }
}

Configuration Options

  • apiKey (required): Your Memori API key from memorilabs.ai
  • entityId (required): Unique identifier for this user's memories
  • projectId (required): Scopes all memories to a specific project or workspace

Agent Instructions & Skill Rules

When this plugin is active, the OpenClaw agent is bound by the following strict behavioral rules injected into its system prompt:

  • Manual Recall (IMPORTANT): The agent does NOT automatically receive context from past sessions. It is explicitly instructed: "You must NEVER say 'I don't know' about the user, their preferences, or past events without FIRST running a memori_recall search to check if you remember it."
  • Summaries: If a user asks "what did we do last time" or "give me a summary", the agent MUST use memori_recall_summary before answering. It is forbidden from guessing project status.
  • Feedback: The agent MUST use the memori_feedback tool immediately if the user asks to send feedback, report a bug, or suggests a feature.
  • Date Defaults: If the agent searches memory but omits start/end dates, the search defaults to all-time memory.

Verification

Check that the plugin is working:

# Verify plugin is securely connected to the API
openclaw memori status --check

# Check for Memori logs in gateway output
openclaw gateway logs --filter "[Memori]"

Quota Management

Check your current API quota:

memori quota

Example output:

 __  __                           _
|  \/  | ___ _ __ ___   ___  _ __(_)
| |\/| |/ _ \ '_ ` _ \ / _ \| '__| |
| |  | |  __/ | | | | | (_) | |  | |
|_|  |_|\___|_| |_| |_|\___/|_|  |_|
                  perfectam memoriam
                       memorilabs.ai

+ Maximum # of Memories: 100
+ Current # of Memories: 0

+ You are not currently over quota.

Use this to monitor usage and upgrade if needed.

Performance

  • Automatic deduplication prevents memory bloat
  • Agent-controlled retrieval ensures token usage remains targeted, compact, and actionable
  • Semantic ranking ensures relevant memories surface first

Privacy & Data Handling

Transparent data flow:

  • ✅ Conversations sent to Memori backend (https://api.memorilabs.ai)
  • ✅ Data encrypted in transit and at rest
  • ✅ You control data via your API key and entityId
  • ✅ No third-party sharing
  • ⚠️ Only install if you trust Memori with conversation data

Backend automatically filters sensitive data (API keys, passwords, secrets).

For details: Memori Privacy Policy

Memory Persistence

Memories persist across:

  • Session restarts
  • Gateway restarts
  • System reboots
  • OpenClaw upgrades

All storage is handled by the Memori backend and is scoped safely alongside your local MEMORY.md file without overwriting it.

Troubleshooting

Plugin not loading:

  • Verify enabled: true in openclaw.json
  • Check API key: echo $MEMORI_API_KEY
  • Restart gateway: openclaw gateway restart

No memories captured:

  • Check gateway logs for [Memori] errors
  • Verify API endpoint reachable
  • Test API key: memori quota

Memories not recalled:

  • Did the agent actually use the tool? Check your gateway logs for memori_recall tool execution. If it didn't use the tool, explicitly ask it to search its memory.
  • Ensure entityId and projectId are consistent across sessions.
  • Verify memories exist: memori quota shows count > 0.

Quota exceeded:

  • Run memori quota to check usage
  • Upgrade at memorilabs.ai
  • Or clear old memories via dashboard

Learn More

  • npm Package: https://www.npmjs.com/package/@memorilabs/openclaw-memori
  • GitHub: https://github.com/MemoriLabs/Memori
  • Documentation: https://memorilabs.ai/docs/memori-cloud/openclaw/overview/
  • API Dashboard: https://app.memorilabs.ai/
  • Support: GitHub Issues

Notes

This skill teaches the agent about the Memori plugin. The plugin must be installed separately via npm. Once installed, memory capture happens automatically in the background, and the agent is empowered to explicitly query its memories when needed.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

94.09%
按下载量换算3,117

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills