← 返回
未分类 中文

🧠 EchoFadeMemory

Runs a thin long-term memory workflow on top of the echo-fade-memory service. Use proactively whenever an answer may depend on prior session context, durable...
在 echo-fade-memory 服务上运行轻量级长期记忆工作流。在答案可能依赖先前会话上下文时主动使用,持久化...
hiparker hiparker 来源
未分类 clawhub v2.0.0 1 版本 100000 Key: 无需
★ 0
Stars
📥 539
下载
💾 0
安装
1
版本
#latest

概述

Echo Fade Memory

This skill turns echo-fade-memory into an installed agent memory operating layer.

The public agent contract is intentionally thin:

  • store
  • recall
  • forget

Image memory is folded into the same store/recall/forget contract. Dashboard and debugging routes live under /v1/dashboard/* and are not part of the agent-facing tool surface.

Natural Triggers in OpenClaw

Use this skill implicitly when the conversation includes:

  • remember this / 记住这个
  • what did we decide before / 上次定的是什么
  • user preferences, durable constraints, corrections
  • project decisions worth carrying across sessions
  • screenshots, diagrams, receipts, whiteboards, or UI states that may matter later
  • repeated failures that reveal a reusable workaround
  • elliptical continuity prompts such as 那个、这个、继续刚才的、你知道的
  • time-indexed prompts such as 今天、刚刚、最近、这次、又、还、还是、依然
  • continuity checks such as 你记得吗、你不是知道吗、你忘了?

Prefer over-triggering low-cost recall to under-triggering and answering as if no history exists.

If http://127.0.0.1:8080 is unreachable in a containerized environment, set:

export EFM_BASE_URL=http://host.docker.internal:8080

Quick Reference

SituationAction
-------------------
Start of a task or sessionRecall relevant context with ./scripts/recall.sh ""
User states a durable preference / decision / correctionStore it immediately with ./scripts/store.sh "" --summary "" --type
User sends an image or screenshot worth keepingStore it with ./scripts/store.sh "" --object-type image
Need old memory, image, or topic with one queryUse ./scripts/recall.sh ""
User asks to delete wrong or obsolete memoryUse ./scripts/forget.sh ""
Need debug analytics or dashboardsOpen /dashboard or call /v1/dashboard/*

Core Workflow

1. Recall Before Responding

Before answering about prior decisions, preferences, goals, screenshots, or unresolved issues:

./scripts/recall.sh "database choice for this project"

Inspect:

  • mixed
  • memories
  • images
  • entities

If a recalled memory is fuzzy, you can still ground it with GET /v1/memories//ground, but keep that as an internal troubleshooting path rather than the default agent contract.

2. Store Durable Facts Early

When the user says something durable, store it before moving on.

Recommended minimal memory shape:

  • content
  • summary
  • type
./scripts/store.sh \
  "User prefers dark mode and minimal UI" \
  --summary "dark mode preference" \
  --type preference

Advanced fields still exist, but only add them when you have a clear reason:

  • --importance
  • --ref
  • --kind
  • --conflict-group

Use higher importance only for:

  • preferences
  • corrections
  • project decisions
  • constraints
  • explicit "remember this" statements

3. Store Images Through the Same Entry

When the conversation includes a screenshot, whiteboard, receipt, or other durable visual artifact.

Recommended minimal image shape:

  • file_path or url
  • optional caption
  • optional tags
  • optional ocr_text
./scripts/store.sh \
  "/absolute/path/to/meeting-whiteboard.png" \
  --object-type image \
  --caption "meeting whiteboard about rollout" \
  --tag rollout \
  --ocr-text "Deployment Checklist"

Advanced image flags still exist, but they are not the default mental model:

  • --session
  • --kind
  • --actor
  • --memory-id
  • --url

Use image memory when the user is likely to ask:

  • "上次那张图"
  • "有猫那张图"
  • "包含某句话的截图"
  • "和那个决定相关的图片"

4. Forget Wrong or Obsolete State

If a memory or image is incorrect, unsafe, or obsolete:

./scripts/forget.sh "that obsolete deployment note"
./scripts/forget.sh "<image-id-or-query>" image

Memory Taxonomy

Situationmemory_typeNotes
---------------------------------
User preferencepreferenceUse high importance
Project decisionprojectAdd conflict_group for versioning
Goal / pending workgoalGood for future follow-ups
Error workaroundprojectPrefix summary with error: or learning:
Capability requestgoal or projectPrefix summary with feature-request:

Scripts

ScriptPurpose
-----------------
scripts/health-check.shVerify the server is reachable
scripts/store.shUnified store wrapper for memory and image objects
scripts/recall.shUnified federated recall wrapper
scripts/forget.shUnified forget wrapper for memory or image objects
scripts/activator.shHook reminder for recall/store discipline
scripts/error-detector.shHook reminder when command output looks like a failure

Setup

Service Availability

./scripts/health-check.sh

OpenClaw Config

Recommended entry in openclaw.json:

{
  "skills": {
    "entries": {
      "echo-fade-memory": {
        "baseUrl": "http://host.docker.internal:8080"
      }
    }
  }
}

Recommended precedence:

  1. EFM_BASE_URL
  2. skills.entries.echo-fade-memory.baseUrl
  3. default http://127.0.0.1:8080

版本历史

共 1 个版本

  • v2.0.0 当前
    2026-03-31 15:57 安全 安全

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

安全,无风险
查看报告

🔗 相关推荐

ai-agent

Agent Browser

rez0
用于 AI 代理的浏览器自动化 CLI。当用户需要与网站交互(包括浏览页面、填写表单、点击按钮、截图等)时使用。
★ 838 📥 313,352
ai-agent

self-improving agent

pskoett
捕获经验教训、错误及修正内容,以实现持续改进。适用于以下场景:(1)命令或操作意外失败;(2)用户纠正Claude(如“不,那不对……”“实际上……”);(3)用户请求的功能不存在;(4)外部API或工具出现故障;(5)Claude发现自身
★ 4,104 📥 829,493
ai-agent

Find Skills

guipi888
场景驱动+关键词双模式技能发现工具。当用户用自然语言描述场景/需求(如"我想做一个海报""帮我分析股票"),或明确说"安装技能/find skills/找个skill"时,自动从官方内置、本地已安装、SkillHub、虾评、GitHub、C
★ 1,468 📥 533,449