Install
openclaw skills install tinmemProvides persistent memory management for storing, retrieving, updating, and deleting user-related information across conversations in OpenClaw AI.
openclaw skills install tinmemopenclaw-tinmem provides persistent memory capabilities for the OpenClaw AI assistant.
Search and retrieve relevant memories from past conversations.
Use this tool when:
Parameters:
query (required): Search query to find relevant memoriesscope: Memory namespace (default: "global")categories: Filter by category: profile, preferences, entities, events, cases, patternslimit: Max results (default: 10)level: Detail level - L0 (headline), L1 (summary), L2 (full content)Example:
{
"query": "user's preferred programming language",
"categories": ["profile", "preferences"],
"level": "L1"
}
Store new information as a persistent memory.
Use this tool when:
Parameters:
content (required): The information to storecategory (required): profile | preferences | entities | events | cases | patternsscope: Memory namespaceimportance: 0.0-1.0 (default: 0.5)tags: Keywords for searchabilityExample:
{
"content": "User is building a SaaS product called TaskFlow for project management, using Next.js 14 and PostgreSQL with Prisma",
"category": "entities",
"importance": 0.9,
"tags": ["taskflow", "nextjs", "postgresql", "saas"]
}
Remove memories that are no longer relevant or are incorrect.
Parameters:
id: Specific memory ID to deletequery: Search and delete matching memoriesscope: Limit deletion to this scopecategories: Limit deletion to these categoriesExample:
{
"query": "old job at previous company",
"categories": ["profile", "entities"]
}
Update an existing memory with corrected or additional information.
Parameters:
id (required): Memory ID to updatecontent: New full contentsummary: New summaryheadline: New headlineimportance: New importance scoretags: New tags (replaces existing)| Category | What to Store | Merge Behavior |
|---|---|---|
profile | User identity, role, expertise, demographics | Always merge |
preferences | Likes/dislikes, habits, recurring preferences | Topic-based merge |
entities | Projects, people, tools, organizations | Merge if same entity |
events | Decisions made, milestones, things that happened | Always append (never merge) |
cases | Problem-solution pairs, debugging sessions | Always append (never merge) |
patterns | Recurring workflows, methodologies, best practices | Merge if same pattern |
<agent-experience> tags