memory-setup

sundial-org/awesome-openclaw-skills · updated Apr 8, 2026

$npx skills add https://github.com/sundial-org/awesome-openclaw-skills --skill memory-setup
0 commentsdiscussion
summary

Configure persistent memory search for Moltbot/Clawdbot agents to retain context across sessions.

  • Add memorySearch config block with provider (Voyage, OpenAI, or local), sources (memory files and/or sessions), and relevance thresholds
  • Create a workspace structure with MEMORY.md for curated long-term facts and memory/logs/ for daily timestamped logs
  • Supports three embedding providers; Voyage recommended but local option available without API keys
  • Includes troubleshooting for common
skill.md

Memory Setup Skill

Transform your agent from goldfish to elephant. This skill helps configure persistent memory for Moltbot/Clawdbot.

Quick Setup

1. Enable Memory Search in Config

Add to ~/.clawdbot/clawdbot.json (or moltbot.json):

{
  "memorySearch": {
    "enabled": true,
    "provider": "voyage",
    "sources": ["memory", "sessions"],
    "indexMode": "hot",
    "minScore": 0.3,
    "maxResults": 20
  }
}

2. Create Memory Structure

In your workspace, create:

workspace/
├── MEMORY.md              # Long-term curated memory
└── memory/
    ├── logs/              # Daily logs (YYYY-MM-DD.md)
    ├── projects/          # Project-specific context
    ├── groups/            # Group chat context
    └── system/            # Preferences, setup notes

3. Initialize MEMORY.md

Create MEMORY.md in workspace root:

# MEMORY.md — Long-Term Memory

## About [User Name]
- Key facts, preferences, context

## Active Projects
- Project summaries and status

## Decisions & Lessons
- Important choices made
- Lessons learned

## Preferences
- Communication style
- Tools and workflows

Config Options Explained

Setting Purpose Recommended
enabled Turn on memory search true
provider Embedding provider "voyage"
sources What to index ["memory", "sessions"]
indexMode When to index "hot" (real-time)
minScore Relevance threshold 0.3 (lower = more results)
maxResults Max snippets returned 20

Provider Options

  • voyage — Voyage AI embeddings (recommended)
  • openai — OpenAI embeddings
  • local — Local embeddings (no API needed)

Source Options

  • memory — MEMORY.md + memory/*.md files
  • sessions — Past conversation transcripts
  • both — Full context (recommended)

Daily Log Format

Create memory/logs/YYYY-MM-DD.md daily:

# YYYY-MM-DD — Daily Log

## [Time] — [Event/Task]
- What happened
- Decisions made
- Follow-ups needed

## [Time] — [Another Event]
- Details

Agent Instructions (AGENTS.md)

Add to your AGENTS.md for agent behavior:

## Memory Recall
Before answering questions about prior work, decisions, dates, people, preferences, or todos:
1. Run memory_search with relevant query
2. Use memory_get to pull specific lines if needed
3. If low confidence after search, say you checked

Troubleshooting

Memory search not working?

  1. Check memorySearch.enabled: true in config
  2. Verify MEMORY.md exists in workspace root
  3. Restart gateway: clawdbot gateway restart

Results not relevant?

  • Lower minScore to 0.2 for more results
  • Increase maxResults to 30
  • Check that memory files have meaningful content

Provider errors?

  • Voyage: Set VOYAGE_API_KEY in environment
  • OpenAI: Set OPENAI_API_KEY in environment
  • Use local provider if no API keys available

Verification

Test memory is working:

User: "What do you remember about [past topic]?"
Agent: [Should search memory and return relevant context]

If agent has no memory, config isn't applied. Restart gateway.

Full Config Example

{
  "memorySearch": {
    "enabled": true,
    "provider": "voyage",
    "sources": ["memory", "sessions"],
    "indexMode": "hot",
    "minScore": 0.3,
    "maxResults": 20
  },
  "workspace": "/path/to/your/workspace"
}

Why This Matters

Without memory:

  • Agent forgets everything between sessions
  • Repeats questions, loses context
  • No continuity on projects

With memory:

  • Recalls past conversations
  • Knows your preferences
  • Tracks project history
  • Builds relationship over time

Goldfish → Elephant. 🐘

Discussion

Product Hunt–style comments (not star reviews)
  • No comments yet — start the thread.
general reviews

Ratings

4.572 reviews
  • Camila Liu· Dec 28, 2024

    memory-setup has been reliable in day-to-day use. Documentation quality is above average for community skills.

  • Carlos Wang· Dec 24, 2024

    memory-setup fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.

  • Ganesh Mohane· Dec 16, 2024

    Registry listing for memory-setup matched our evaluation — installs cleanly and behaves as described in the markdown.

  • Camila Wang· Dec 12, 2024

    memory-setup has been reliable in day-to-day use. Documentation quality is above average for community skills.

  • Nikhil Taylor· Nov 19, 2024

    Solid pick for teams standardizing on skills: memory-setup is focused, and the summary matches what you get after install.

  • Aarav Srinivasan· Nov 19, 2024

    We added memory-setup from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.

  • Anika Jackson· Nov 15, 2024

    memory-setup is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.

  • Sakshi Patil· Nov 7, 2024

    Keeps context tight: memory-setup is the kind of skill you can hand to a new teammate without a long onboarding doc.

  • Camila Li· Nov 3, 2024

    memory-setup reduced setup friction for our internal harness; good balance of opinion and flexibility.

  • Omar Harris· Nov 3, 2024

    Solid pick for teams standardizing on skills: memory-setup is focused, and the summary matches what you get after install.

showing 1-10 of 72

1 / 8