
Remember
- 66 installs
- 62.5k repo stars
- Updated August 5, 2026
- mem0ai/mem0
Helps with ai & agent building tasks during AI-assisted development.
About
remember is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.
- remember
- AI & Agent Building
- AI-coding skill
Remember by the numbers
- 66 all-time installs (skills.sh)
- +12 installs in the week ending Aug 4, 2026 (Skillselion tracking)
- Ranked #6,006 of 16,546 AI & Agent Building skills by installs in the Skillselion catalog
- Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/mem0ai/mem0 --skill rememberAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 66 |
|---|---|
| repo stars | ★ 62.5k |
| Last updated | August 5, 2026 |
| Repository | mem0ai/mem0 ↗ |
What it does
Helps with ai & agent building tasks during AI-assisted development.
Files
Mem0 Remember
Store a fact or learning directly into mem0.
Execution
Step 1: Extract the content
The user provides the content as an argument: /mem0:remember <text>
If no text was provided, ask: "What should I remember?"
Step 2: Classify the memory
Based on the content, pick the best metadata.type:
| Content signal | Type |
|---|---|
| "we decided...", "always use...", "never..." | decision |
| "X doesn't work because...", "don't try..." | anti_pattern |
| "I prefer...", "use X instead of Y" | user_preference |
| "the convention is...", "we always..." | convention |
| "learned that...", "figured out..." | task_learning |
| setup, env, tooling, config | environmental |
| anything else | task_learning |
Step 3: Store
Call add_memory with:
text="<the user's text>"user_id=<active_user_id>app_id=<active_project_id>metadata={"type": "<classified_type>", "branch": "<active_branch>", "confidence": 1.0, "source": "remember_command"}infer=False
infer=False because the user stated the fact explicitly — no extraction needed. confidence=1.0 because the user explicitly asked to store this.
Step 4: Confirm
The add_memory response returns event_id (not memory_id) because writes are async. Call get_event_status(event_id=<event_id>) once.
- If status is
SUCCEEDED: print the memory ID from the result. - If status is
PENDINGorprocessing: print with the event ID as fallback.
Remembered as <type>: "<content, first 80 chars>"
Memory ID: <id from event status>Append ... only if content was truncated (longer than 80 chars).