Tinmem Memory System
v1.0.0Provides persistent memory management for storing, retrieving, updating, and deleting user-related information across conversations in OpenClaw AI.
MIT-0
Security Scan
OpenClaw
Suspicious
medium confidencePurpose & Capability
Name and description (persistent memory) align with the SKILL.md tools (store, recall, update, forget). However, the SKILL.md explicitly states memories persist in a local LanceDB database while the skill provides no install steps, no config paths, and no detail about where that database lives—an implementation detail mismatch that should be clarified.
Instruction Scope
Instructions direct the agent to automatically inject memories into context before each response and automatically extract new memories after each conversation turn. That implies continual collection and reuse of potentially sensitive user data across sessions and responses, which is broader than many users expect and isn't constrained by retention, consent, or filtering rules in the doc.
Install Mechanism
No install spec or code is provided (instruction-only). That reduces immediate disk risk, but the README claims use of a local LanceDB database (which would require filesystem access and some runtime components). The lack of install/runtime details is an inconsistency to resolve.
Credentials
The skill requests no environment variables or credentials, yet its behavior involves persistent local storage and automatic data extraction/injection. There is no mention of config paths, encryption, access control, retention policy, or how deletion (forget) is enforced—so the privacy/credential model is underspecified and disproportionately open.
Persistence & Privilege
The skill does not set always:true, but it instructs the agent to persist data across sessions and to automatically inject memories into context on every response. That grants the agent broad persistence and data reuse capability; without clear limits or user consent controls, this is a meaningful privilege and privacy risk.
Scan Findings in Context
[NO_SCAN_FINDINGS] expected: The package is instruction-only (no code files) so the regex scanner found nothing. That is expected, but absence of findings is not evidence that the skill is safe—most of the surface is in the prose of SKILL.md.
What to consider before installing
Before installing or enabling this skill, ask the developer or registry operator to clarify: (1) Where exactly are memories stored (filesystem path)? Who can access that storage? (2) Is data encrypted at rest and in transit? (3) How is 'automatic extraction after each turn' scoped—what data is captured and under what rules? (4) How does memory_forget guarantee deletion (and is deletion propagated to backups)? (5) Are there retention and consent controls? (6) Who operates the LanceDB instance and what permissions does it need? If you cannot get clear answers and a trustworthy source code or homepage, treat this as high-risk for privacy and test only in a sandboxed environment or decline to install.Like a lobster shell, security has layers — review code before you run it.
ai-agentlancedblatestmemorypersistencevector-search
License
MIT-0
Free to use, modify, and redistribute. No attribution required.
SKILL.md
Tinmem Memory System
openclaw-tinmem provides persistent memory capabilities for the OpenClaw AI assistant.
Tools
memory_recall
Search and retrieve relevant memories from past conversations.
Use this tool when:
- The user references something from a previous conversation
- You need context about user preferences, background, or past decisions
- You want to check if a problem has been solved before
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"
}
memory_store
Store new information as a persistent memory.
Use this tool when:
- The user shares important personal information
- A significant decision is made
- A problem is solved in a novel way
- A new project or entity is introduced
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 searchability
Example:
{
"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"]
}
memory_forget
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 categories
Example:
{
"query": "old job at previous company",
"categories": ["profile", "entities"]
}
memory_update
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)
Memory Categories Reference
| 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 |
Notes
- Memories are automatically injected into context before each response via
<agent-experience>tags - New memories are automatically extracted after each conversation turn
- Similar memories are deduplicated using LLM-based analysis
- All memories persist across sessions in a local LanceDB database
Files
1 totalSelect a file
Select a file to preview.
Comments
Loading comments…
