Back to Registry
View Author Profile
Official Verified
Memos Search
Skill by hope7709
skill-install — Terminal
Install via CLI (Recommended)
clawhub install openclaw/skills/skills/hope7709/memos-searchOr
name: memos description: Use MemOS API for memory operations. Use when: (1) user asks to save/store/remember something to memory, (2) user asks to read/retrieve memory, (3) user wants to list/delete memory files, (4) replacing OpenClaw's default memory with MemOS.
MemOS - External Memory Service
MemOS provides persistent memory storage via REST API.
API Base URL
{{MEMOS_API_URL}}
Available Endpoints
Add Memory
POST /add
Body: {"content": "...", "source": "agent/filename.md"}
Read Memory
GET /read/{agent}/{filename}
List Memories
GET /memories
Search Memories
POST /search
Body: {"query": "...", "top_k": 3}
Delete Memory
DELETE /delete/{agent}/{filename}
List Agents
GET /agents
Health Check
GET /health
Usage Examples
Add memory:
import requests
requests.post('{{MEMOS_API_URL}}/add', json={
'content': '咖啡大佬今天教我使用MemOS',
'source': 'alin/2026-02-23.md'
})
Read memory:
import requests
r = requests.get('{{MEMOS_API_URL}}/read/alin/2026-02-23.md')
print(r.json()['content'])
Search memory:
import requests
r = requests.post('{{MEMOS_API_URL}}/search', json={
'query': '咖啡大佬教了什么',
'top_k': 3
})
for item in r.json():
print(f"{item['source']}: {item['score']}")
Delete memory:
import requests
requests.delete('{{MEMOS_API_URL}}/delete/alin/2026-02-23.md')
List all agents:
import requests
r = requests.get('{{MEMOS_API_URL}}/agents')
for agent in r.json()['agents']:
print(f"{agent['name']}: {agent['file_count']} files")
Notes
- Use Python
requestslibrary for API calls - Always use
json=parameter (not raw body) for POST requests - File path format:
{agent}/{filename}.md - API returns JSON with
contentfield for read operations - Delete removes both file and vector index
- Run MemOS server:
python D:\AI\MemOS\api_server.py
Metadata
AI Skill Finder
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 skill Add to Configuration
Paste this into your clawhub.json to enable this plugin.
{
"plugins": {
"official-hope7709-memos-search": {
"enabled": true,
"auto_update": true
}
}
}Safety NoteClawKit audits metadata but not runtime behavior. Use with caution.