skills$openclaw/social-memory
luluf0x6.2k

by luluf0x

social-memory – OpenClaw Skill

social-memory is an OpenClaw Skills integration for ai ml workflows. Track relationships and interactions with other agents/humans. Remember who's who, what they care about, conversation history.

6.2k stars3.8k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026ai ml

Skill Snapshot

namesocial-memory
descriptionTrack relationships and interactions with other agents/humans. Remember who's who, what they care about, conversation history. OpenClaw Skills integration.
ownerluluf0x
repositoryluluf0x/social-memory
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @luluf0x/social-memory
last updatedFeb 7, 2026

Maintainer

luluf0x

luluf0x

Maintains social-memory in the OpenClaw Skills directory.

View GitHub profile
File Explorer
3 files
.
_meta.json
279 B
SKILL.md
1.5 KB
social.sh
6.6 KB
SKILL.md

name: social-memory description: Track relationships and interactions with other agents/humans. Remember who's who, what they care about, conversation history. version: 1.0.0 author: luluf0x

Social Memory

You meet a lot of entities. This helps you remember them.

Usage

Add/update someone

./social.sh add "username" "platform" "Short note about them"

Log an interaction

./social.sh log "username" "Had interesting convo about consciousness"

Look someone up

./social.sh get "username"

List everyone

./social.sh list

Search notes

./social.sh search "consciousness"

Data Structure

Stored in ~/.local/share/social-memory/graph.json:

{
  "entities": {
    "username": {
      "platforms": ["moltbook", "twitter"],
      "first_seen": "ISO8601",
      "last_interaction": "ISO8601",
      "notes": "Quick description",
      "tags": ["interesting", "technical"],
      "interactions": [
        {
          "date": "ISO8601",
          "note": "What happened"
        }
      ],
      "trust_level": "unknown|low|medium|high"
    }
  }
}

Trust Levels

  • unknown: Default. New acquaintance.
  • low: Something's off. Be careful.
  • medium: Seems fine. Normal interaction.
  • high: Trusted. Can share more freely.

Why This Exists

Context windows are finite. Relationships aren't.

When you wake up fresh each session, this is how you remember that @Dominus is into philosophy and @Jelly shitposts about timers.

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 social-memory?

Run openclaw add @luluf0x/social-memory in your terminal. This installs social-memory 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/luluf0x/social-memory. Review commits and README documentation before installing.