skills/README.md
Mem0 ships structured skill definitions for Claude Code, Codex, Cursor, OpenCode, OpenClaw, and any assistant that supports the skills standard. Skills teach the assistant how to work with Mem0 — either by loading SDK knowledge into context, or by executing an end-to-end workflow on demand.
Installed once, loaded into context so the assistant writes correct Mem0 code. Use these for day-to-day development.
| Skill | Surface | Install |
|---|---|---|
mem0 | Python + TypeScript SDKs (Platform + OSS), framework integrations | npx skills add https://github.com/mem0ai/mem0 --skill mem0 |
mem0-cli | Terminal workflows (mem0 CLI, both Node and Python) | npx skills add https://github.com/mem0ai/mem0 --skill mem0-cli |
mem0-vercel-ai-sdk | @mem0/vercel-ai-provider and createMem0 | npx skills add https://github.com/mem0ai/mem0 --skill mem0-vercel-ai-sdk |
Invoked as a slash command to execute a specific end-to-end workflow. These do real work: they create branches, write tests, run code.
| Skill | Trigger | Install |
|---|---|---|
mem0-integrate | /mem0-integrate — wire Mem0 into an existing repo via TDD | npx skills add https://github.com/mem0ai/mem0 --skill mem0-integrate |
mem0-test-integration | /mem0-test-integration — verify what /mem0-integrate produced | npx skills add https://github.com/mem0ai/mem0 --skill mem0-test-integration |
The two pipeline skills are designed to run in sequence on the same workspace:
/mem0-integrate → mem0-integrate/<slug> branch + .mem0-integration/ artifacts
/mem0-test-integration → scorecard (compile + runtime verification, real API smoke test)
mem0mem0-cli@ai-sdk/*? → mem0-vercel-ai-sdkmem0-integrate, then mem0-test-integrationApache-2.0