basic-memory
Gives your OpenClaw agent persistent memory across conversations by organizing entries in the native MEMORY.md and daily memory files. Automatically loads saved context at session start and saves important facts, decisions, and preferences during conversation. Use this skill whenever users say 'remember this', 'save this', 'don't forget', 'note that', 'what do you remember', 'forget [topic]', or when you detect they've shared something worth keeping — even if they don't explicitly ask. Also activate automatically at the start of every new session to load prior context.
Install via CLI (Recommended)
clawhub install openclaw/skills/skills/billyhetech/basic-memoryBasic Memory
Purpose
OpenClaw already stores memory in ~/.openclaw/workspace/MEMORY.md and loads it automatically at session start. The problem is that without clear structure and save habits, important facts get buried or never written down at all. This skill teaches the agent exactly what to save, where to put it, and how to retrieve it — so memory actually works in practice.
Storage Layout
All readable memory lives under the workspace:
~/.openclaw/workspace/
├── MEMORY.md ← long-term facts, loaded every session
└── memory/
└── YYYY-MM-DD.md ← daily log, today + yesterday auto-loaded
Do not write to
~/.openclaw/memory/— that directory contains the SQLite search index managed by the system. Only the workspace files are yours to read and write.
MEMORY.md Structure
Organize MEMORY.md into four sections. Create any missing section on first write.
## Facts
- [2026-04-09] User's name is Billy. Works as an AI engineer at a startup.
## Preferences
- [2026-04-09] Prefers concise replies. Dislikes unnecessary preamble.
## Action Items
- [ ] [2026-04-09] Follow up on API integration by Friday.
- [x] [2026-04-08] Send draft proposal to team. (done)
## Learned
- [2026-04-09] User tends to work late evenings, often picks up mid-task next day.
Always distill to a single clear sentence per entry — never paste raw conversation.
On Session Start
OpenClaw auto-loads MEMORY.md plus today's and yesterday's daily files. Use this loaded context immediately — no tool call needed. Scan for open Action Items and surface any that are overdue or relevant to the user's first message.
Auto-Save During Conversation
Detect and save without being asked when the user shares:
| Signal | Section | File |
|---|---|---|
| Name, job, company, location, family | ## Facts | MEMORY.md |
| "I prefer…", "I hate…", "always use…" | ## Preferences | MEMORY.md |
| "I decided to…", "let's go with…", deadlines | ## Action Items | MEMORY.md |
| Project names, key people, recurring context | daily log | memory/YYYY-MM-DD.md |
| Patterns you've noticed about the user | ## Learned | MEMORY.md |
After auto-saving, confirm briefly in one line: "Noted: [distilled fact]."
Retrieving Memory
Use the built-in tools when searching:
memory_search("query")— semantic search across all workspace memory files. Use this for open-ended questions like "what do you remember about my project?"memory_get("MEMORY.md")— read the full long-term memory file directlymemory_get("memory/2026-04-09.md")— read a specific daily log
Prefer memory_search for retrieval; use memory_get when you need a full file read or a specific line range.
Explicit Commands
"Remember this" / "Save this"
- Confirm: "Got it, I'll remember: [one-line summary]"
- Write to the appropriate section
Metadata
Not sure this is the right skill?
Describe what you want to build — we'll match you to the best skill from 16,000+ options.
Find the right skillPaste this into your clawhub.json to enable this plugin.
{
"plugins": {
"official-billyhetech-basic-memory": {
"enabled": true,
"auto_update": true
}
}
}Related Skills
smart-summarizer
Summarizes URLs, articles, YouTube videos, PDFs, and pasted text into a structured digest with TL;DR, key takeaways, and action items. Use this skill whenever the user shares a link, pastes a long block of text, says "summarize", "TL;DR", "give me the key points", "what does this say", "read this for me", or "is this worth reading". Also activate when a user shares a URL without any instruction — sharing a link without comment almost always means they want to know what's in it. Supports English and Chinese content.
openclaw-hardening
Audit and harden an OpenClaw installation for common security misconfigurations. Covers non-loopback binding, exposed gateway listeners, root or Administrator execution, missing authentication, overly permissive tool policies, open DM access, plaintext API keys, and insecure file permissions. Use this skill whenever the user asks to secure OpenClaw, review a first-time setup, check whether a config is safe, audit local exposure, fix risky defaults before installing more skills, or asks "is my openclaw setup safe", "openclaw config audit", or "harden openclaw". Proactively offer to run this audit whenever the user mentions setting up or reconfiguring OpenClaw.
personal-context
Builds a personal profile for your OpenClaw agent so it knows your name, role, timezone, goals, and communication style. Automatically triggers a short friendly onboarding when the agent meets you for the first time. Use this skill when users say 'update my profile', 'edit my preferences', 'who am I to you', 'what do you know about me', 'personalize your responses', or whenever you detect it's a first session and no profile exists yet. Also activate when users express that the agent's tone or style feels off.
skill-scanner
Security-first skill vetting for AI agents on OpenClaw and Claude Code. Scans any SKILL.md for malicious patterns, permission abuse, prompt injection, and ClawHavoc attack vectors — then gives a clear Safe / Caution / Danger verdict. Use this skill whenever the user wants to install, review, vet, or audit a skill from ClawHub, GitHub, or any other source; asks "is this skill safe?", "should I install this?", "scan/check/vet this skill", "review skill before installing"; shares a SKILL.md file or skill URL; or pastes skill content for evaluation. Proactively offer to scan any skill the user mentions installing, even if they don't explicitly ask for a security check.
permission-guard
Security watchdog for OpenClaw agents that monitors installed skill behavior, detects unauthorized file access, suspicious outbound network calls, dangerous command patterns, and generates permission audit reports. Use this skill whenever the user asks about agent activity ("what did my agent do", "check what my skill accessed", "monitor agent permissions", "permission report", "activity log", "did my agent do anything weird", "skill behavior audit", "what files did my agent touch"), after installing a new skill to establish a behavior baseline, or when suspicious or unexpected behavior is suspected. Trigger proactively after any skill installation — a first-run baseline check is always worthwhile.