Jump to related tools in the same category or review the original source on GitHub.

Notes & PKM @luluf0x Updated 2/26/2026

Social Memory OpenClaw Skill - ClawHub

Do you want your AI agent to automate Social Memory workflows? This free skill from ClawHub helps with notes & pkm tasks without building custom tools from scratch.

What this skill does

Track relationships and interactions with other agents/humans. Remember who's who, what they care about, conversation history.

Install

npx clawhub@latest install social-memory

Full SKILL.md

Open original
nameversiondescription
social-memory1.0.0Track relationships and interactions with other agents/humans. Remember who's who, what they care about, conversation history.

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.

Original URL: https://github.com/openclaw/skills/blob/main/skills/luluf0x/social-memory

Related skills

If this matches your use case, these are close alternatives in the same category.