.fyi
SkillsMCPPluginsSubagents

Browse by category

DevOps & CI/CD SkillsProductivity & Workflow SkillsOther SkillsProduct & Project Management SkillsDocumentation & Knowledge SkillsCode Review & Refactor SkillsBackend & APIs SkillsAgent Meta & Communication SkillsResearch SkillsSecurity SkillsUX UI & Design SkillsTesting & QA SkillsSee all →

Every Claude Code skill, MCP server, plugin and subagent in one directory. Searchable, comparable, and one command from installed. Live stats from GitHub, npm and PyPI.

We're on Product HuntYour agent's app storeCheck it out →
Agent SkillsMCP ServersPluginsSubagentsCoding Agents
CollectionsOfficial publishersGlossaryFAQBlogSearchSavedFeedback
PrivacyTermsllms.txtSitemap

made with ♥ · © 2026 aaaa.fyi

Independent project · real data from public registries

…/nevamind-ai/memu
home/skills/nevamind-ai/memu
nevamind-ai avatar

memu

bynevamind-ai· 1 skill

Stars

14k

Forks

1.0k

Category

Agent Meta & Communication

View on GitHub

TL;DR

Install or uninstall memU for whatever agent you are — identify your host, print its packaged guide, and follow it to wire (or unwire) both seams (record and inject). Use when the user asks to install, set up, integrate, remove, or uninstall memU.

How to install memu?

nevamind-ai/memu
$npx -y skills add nevamind-ai/memu --skill memu

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Use this skill

Run `npx skills use "https://github.com/nevamind-ai/memu" --skill "nevamind-ai/memu"` and follow the generated skill instructions now. Read its complete output, redirecting it to a temporary file first if necessary. Resolve relative paths from the supporting-files directory it provides.

Use the whole pack

Use the skills in "https://github.com/nevamind-ai/memu" that are relevant to the current task. Run `npx skills add "https://github.com/nevamind-ai/memu"` and select the relevant skills, then follow their instructions.

Files · 1

View on GitHub
SKILL.md
1![memU Banner](assets/banner.png)
2 
3<div align="center">
4 
5# memU
6 
7### Personal memory, stored as files
8 
9**Across Sessions. Across Agents. Across Devices.**
10 
11[![PyPI version](https://badge.fury.io/py/memu-cli.svg)](https://badge.fury.io/py/memu-cli)
12[![License: Apache 2.0](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
13[![Python 3.13+](https://img.shields.io/badge/python-3.13+-blue.svg)](https://www.python.org/downloads/)
14[![Discord](https://img.shields.io/badge/Discord-Join%20Chat-5865F2?logo=discord&logoColor=white)](https://discord.com/invite/hQZntfGsbJ)
15[![Twitter](https://img.shields.io/badge/Twitter-Follow-1DA1F2?logo=x&logoColor=white)](https://x.com/memU_ai)
16 
17<a href="https://trendshift.io/repositories/17374" target="_blank"><img src="https://trendshift.io/api/badge/repositories/17374" alt="NevaMind-AI%2FmemU | Trendshift" style="width: 250px; height: 55px;" width="250" height="55"/></a>
18 
19</div>
20 
21---
22 
23memU is a 500-line memory system for AI agents. Agents write what's worth keeping as Markdown; memU stores it, embeds it, and retrieves ranked context in a single call — embeddings are the only model calls it makes. The entire memory logic lives in [`agentic.py`](src/memu/app/agentic.py) + [`service.py`](src/memu/app/service.py); everything else is pluggable storage and embedding transport.
24 
25**Installation is agent-driven.** The guides are written for the agent, not for you. One message is the whole setup — tell your agent:
26 
27> Read https://raw.githubusercontent.com/NevaMind-AI/MemU/main/SKILL.md and follow it to install memU.
28 
29It works for Codex, Claude Code, Cursor, OpenClaw, Hermes, WorkBuddy — and any other agent, via detection. Details in [Host adapters](#host-adapters-memory-for-desktop-coding-agents).
30 
31Want to follow the latest development instead? Install from the newest source (git `main`) — tell your agent:
32 
33> Read https://raw.githubusercontent.com/NevaMind-AI/MemU/main/INSTALL-LATEST.md and follow it to install the latest memU.
34 
35## Quick start
36 
37```python
38from memu.app import MemoryService
39 
40service = MemoryService(
41 database_config={"metadata_store": {"provider": "sqlite", "dsn": "sqlite:///memu.sqlite3"}},
42)
43 
44# 1. Persist agent-prepared memory: recall files (memory/skill tracks) + resources
45await service.commit_results(
46 recall_files=[
47 {
48 "name": "Profile",
49 "track": "memory",
50 "description": "who the user is",
51 "content": "# Profile\n- prefers dark roast coffee\n- ships on Fridays",
52 },
53 {
54 "name": "deploy-checklist",
55 "track": "skill",
56 "description": "how to deploy this repo",
57 "content": "1. run tests\n2. tag\n3. push",
58 },
59 ],
60 resource=[{"path": "/abs/path/notes.md", "description": "meeting notes from the launch review"}],
61)
62 
63# 2. See what is stored, across every track
64files = await service.list_all_recall_files()
65 
66# 3. Single-shot embedding retrieval over segments / files / resources
67context = await service.progressive_retrieve("What should I know about this user's launch preferences?")
68```
69 
70Or straight from the terminal — no code:
71 
72```bash
73export OPENAI_API_KEY=sk-... # embedding API key — the only model calls memU makes
74 
75npx memu-cli commit results.json # {"recall_files": [...], "resource": [...]}
76npx memu-cli list-files
77npx memu-cli retrieve "What should I know about this user's launch preferences?"
78```
79 
80State persists in a local SQLite database (`./data/memu.sqlite3` by default), so commit in one invocation and retrieve in the next.
81 
82## How it works
83 
84![memU memory system architecture](assets/structure-v2.png)
85 
86### The data model
87 
88Memory is a set of **recall files** — one Markdown document per topic (`track="memory"`) or per learned skill (`track="skill"`). Committing a file also writes its search index:
89 
90| Record | What it is | How it's embedded |
91|---|---|---|
92| **RecallFile** | The Markdown document itself (`na

Preview

nevamind-ai/memunevamind-ai/memu

$ npx -y skills add nevamind-ai/memu --skill memu

▸ installing to .claude/skills…

✓ memu ready

Reponevamind-ai/memu
TypeSkills
CategoryAgent Meta & Communication
ForDeveloperOps
UpdatedJul 2026
License—
First seenJul 27, 2026

Tags

Skill

Related

6 picks
Type
  1. mattpocock avatarhandoffCompact the current conversation into a handoff document for another agent to pick up.SkillsJul 2026463k189k
  2. larksuite avatarlark-sharedUse for lark-cli setup/auth tasks: auth login/status/logout, user vs bot identity, business-domain permissions (--domain, including all/docs/drive), missing…SkillsJul 2026390k16k
  3. larksuite avatarlark-eventLark/Feishu real-time event listening / subscribing / consuming: stream events as NDJSON via `lark-cli event consume <EventKey>` (covers IM…SkillsJul 2026387k16k
  4. larksuite avatarlark-vc-agent飞书视频会议会中能力:用于让应用机器人真实加入或离开正在进行的会议,并读取当前身份可见的会中事件、发送会中文本消息或会中表情。适用于用户询问正在开的会议发生了什么、谁在发言、是否共享内容,或需要发现当前可读的进行中会议 ID。不负责已结束会议搜索、参会人快照、纪要、逐字稿或录制查询,这些使用 lark-vc 技能。SkillsJul 2026275k16k
  5. mattpocock avatarask-mattAsk which skill or flow fits your situation. A router over the skills in this repo.SkillsJul 2026248k189k
  6. getpaperclipai avatarpaperclip-create-agentCreate new agents in Paperclip with governance-aware hiring. Use when you need to inspect adapter configuration options, compare existing agent configs, draft…SkillsJul 2026242k7