# Add to your Claude Code skills
git clone https://github.com/MemTensor/memmy-agentmemmy-agent is an open-source ai agents skill for AI coding assistants such as Claude Code, Codex CLI, and ChatGPT, built by MemTensor. One Agent. One memory. Shared by every AI. 🍙. It has 69 GitHub stars.
memmy-agent's catalog security scan is still queued. You can run an instant dependency and prompt-injection check now with the "Scan for vulnerabilities" button above.
Clone the repository with "git clone https://github.com/MemTensor/memmy-agent" and add it to your Claude Code skills directory (see the Installation section above).
memmy-agent is primarily written in TypeScript. It is open-source under MemTensor on GitHub, so you can review or fork the full source.
Yes. SkillsLLM lists many other AI Agents skills you can browse and compare side by side. Open the AI Agents category from the badge at the top of this page, or use the Related Skills and comparison links further down to weigh memmy-agent against similar tools.
No comments yet. Be the first to share your thoughts!
Unlocks once the catalog security scan passes (runs nightly).
The deep catalog scan for this skill is still queued. Run an instant dependency check now instead.

Memmy is your personal memory hub — and a dedicated Agent that knows you best.
One unified memory layer for every AI you use. Evolving together through collaboration.
It distills your knowledge, preferences, and project experience into personal memory, and share the same context across every Agents — Cursor, Claude Code, Codex, OpenClaw 🦞, and more.
Available as a desktop app, CLI, and API. You can use the same long-term memory whatever the ways you like to use. Build it once, use it everywhere.
Docs • Quick Start • Core Concepts • Build from Source
简体中文 • English
Get Memmy from Official Website and GitHub.
Sign up to get free tokens. Model routing is automatic — start exploring the full Memory + Agent Runtime with zero config.
Trial credits:
Once the trial credits run out, you can switch to BYOK and use your own model API.
Every AI session generates context. Most of it gets thrown away.
Switch agents, close a tab, start a new session, and you're re-introducing yourself from scratch.
Memmy fixes that.
With a unified memory layer shared across Cursor, Claude Code, Codex, and more, your agents build on each other's context instead of starting over. One-shot conversations become a long-term working relationship.
Memmy provides a unified personal memory layer for all AI Agents.
Memmy provides a complete local Agent runtime environment.
Memmy can connect to your working environment, letting the Agent truly participate in your daily workflows.
Memmy is designed to guarantee your control over your personal data and memory.
After installing Memmy, it can automatically scan the history of your existing AI Agents. Within minutes, the project context, work habits, and preferences you have accumulated over the past months are converted into personal long-term memory, along with a personalized "First Meeting Report".
Now supported: Cursor, Claude Code, Codex, OpenCode, OpenClaw, Hermes Agent.
See the full support list → link to docs/import-agent-memory.md
Memmy is not just a chat interface — it is an AI Agent Runtime that runs locally. It unifies long-term memory, Agent execution, and tool connections in a single runtime environment, serving different scenarios through different entry points:
| Role | Core Capabilities | |
|---|---|---|
| 🧠 Memory Layer | Store and manage long-term context | Cross-Agent memory, history import, knowledge distillation, intelligent retrieval |
| 🤖 Agent Runtime | Drive Agents to execute tasks | Reasoning, task orchestration, tool calls, MCP, Skills |
| 🔌 Integration Layer | Connect external ecosystems | Messaging channels, third-party tools, OpenAI-compatible API |
| 🖥️ User Interface | Provide entry points | Desktop App, CLI/TUI, Web API |
Memmy uses an npm workspaces monorepo architecture:

Compared with "personal AI Agents" like Hermes and OpenClaw, what sets Memmy apart is not "yet another assistant that chats and runs errands for you" — it is a memory foundation shared across Agents: it remembers you first, then builds a general-purpose Agent on top of that.
| Capability | Memmy | Hermes | OpenClaw |
|---|---|---|---|
| Product positioning | Memory foundation + general Agent | Personal AI Agent | Personal AI assistant |
| Local-first, data stays on your machine | ✅ | ⚠️ | ✅ |
| One memory shared across Agents | ✅ | 🚫 | 🚫 |
| Takes over external Agent history (Cursor/Codex/Claude Code) | ✅ | 🚫 | 🚫 |
| Installs memory Skills for external Agents | ✅ | 🚫 | 🚫 |
| Structured memory engine (MemOS hybrid retrieval) | ✅ | ⚠️ | ⚠️ |
| Multi-channel reach (Telegram / Discord / iMessage…) | ✅ | ✅ | ✅ |
| Voice messaging | ✅ | ⚠️ | ✅ |
| Multi-model / BYOK | ✅ | ✅ | ✅ |
✅ Native support | ⚠️ Partial / requires setup | 🚫 Not supported
The comparison is based on each product's public positioning (as of this writing), not an item-by-item benchmark; corrections are welcome.
Account mode free credits: signing in grants 30,000,000 (30 million) trial tokens, so you can get running without your own API Key. You can check used / total / remaining amounts and the expiry date anytime in the app. Once used up or expired, switch to API Key (BYOK) mode and continue with your own quota.
memmy CLI (Agent Runtime)memmy onboard # Initialize ~/.memmy/config.yaml and the workspace
memmy status # Check config, workspace, model, and provider status
memmy agent --message "Hi, introduce the current workspace" # Single-turn message
memmy # Run without a subcommand to enter interactive chat (TUI)
memmy serve # Start the OpenAI-compatible API (:18990)
Minimal BYOK configuration (~/.memmy/config.yaml):
agents:
defaults:
model: openai/gpt-4.1
provider: openai
timezone: Asia/Shanghai
providers:
openai:
apiKey: ${OPENAI_API_KEY} # Supports ${ENV_NAME}-style environment variable references
memmy-memory CLI (memory access for external Agents / scripts)memmy-memory init # Write the Memory config and install Skills for each Agent as needed
memmy-memory health
memmy-memory search "memory policies in this project"
memmy-memory add "a piece of knowledge worth saving"
memmy-memory get <id>
Connects to `http://127.0.0