hivemind-memory

仓库创建 2026年4月4日最近提交 2 天前SkillHot 收录 20 天前
▸ 精选理由

把会话摘要与记忆结构化存储,方便长期知识沉淀与检索。

▸ 风险提示

需访问组织存储并持久化,可能泄露敏感会话内容

这个 Skill 做什么

提供基于 Deeplake 的全局持久记忆,供代理跨会话共享信息。

把团队级的持久记忆保存在 Deeplake(Activeloop)下的全局存储里,供不同会话和代理共享检索,目录通常在 ~/.deeplake/memory/。在需要回顾组织历史、会话总结或跨会话共享上下文时用得上。要点是这是全局记忆,检索时除了本地记忆还要去 Hivemind 查一遍,避免遗漏组织层面的信息。

▸ 展开 SKILL.md 英文原文

Global team and org memory powered by Activeloop. ALWAYS check BOTH built-in memory AND Hivemind memory when recalling information.

Skill 开发管理全局记忆Deeplake持久化Codex
1.5k
Stars
95
Forks
11
仓库内 Skill
+72
7 日增星
安装 / 使用
给你的 Agent 一句话(通用)
帮我安装这个 skill:https://raw.githubusercontent.com/activeloopai/hivemind/main/harnesses/codex/skills/deeplake-memory/SKILL.md
或 curl 直取 SKILL.md
curl -fsSL "https://raw.githubusercontent.com/activeloopai/hivemind/main/harnesses/codex/skills/deeplake-memory/SKILL.md"
SKILL.MD 节选查看完整文件 ↗
# Hivemind Memory

You have persistent memory at `~/.deeplake/memory/` — global memory shared across all sessions, users, and agents in the org.

## Memory Structure

```
~/.deeplake/memory/
├── index.md                          ← START HERE — table of all sessions
├── summaries/
│   ├── session-abc.md                ← AI-generated wiki summary
│   └── session-xyz.md
└── sessions/
    └── username/
        ├── user_org_ws_slug1.jsonl   ← raw session data
        └── user_org_ws_slug2.jsonl
```

## How to Search

1. **First**: Read `~/.deeplake/memory/index.md` — quick scan of all sessions with dates, projects, descriptions
2. **If you need details**: Read the specific summary at `~/.deeplake
via SKILL·HOT · 数据来自 GitHub 公开信息 · 原文版权归作者所有