What problem does it solve?
Developers often need to persist decisions, preferences, and learnings discovered during a coding session, but manually recording them breaks flow and loses context. This Skill captures explicit user statements and stores them verbatim into mem0 with structured metadata.
Core Features & Use Cases
- Verbatim Memory Storage: Stores the exact user-provided text via the mem0 add_memory API with infer=False, skipping LLM extraction since the fact is stated explicitly.
- Automatic Type Classification: Classifies content into types such as decision, anti_pattern, user_preference, convention, task_learning, or environmental based on content signals.
- Async Write Confirmation: Polls get_event_status with the returned event_id to confirm the write succeeded and reports the resulting memory ID.
- Use Case: While working in OpenCode, you realize a project convention like "we always use pnpm instead of npm". Invoke the remember command with that text and it is stored as a convention memory tied to your user, project, and branch.
Quick Start
Ask the assistant to remember a fact by saying something like "remember this: we decided to always use pnpm for package management in this project".