skills/mem0-integrate/README.md
Wire Mem0 into an existing repository end-to-end, using a goal-driven, test-first pipeline.
This is a pipeline skill, not a reference skill. Invoke it as
/mem0-integratewhen you want your assistant to do the work of integrating Mem0 into a target repo. For day-to-day SDK coding help, installmem0instead.Part of the Mem0 Skill Graph:
- Reference: mem0 · mem0-cli · mem0-vercel-ai-sdk
- Pipeline: mem0-integrate (this skill) → mem0-test-integration
When invoked, your assistant will:
mem0-integrate/...) and a .mem0-integration/ directory of artifacts (goal.md, plan.md, product.json) consumed by the companion verification skillTrigger phrases:
<repo>"Do not use this skill for general SDK usage (install mem0), terminal workflows (install mem0-cli), or Vercel AI SDK integration (install mem0-vercel-ai-sdk).
npx skills add https://github.com/mem0ai/mem0 --skill mem0-integrate
For verification on the same branch, also install the companion skill:
npx skills add https://github.com/mem0ai/mem0 --skill mem0-test-integration
skills/mem0-integrate folder as a ZIPcurl -X POST https://api.anthropic.com/v1/skills \
-H "x-api-key: $ANTHROPIC_API_KEY" \
-H "Content-Type: application/json" \
-d '{"name": "mem0-integrate", "source": "https://github.com/mem0ai/mem0/tree/main/skills/mem0-integrate"}'
/mem0-integrate → creates mem0-integrate/<slug> branch,
writes .mem0-integration/ artifacts,
implements against failing tests
/mem0-test-integration → runs the repo's native test suite,
executes a real end-to-end smoke flow,
produces a scorecard
The two skills are loosely coupled — they share the same workspace and branch via .mem0-integration/, but the verifier never modifies source.
Apache-2.0