来源信息
- 仓库
- Ntizar/MasterMind
- 最近来源活动
- 2026年9月5日 21:27
- 检测到的 SKILL.md 语言
- 西班牙语
- 星标
- 2
- 分支
- 0
安装方式
默认使用会先检查来源的 Prompt;你也可以切换为直接命令,或下载本地副本。
检查来源文件
决定是否安装前,请先阅读 SKILL.md,以及 SkillsMP 当前展示的配套文件。
正在显示 SKILL.md
SKILL.md
来源说明 · 只读预览- name
- supermemory
- description
- Usa a Supermemory como memoria semántica de agentes.
- version
- 2.0.0
- tags
- ["memoria","supeparamemory","rag","agentes","mcp","api","typescript"]
- related_skills
- ["supermemory","memory-context-engine","agent-memory","rag-knowledge-base"]
# Supermemory — memoria semántica para agentes (servicio + cliente API)
> ⚠️ Corrección 2026-09-05 (auditoría): el repo es **TypeScript** (app + motor de memoria + API REST + MCP server + extensión de navegador), y la clase `SuperMemory()`/`.store()`/`.search()` NO existe. El paquete PyPI es un cliente REST (`Supermemory(api_key=...)` con `client.search.documents(...)`), o se self-hostea.
**Repo:** `https://github.com/supermemoryai/supermemory` (TypeScript, ~29K⭐).
## When to Use
- Cuando quieras dar **memoria semántica persistente** a un agente (guardar/recuperar hechos con búsqueda), vía servicio o self-host.
## Uso
Es un **servicio/app con API HTTP** (o MCP server), no una librería local autocontenida.
**Cliente Python (PyPI, generado con Stainless):**
```python
from supermemory import Supermemory
client = Supermemory(api_key="...")
result = client.search.documents(q="...") # buscar por query
```
**Self-host / MCP:**
```bash
curl -fsSL https://supermemory.ai/install | bash
# o usar el MCP server que expone el repo
```
## Pitfalls
- **No** `from supermemory import SuperMemory`; la clase es **`Supermemory`** (con `api_key`) y la API es `client.search.documents(q=...)`, no `.store()`/`.search()`.
- El repo es **TypeScript**, no Python.
- **No** es "SQLite + numpy mínimo": es un servicio con API HTTP (o self-host).
## Verificación
- Crear el cliente con `api_key`, guardar y buscar un documento; o correr el MCP server del repo.
在 GitHub 查看