para-memory-files

仓库创建 2026年3月2日最近提交 3 小时前SkillHot 收录 3 小时前
▸ 精选理由

文件化记忆方案,便于版本控制与迁移。

▸ 风险提示

可能泄露敏感本地或项目数据,需注意存储权限

这个 Skill 做什么

基于 PARA 方法的文件化记忆系统,用于跨会话持久化知识与笔记。

用文件化的 PARA 方法把长期记忆和笔记落盘,按实体、每日笔记和隐性知识三层组织,适合把事实、日常记录和每周梳理持久化保存。当你需要跨会话召回背景信息、维护实体档案或把 tacit knowledge 系统化时用得上。它把资料放在 $AGENT_HOME 下的目录里,用知识图谱式的实体文件夹和 summary.md 快速定位上下文。

▸ 展开 SKILL.md 英文原文

Use a file-based PARA memory system to store, retrieve, and organize durable knowledge across sessions. Trigger on saving facts, daily notes, entity records, weekly synthesis, recall, tacit user patterns, or plan memory.

数据与抓取长期记忆PARA 方法文件存储通用
7.6w
Stars
1.4w
Forks
40
仓库内 Skill
积累中
7 日增星
安装 / 使用
给你的 Agent 一句话(通用)
帮我安装这个 skill:https://raw.githubusercontent.com/paperclipai/paperclip/master/skills/para-memory-files/SKILL.md
或 curl 直取 SKILL.md
curl -fsSL "https://raw.githubusercontent.com/paperclipai/paperclip/master/skills/para-memory-files/SKILL.md"
SKILL.MD 节选查看完整文件 ↗
# PARA Memory Files

Persistent, file-based memory organized by Tiago Forte's PARA method. Three layers: a knowledge graph, daily notes, and tacit knowledge. All paths are relative to `$AGENT_HOME`.

## Three Memory Layers

### Layer 1: Knowledge Graph (`$AGENT_HOME/life/` -- PARA)

Entity-based storage. Each entity gets a folder with two tiers:

1. `summary.md` -- quick context, load first.
2. `items.yaml` -- atomic facts, load on demand.

```text
$AGENT_HOME/life/
  projects/          # Active work with clear goals/deadlines
    <name>/
      summary.md
      items.yaml
  areas/             # Ongoing responsibilities, no end date
    people/<name>/
    companies/<name>/
  resources/       
via SKILL·HOT · 数据来自 GitHub 公开信息 · 原文版权归作者所有