在 Manus 中运行任何 Skill
一键导入
一键导入
一键在 Manus 中运行任何 Skill
开始使用supermemory
星标0
分支0
更新时间2026年4月5日 07:38
Supermemory - AI 时代的记忆引擎,为 AI Agent 提供长期记忆和知识召回能力。
安装
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
SKILL.md
readonly菜单
Supermemory - AI 时代的记忆引擎,为 AI Agent 提供长期记忆和知识召回能力。
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Atlas - 知识导航 Agent,帮助浏览和组织大型知识库。
Autoresearch - 自主研究 Agent,自动搜集、分析和综合信息。
Awesome AI Agent - 最全面的 AI Agent 资源列表,包含 1500+ 工具和框架。
Claude Subconscious - Letta 的 Claude 子意识模块,用于 AI Agent 的长期记忆和人格管理。
DeerFlow 2.0 - 字节跳动开源的长时程 AI Agent 框架,支持研究、编码和创作任务。
Hephaestus - 半结构化 Agentic 框架,工作流根据实际发现的任务自动构建。
| name | supermemory |
| description | Supermemory - AI 时代的记忆引擎,为 AI Agent 提供长期记忆和知识召回能力。 |
| license | MIT |
| tags | ["memory","knowledge","ai-agent","rag"] |
Supermemory 是一个专为 AI 时代设计的记忆引擎和知识管理应用。帮助 AI Agent 实现长期记忆、上下文保持和知识召回。
# 安装 CLI
npm install -g supermemory
# 登录
supermemory login
# 初始化项目
supermemory init
import { createClient } from '@supermemoryai/sdk'
const client = createClient({
apiKey: process.env.SUPERMEMORY_API_KEY
})
// 保存记忆
await client.memories.create({
content: '用户喜欢使用 React 框架',
type: 'preference'
})
// 召回相关记忆
const memories = await client.memories.search({
query: '用户的框架偏好'
})