skills$openclaw/supermemory
clawdbot51-oss880

by clawdbot51-oss

supermemory – OpenClaw Skill

supermemory is an OpenClaw Skills integration for coding workflows. Store and retrieve memories using the SuperMemory API. Add content, search memories, and chat with your knowledge base.

880 stars4.0k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026coding

Skill Snapshot

namesupermemory
descriptionStore and retrieve memories using the SuperMemory API. Add content, search memories, and chat with your knowledge base. OpenClaw Skills integration.
ownerclawdbot51-oss
repositoryclawdbot51-oss/supermemory
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @clawdbot51-oss/supermemory
last updatedFeb 7, 2026

Maintainer

clawdbot51-oss

clawdbot51-oss

Maintains supermemory in the OpenClaw Skills directory.

View GitHub profile
File Explorer
6 files
.
scripts
add-memory.sh
1.5 KB
chat.sh
1.7 KB
search.sh
1.0 KB
_meta.json
282 B
SKILL.md
2.2 KB
SKILL.md

name: supermemory description: Store and retrieve memories using the SuperMemory API. Add content, search memories, and chat with your knowledge base. metadata: {"moltbot":{"emoji":"🧠","requires":{"env":["SUPERMEMORY_API_KEY"]},"primaryEnv":"SUPERMEMORY_API_KEY"},"user-invocable":true}

SuperMemory

Store, search, and chat with your personal knowledge base using SuperMemory's API.

Setup

Configure your SuperMemory API key:

export SUPERMEMORY_API_KEY="sm_oiZHA2HcwT4tqSKmA7cCoK_opSRFViNFNxbYqjkjpVNfjSPqQWCNoOBAcxKZkKBfRVVrEQDVxLWHJPvepxqwEPe"

Usage

Add a Memory

Add content to your memory store:

# Add a memory with content
supermemory add "Your memory content here"

# Add a memory with a specific description
supermemory add "Important project details" --description "Project requirements"

Search Memories

Search your stored memories:

supermemory search "search query"

Chat with Memories

Chat with your memory database:

supermemory chat "What do you know about my projects?"

Implementation

Add Memory

When user wants to store information:

bash /root/clawd/skills/supermemory/scripts/add-memory.sh "content" "description (optional)"

Search Memories

When user wants to find something in their memories:

bash /root/clawd/skills/supermemory/scripts/search.sh "query"

Chat with Memory Base

When user wants to query their memory database conversationally:

bash /root/clawd/skills/supermemory/scripts/chat.sh "question"

Examples

Store important information:

  • "Remember that my API key is xyz" → supermemory add "My API key is xyz" --description "API credentials"
  • "Save this link for later" → supermemory add "https://example.com" --description "Bookmarked link"

Find information:

  • "What did I save about Python?" → supermemory search "Python"
  • "Find my notes on the project" → supermemory search "project notes"

Query your knowledge:

  • "What do I know about the marketing strategy?" → supermemory chat "What do I know about the marketing strategy?"
  • "Summarize what I've learned about AI" → supermemory chat "Summarize what I've learned about AI"
README.md

No README available.

Permissions & Security

Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.

Requirements

  • OpenClaw CLI installed and configured.
  • Language: Markdown
  • License: MIT
  • Topics:

FAQ

How do I install supermemory?

Run openclaw add @clawdbot51-oss/supermemory in your terminal. This installs supermemory into your OpenClaw Skills catalog.

Does this skill run locally or in the cloud?

OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.

Where can I verify the source code?

The source repository is available at https://github.com/openclaw/skills/tree/main/skills/clawdbot51-oss/supermemory. Review commits and README documentation before installing.