🧠 EchoFadeMemory

v2.0.0

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...

0· 195·0 current·0 all-time

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for hiparker/echo-fade-memory.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "🧠 EchoFadeMemory" (hiparker/echo-fade-memory) from ClawHub.
Skill page: https://clawhub.ai/hiparker/echo-fade-memory
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Use only the metadata you can verify from ClawHub; do not invent missing requirements.
Ask before making any broader environment changes.

Command Line

CLI Commands

Use the direct CLI path if you want to install manually and keep every step visible.

OpenClaw CLI

Bare skill slug

openclaw skills install echo-fade-memory

ClawHub CLI

Package manager switcher

npx clawhub@latest install echo-fade-memory
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
Name/description describe a thin memory layer and the repository contains only lightweight helpers (store/recall/forget wrappers), a hook that injects a reminder, and docs. The files and the behavior (talking to a base URL for store/recall/forget) align with the stated purpose.
Instruction Scope
Runtime instructions and scripts only perform JSON POST/GET calls to the configured memory service endpoints and emit reminder text. The scripts read two specific OpenClaw config paths (/Users/system/.openclaw/openclaw.json and /home/node/.openclaw/openclaw.json) only to find a configured baseUrl; they do not read arbitrary files or exfiltrate local file contents. Note: store.sh accepts a file path string for image memories but does not itself upload file contents — it sends the path/metadata to the memory service.
Install Mechanism
There is no install spec; the package is instruction-only with small local scripts and a JS hook. Nothing is downloaded or extracted from an external URL, and no package managers are invoked.
Credentials
The skill declares no required environment variables or credentials. It honors an optional EFM_BASE_URL which can point to localhost or another HTTP endpoint. If EFM_BASE_URL is set to an external server, store/recall/forget operations will transmit queries and memory payloads to that endpoint — this is expected for a memory service but users should ensure the endpoint is trusted.
Persistence & Privilege
always:false and no privileged installs are requested. The OpenClaw hook injects a virtual bootstrap reminder (modifies event.context.bootstrapFiles) which is consistent with a hook behavior. The skill can be invoked autonomously by the agent (platform default) — this is normal but raises the usual autonomous-invocation considerations.
Assessment
This skill appears to do what it says: it posts queries and small JSON payloads to an echo-fade-memory HTTP service and injects a bootstrap reminder into OpenClaw. Before installing, confirm the memory service base URL is trusted (EFM_BASE_URL or local 127.0.0.1). Avoid pointing EFM_BASE_URL at unknown remote servers (that would allow memory contents and queries to be sent off-host). Note that scripts send file path strings for images but do not upload file contents themselves; review your memory service implementation if you want content uploaded. If you don't want automatic prompt injections, don't enable the hook or avoid enabling the activator/error-detector hooks. If you need higher assurance, run the health-check against a local instance, inspect the memory-service server code, or keep the service bound to localhost.

Like a lobster shell, security has layers — review code before you run it.

latestvk979yz32a9ntndmy4mwtras5tn83bn1p
195downloads
0stars
2versions
Updated 1mo ago
v2.0.0
MIT-0

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 "<query>"
User states a durable preference / decision / correctionStore it immediately with ./scripts/store.sh "<content>" --summary "<summary>" --type <type>
User sends an image or screenshot worth keepingStore it with ./scripts/store.sh "<file-path>" --object-type image
Need old memory, image, or topic with one queryUse ./scripts/recall.sh "<query>"
User asks to delete wrong or obsolete memoryUse ./scripts/forget.sh "<query-or-id>"
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/<id>/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

Comments

Loading comments...