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

seekdb-memory查找数据库内存

Agent Skill

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

总安装

2,421

周安装

97

GitHub Stars

1

下载量

784
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install seekdb-memory

简介

OpenClaw 代理的云原生持久化记忆存储组件。

  • 自动捕获对话事实并在回复前检索相关上下文。
  • 混合搜索机制提升信息召回准确性。seekdb-memory 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 通过 clawhub 命令安装并集成至 OpenClaw 系统。
  • 记忆内容默认本地存储,敏感信息建议加密处理。

SKILL.md

name
seekdb-memory
version
0.2.1
description
Cloud-native persistent memory for OpenClaw agents. Auto-captures facts after conversations, auto-recalls relevant context before each reply. Hybrid search (vector + fulltext + RRF + rerank), query rewrite, experience learning — all behind one API key. Use this when the agent needs long-term memory, persistent context, or cross-session recall.
metadata
openclaw
emoji
🧠
requires
env
[]
plugins

SeekDB Memory — Cloud-Native Agent Memory

Persistent long-term memory for OpenClaw agents. Once the m0 plugin is installed, your agent automatically remembers facts across conversations and recalls relevant context before each reply.

What It Does

CapabilityHow It Works
Auto-CaptureAfter each conversation, extracts key facts via LLM and stores them in the cloud
Auto-RecallBefore each reply, searches for relevant memories and injects them as context
Hybrid SearchVector similarity (HNSW) + fulltext (BM25) + RRF fusion + rerank
Query RewriteResolves pronouns, splits compound questions, expands keywords
Experience LearningDistills successful tool-use patterns into reusable recipes
Cross-DeviceCloud-native — memories are available from any device, no sync needed

Memory Tools

Use these tools to manage the agent's long-term memory:

memory_recall

Search memories by semantic similarity. Returns the most relevant memories.

memory_recall query="user's preferred programming language" limit=5

Use when:

  • The user asks about something discussed in a previous conversation
  • You need context about user preferences, past decisions, or facts
  • The user references something with "last time", "before", "remember when"

memory_store

Save an important fact, preference, or decision to long-term memory.

memory_store text="User prefers TypeScript over JavaScript for all new projects" metadata={"category": "preference", "importance": 0.9}

Use when:

  • The user states a preference ("I always use...", "I prefer...")
  • A decision is made ("Let's go with...", "We decided...")
  • The user corrects you ("Actually, it's...", "No, I meant...")
  • Important facts are shared (deadlines, names, project details)

memory_forget

Delete a specific memory by ID.

memory_forget id=42

Use when:

  • The user asks to forget something
  • A memory is outdated or incorrect
  • Cleaning up duplicate memories

Automatic Behavior

With default configuration, the agent does NOT need to call tools manually for basic memory operations:

  1. Before each conversation: The m0 plugin automatically searches for relevant memories based on the user's message and injects them as context. The agent sees them as <relevant-memories> in the prompt.
  1. After each conversation: The m0 plugin automatically extracts key facts from the conversation and stores them. No manual memory_store needed for routine facts.
  1. Manual tools are for explicit user requests ("remember this", "forget that", "what did I say about X?").

Experience System

The m0 plugin tracks successful tool-use patterns and distills them into reusable experiences.

experience_detail

View the full description of a distilled experience.

experience_detail id=7

Experiences are automatically injected alongside memories when relevant. They help the agent avoid repeating mistakes and reuse proven approaches.

Best Practices

  1. Don't over-store: Auto-capture handles routine facts. Only use memory_store for high-importance items the user explicitly wants remembered.
  2. Use metadata: Add category (preference, decision, fact, deadline) and importance (0.0-1.0) to help with retrieval.
  3. Trust auto-recall: Don't call memory_recall at the start of every conversation — the plugin already injects relevant context automatically.
  4. Respect forget requests: When a user says "forget X", use memory_forget immediately.

Setup

If the m0 plugin is not yet installed, run the setup skill:

/openclaw-m0-setup

Or install manually:

openclaw add m0

Then configure in ~/.openclaw/openclaw.json:

{
  "plugins": {
    "entries": {
      "m0": {
        "enabled": true,
        "config": {
          "apiKey": "ak_your_key_here",
          "baseUrl": "https://your-endpoint",
          "autoCapture": true,
          "autoRecall": true,
          "recallLimit": 10
        }
      }
    }
  }
}

Requirements

  • OpenClaw >= 2026.2.2
  • m0 plugin installed and configured with a valid API key

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

86.22%
按下载量换算676

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills