https://github.com/memodb-io/skill-memory
Manage and evolve agent skills in one place
https://github.com/memodb-io/skill-memory
agent-skills claude-code cursor memory opencode skills
Last synced: 1 day ago
JSON representation
Manage and evolve agent skills in one place
- Host: GitHub
- URL: https://github.com/memodb-io/skill-memory
- Owner: memodb-io
- Created: 2026-01-27T08:49:20.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2026-01-28T11:54:50.000Z (5 months ago)
- Last Synced: 2026-01-28T23:48:49.657Z (5 months ago)
- Topics: agent-skills, claude-code, cursor, memory, opencode, skills
- Language: TypeScript
- Homepage:
- Size: 62.5 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Agents: AGENTS.md
Awesome Lists containing this project
README
`skill-memory` is a store for your agent skills, using `git`:
- It can download public skills, and maintain forked versions of them.
- You can edit, reuse and share many skills by importing only one `skill-memory` skill.
- Use it as an agent memory consisting of skills, versioning controlled by `git`
```mermaid
flowchart LR
GH("🌐 GitHub")
LC("📁 Local")
SM[("🧠 skill-memory")]
V("👁️ view")
E("✏️ edit")
D("📥 download")
A("🤖 AI Agent")
GH & LC -->|add| SM
SM --> V & D
V & D -.-> A
A -.->|learn| E
E -->|update| SM
style SM fill:#a78bfa,stroke:#7c3aed,stroke-width:2px,color:#fff
style A fill:#38bdf8,stroke:#0284c7,stroke-width:2px,color:#fff
style GH fill:#f472b6,stroke:#db2777,color:#fff
style LC fill:#f472b6,stroke:#db2777,color:#fff
style V fill:#4ade80,stroke:#16a34a,color:#fff
style E fill:#4ade80,stroke:#16a34a,color:#fff
style D fill:#4ade80,stroke:#16a34a,color:#fff
```
## Installation
Add `skill-memory` skill to your agent:
```bash
npx skills add memodb-io/skill-memory
```
and type `setup skill-memory` in your agent.
## Quick Start
In your agent, enter those:
- `add skills in vercel-labs/agent-skills to memory`
- `tell me about web design skill in your memory`
- `update web design skill in memory that I only want blue theme`
- `summarize your learnings and update the skills in memory`
- `create a skill in memory about my taste on software development: always write a dev plan first`
View your skill-memory commits:
```bash
skill-memory history
```
## Configuration
### Envs
| Variable | Description | Default |
| ------------------- | --------------------------------------------------- | ----------------- |
| `SKILL_MEMORY_HOME` | Custom storage location for skills and cached repos | `~/.skill-memory` |