memory-setupEnable and configure Moltbot/Clawdbot memory search for persistent context. Use when setting up memory, fixing "goldfish brain," or helping users configure memorySearch in their config. Covers MEMORY.md, daily logs, and vector search setup.
Install via ClawdBot CLI:
clawdbot install jrbobbyhansen-pixel/memory-setupTransform your agent from goldfish to elephant. This skill helps configure persistent memory for Moltbot/Clawdbot.
Add to ~/.clawdbot/clawdbot.json (or moltbot.json):
{
"memorySearch": {
"enabled": true,
"provider": "voyage",
"sources": ["memory", "sessions"],
"indexMode": "hot",
"minScore": 0.3,
"maxResults": 20
}
}
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
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
| 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 |
voyage ā Voyage AI embeddings (recommended)openai ā OpenAI embeddingslocal ā Local embeddings (no API needed)memory ā MEMORY.md + memory/*.md filessessions ā Past conversation transcriptsboth ā Full context (recommended)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
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
memorySearch.enabled: true in configclawdbot gateway restartminScore to 0.2 for more resultsmaxResults to 30VOYAGE_API_KEY in environmentOPENAI_API_KEY in environmentlocal provider if no API keys availableTest 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.
{
"memorySearch": {
"enabled": true,
"provider": "voyage",
"sources": ["memory", "sessions"],
"indexMode": "hot",
"minScore": 0.3,
"maxResults": 20
},
"workspace": "/path/to/your/workspace"
}
Without memory:
With memory:
Goldfish ā Elephant. š
Generated Mar 1, 2026
A customer support team integrates memory setup to enable AI agents to recall past customer interactions and preferences, reducing repetitive questions and providing personalized assistance. This improves resolution times and customer satisfaction by maintaining context across sessions.
A project management team uses memory setup to track project histories, decisions, and lessons learned in MEMORY.md and daily logs. This helps AI agents provide consistent updates and recommendations based on past data, enhancing team collaboration and project continuity.
An individual or small business employs memory setup to log daily tasks, preferences, and goals, allowing an AI agent to offer tailored advice and reminders. This supports habit tracking and long-term planning by leveraging persistent memory for personalized insights.
An educational platform integrates memory setup to store student progress, learning preferences, and past lessons in memory files. This enables AI tutors to adapt teaching methods and recall previous interactions, providing a customized and continuous learning experience.
A healthcare provider uses memory setup to maintain logs of patient interactions, treatment plans, and preferences in a secure workspace. This helps AI assistants recall patient history and provide consistent follow-up care, improving patient engagement and outcomes.
Offer memory setup as a premium feature in a subscription-based AI agent platform, charging monthly or annual fees for enhanced memory capabilities. This generates recurring revenue by targeting businesses needing persistent context for customer support or project management.
Provide consulting services to help organizations integrate and customize memory setup for their specific workflows, such as configuring MEMORY.md and daily logs. Revenue comes from one-time project fees or ongoing support contracts tailored to client needs.
Offer a basic memory setup for free with limited features, then upsell advanced options like higher maxResults or premium embedding providers (e.g., Voyage AI) through API usage fees. This attracts users with a free tier and monetizes through usage-based pricing.
š¬ Integration Tip
Start by enabling memorySearch in the config file and creating a basic MEMORY.md structure to test functionality before scaling to daily logs and advanced sources.
Captures learnings, errors, and corrections to enable continuous improvement. Use when: (1) A command or operation fails unexpectedly, (2) User corrects Clau...
Helps users discover and install agent skills when they ask questions like "how do I do X", "find a skill for X", "is there a skill that can...", or express interest in extending capabilities. This skill should be used when the user is looking for functionality that might exist as an installable skill.
Search and analyze your own session logs (older/parent conversations) using jq.
Typed knowledge graph for structured agent memory and composable skills. Use when creating/querying entities (Person, Project, Task, Event, Document), linking related objects, enforcing constraints, planning multi-step actions as graph transformations, or when skills need to share state. Trigger on "remember", "what do I know about", "link X to Y", "show dependencies", entity CRUD, or cross-skill data access.
Ultimate AI agent memory system for Cursor, Claude, ChatGPT & Copilot. WAL protocol + vector search + git-notes + cloud backup. Never lose context again. Vibe-coding ready.
Headless browser automation CLI optimized for AI agents with accessibility tree snapshots and ref-based element selection