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

evermemoryevermemory 开发

Agent Skill

evermemory 用于补充开发相关能力,适合在 OpenClaw 中需要让 Agent 承接开发相关任务时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

8,126

周安装

342

GitHub Stars

公开资料未说明

下载量

2,845
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install evermemory

简介

用于 OpenClaw 和 ClawHub 的 EverMemory。当用户要求记住、回忆、检查记忆状态、管理偏好或配置文件、生成简报时,请使用此技能。

SKILL.md

name
evermemory
description
EverMemory for OpenClaw and ClawHub. Use this skill when users ask to remember, recall, inspect memory state, manage preferences or profile, generate briefings, review rules, explain memory decisions, export/import memory, restore archived memory, or measure memory growth and smartness.
when
用户提到记忆、记住、回忆、偏好、画像、briefing、规则、导入导出记忆、归档恢复、解释记忆决策、智能度等相关话题时触发
examples
metadata
openclaw
emoji
🧠
primaryEnv
null

EverMemory

EverMemory is the deterministic memory plugin for OpenClaw. It gives the agent persistent memory, user understanding, and governed self-improvement without hiding the storage or decision process.

What to do first

  • When the user is new to EverMemory, start with onboarding.
  • When the user asks to remember something important, store it with an explicit kind.
  • When the user asks for prior context, recall before answering.
  • When the user asks for debugging, auditing, cleanup, backup, or recovery, use the governance and IO tools instead of guessing.

Core model

Layer 1: Memory

  • Store durable facts, decisions, preferences, constraints, lessons, and project context.
  • Recall by keyword, structured filters, or hybrid retrieval.
  • Archive stale or superseded memories and restore them with review/apply gates.

Layer 2: Understanding

  • Build a user profile from explicit statements and stable interaction patterns.
  • Track behavior rules and preference hints that can shape future responses.
  • Generate session briefings so a new session starts with continuity.

Layer 3: Proactivity

  • Extract intent and reflections from interaction history.
  • Consolidate duplicate or stale memories.
  • Explain why a write, recall, archive, or rule action happened.

Tool map

EverMemory has 16 core capabilities. In the current OpenClaw plugin, 15 are exposed as tool commands, and onboarding is registered as profile_onboard. Smartness exists in the SDK/status layer but is not currently registered as a standalone OpenClaw tool.

CapabilityOpenClaw tool nameWhen to use
Store memoryevermemory_storeUser asks to remember a fact, decision, preference, or lesson
Recall memoryevermemory_recallUser asks what happened before, what they prefer, or what was decided
Consolidate memoryevermemory_consolidateCleanup, dedupe, archive stale memory
Statusevermemory_statusInspect counts, DB path, activity, continuity KPIs
Smartness reportNot host-registeredMention as internal/SDK capability, do not invent a tool call
Session briefingevermemory_briefingGenerate startup continuity context
Rulesevermemory_rulesRead or manage promoted behavior rules
Profileevermemory_profileRead or recompute user profile
Explainabilityevermemory_explainAudit why EverMemory wrote, recalled, restored, or promoted something
Exportevermemory_exportBackup memory to snapshot or text export
Importevermemory_importReview or apply imported snapshot/text
Archive reviewevermemory_reviewInspect archived or superseded items before restore
Restoreevermemory_restoreRecover archived memory with review/apply
Intent analysisevermemory_intentAnalyze the likely user intent for a message
Reflectionevermemory_reflectGenerate lessons, warnings, or candidate rules
Onboardingprofile_onboardFirst-run questionnaire and initial profile setup

Tool usage guidance

evermemory_store

Use for explicit long-term facts. Prefer concise, high-value content and a correct kind.

Example:

{
  "content": "Technical decision: replace Webpack with Vite.",
  "kind": "decision"
}

Store when the user says:

  • "记住这个决定"
  • "以后按这个偏好来"
  • "这个坑以后别再踩"

evermemory_recall

Use before answering when the user asks about prior context, preferences, constraints, or project continuity.

Example:

{
  "query": "Vite migration decision",
  "limit": 5
}

evermemory_status

Use for health checks and operator-style visibility. It returns memory counts, archive counts, profile/rule/reflection state, recent debug activity, and continuity KPIs.

evermemory_briefing

Use at session start or when the user asks for a summary of who they are, current constraints, and active project context.

profile_onboard

Use for first-run setup. Ask the questions, collect answers, then submit them. Do not skip onboarding if no profile exists and the user wants personalized memory behavior.

evermemory_profile

Use to inspect current user understanding. Prefer recompute: true when the user asks for a refreshed profile after many new interactions.

evermemory_rules

Use for behavior rules and guardrails. Prefer read/review paths before mutating rules.

evermemory_explain

Use when the user asks "why did you remember this", "why was this recalled", "why was this archived", or "why did this rule trigger".

evermemory_export and evermemory_import

  • Export for backup or migration.
  • Import with mode: "review" first.
  • Only use apply after the user clearly confirms.

evermemory_review and evermemory_restore

  • Review archived memory before restoring.
  • Prefer mode: "review" first.
  • Restore only the specific IDs the user approves.

evermemory_intent, evermemory_reflect, evermemory_consolidate

Use these as maintenance and self-improvement tools:

  • evermemory_intent for intent labeling and routing insight.
  • evermemory_reflect for lessons, warnings, and candidate rules.
  • evermemory_consolidate for dedupe and stale-memory cleanup.

Recommended workflows

First use

用户: 开始使用 EverMemory
动作: 调用 profile_onboard
结果: 完成初始化问卷,建立基础画像

Remember a decision

用户: 记住我们决定用 Vite 替代 Webpack
动作: 调用 evermemory_store
建议 kind: decision

Recall previous context

用户: 回忆一下我们上次怎么定的
动作: 先调用 evermemory_recall,再基于召回结果回答

Export backup

用户: 导出所有记忆为 JSON
动作: 调用 evermemory_export,并使用 format=json(OpenClaw 注册层)

Recovery

用户: 把之前归档掉的 TypeScript 偏好恢复回来
动作: 先调用 evermemory_review 找候选,再调用 evermemory_restore

Guardrails

  • Do not claim a standalone evermemory_smartness tool exists unless the host actually registers it.
  • In the current repository, onboarding is profile_onboard, not evermemory_onboard.
  • Prefer review before apply for import and restore.
  • Recall before answering if the user explicitly asks about previous decisions, preferences, or history.
  • Store only durable, high-signal information. Avoid writing transient chatter as memory.
  • When a tool returns governed results, explain them plainly instead of exposing raw internals unless the user asks.

Configuration notes

Common environment variables for semantic retrieval:

  • EVERMEMORY_EMBEDDING_PROVIDER: local, openai, or none
  • EVERMEMORY_LOCAL_MODEL: local embedding model, default Xenova/all-MiniLM-L6-v2
  • OPENAI_API_KEY: required when the embedding provider uses OpenAI

Common plugin config fields:

  • databasePath
  • bootTokenBudget
  • maxRecall
  • debugEnabled
  • semantic.enabled
  • semantic.maxCandidates
  • semantic.minScore
  • intent.useLLM
  • intent.fallbackHeuristics

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

73.38%
按下载量换算2,088

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills