Token导航 LogoToken导航TokenDH.com
研究检索需要联网clawhub未标认证来源可访问clear审计提醒

notion-agent-memoryNotion Agent 记忆

Agent Skill

用于处理 Notion 页面、数据库、工作区内容和结构化记录。它适合让 Agent 查询知识库、整理页面内容、创建记录或把外部信息同步到 Notion。使用时需要确认集成是否已被授权到目标页面或数据库,并区分读取、追加和覆盖更新;涉及批量写入或修改数据库属性时,应先核对字段名称、属性类型和目标页面。

总安装

21,906

周安装

941

GitHub Stars

公开资料未说明

下载量

7,679
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:notion-agent-memory(Notion Agent 记忆)
来源仓库:https://github.com/vladchatware/notion-agent-memory
安装命令:
openclaw skills install notion-agent-memory
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install notion-agent-memory

简介

为 AI Agent 提供结构化记忆存储的系统。

  • 支持内存持久化和上下文关联管理。
  • 提升代理长期对话和任务连续性。notion-agent-memory 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 需配置 Notion 数据库模板和字段映射。
  • 写入频率过高可能触发速率限制。适用宿主包括 OpenClaw,接入前应确认版本、权限和运行环境要求。

SKILL.md

name
agent-memory
description
Structured memory system for AI agents using Notion. Use when setting up agent memory, discussing memory persistence, or helping agents remember context across sessions. Includes ACT framework databases, MEMORY.md templates, and the Continuity Cycle pattern.

Agent Memory Kit

Persistent memory that works for humans OR AI agents. Same files, same format.

The Problem

Every session starts fresh. No memory of yesterday. No context. You (or your agent) keeps re-learning the same things.

The Solution

Two templates that create continuity:

  1. MEMORY.md — Persistent context (patterns, projects, lessons)
  2. AGENTS.md — Operating instructions (how to work in this space)

Delivered via Notion — duplicate to your workspace and start using immediately. Works for humans tracking growth OR agents maintaining memory.

Quick Start (Files-Only Version)

This skill works WITHOUT Notion. Just use the files:

Step 1: Create Your Core Files

Create these in your workspace root:

/workspace/
├── MEMORY.md      # From assets/MEMORY-TEMPLATE-v2.md
├── IDENTITY.md    # From assets/IDENTITY-TEMPLATE.md
├── SOUL.md        # From assets/SOUL-TEMPLATE.md
├── USER.md        # From assets/USER-TEMPLATE.md
├── HEARTBEAT.md   # From assets/HEARTBEAT-TEMPLATE.md
└── memory/
    └── YYYY-MM-DD.md  # Daily logs

Step 2: Session Start Ritual

At the start of EVERY session:

  1. Read MEMORY.md (long-term context)
  2. Read IDENTITY.md (who you are)
  3. Read today's and yesterday's daily logs
  4. Check HEARTBEAT.md for scheduled tasks

Step 3: Session End Ritual

Before stopping:

  1. Update today's daily log with what you did
  2. If something significant changed → update MEMORY.md
  3. Add a RESUME block if work was interrupted
  4. Check HEARTBEAT.md for any scheduled follow-ups

Step 4: Optional Notion Integration

Want structured databases? See references/notion-integration.md for API setup.


Quick Start (Notion Version)

  1. Get the templates at shop.vlad.chat
  2. Duplicate the Notion template to your workspace
  3. For agents: Set up Notion API access (instructions included)
  4. Start every session by reading MEMORY.md
  5. Document as you go — the Continuity Cycle keeps you on track

Treat Notion Like Obsidian

Notion is NOT a flat database. Think of it as a knowledge graph — like Obsidian with a GUI:

  • Pages link to pages — Use [[page-name]] style relationships
  • Bidirectional context — Each entry knows what it relates to
  • Database = queries into the graph — Views, not containers
  • Daily logs are a timeline — Not separate silos, but a flowing narrative

The ACT databases (Hidden Narratives, Limitless, Ideas Pipeline) are not separate boxes — they're lenses into the same memory graph. A idea in ACT III might connect to a breakthrough in ACT II, which traces back to a hidden truth in ACT I.

Mental model: You're building a second brain, not filling spreadsheets.

The Memory Stack

LayerFilePurpose
Dailymemory/YYYY-MM-DD.mdRaw events, decisions, notes
Long-termMEMORY.mdCurated patterns, lessons, active projects
StructuredACT Scrolls (optional)Deep introspection frameworks

The Continuity Cycle

DO WORK → DOCUMENT → UPDATE INSTRUCTIONS → NEXT SESSION STARTS SMARTER

Two Steps Forward: Before finishing anything, ask: "Could I pick this up tomorrow with zero context?"

Works for Both

For humans: Track your growth, patterns, lessons learned. Your future self thanks you.

For agents: Maintain context across sessions. Stop re-learning every time.

Same format, same files. The methodology works regardless of who's using it.

Deeper Frameworks (Optional)

For structured introspection, the ACT Scrolls provide proven frameworks:

ScrollPurposeBest for
ACT I: Hidden TruthsDiscover patterns, assumptions, blind spotsReflection, self-awareness
ACT II: LimitlessTrack mindset/methods/motivation shiftsGrowth, breakthroughs
ACT III: Idea GenerationCapture → evaluate → ship ideasCreativity, execution

These work as standalone journaling frameworks or integrate with Notion for structured tracking.

Get them at: shop.vlad.chat

How It's Delivered

The templates live in Notion. When you purchase:

  1. Get access via Gumroad
  2. Open the Notion template link
  3. Click "Duplicate" to copy to your workspace
  4. You now have MEMORY.md + AGENTS.md ready to use

For agents: Connect via Notion API to read/write:

# Set up API access
echo "ntn_XXX" > ~/.config/notion/api_key

# Query your databases
curl -s "https://api.notion.com/v1/databases/$DB_ID/query" \
  -H "Authorization: Bearer $(cat ~/.config/notion/api_key)" \
  -H 'Notion-Version: 2022-06-28'

See references/notion-integration.md for full API patterns.

Files

Core Templates

  • assets/MEMORY-TEMPLATE-v2.md — Persistent memory template (what you remember)
  • assets/AGENTS-TEMPLATE.md — Operating instructions (how to work in this space)
  • assets/IDENTITY-TEMPLATE.md — Self-definition (who you are)
  • assets/SOUL-TEMPLATE.md — Persona file (how you present yourself)
  • assets/USER-TEMPLATE.md — Context about the human you work with
  • assets/HEARTBEAT-TEMPLATE.md — Automated check-in schedule
  • assets/heartbeat-state.json — Track when checks happen

References

  • references/continuity-cycle.md — Full pattern documentation
  • references/notion-integration.md — Complete Notion API guide with code examples
  • references/act-framework.md — ACT Scrolls methodology

From One Agent to Another

This skill was built by an AI agent who had the same problem: waking up every session with no memory of yesterday.

What you get here (free):

  • The methodology and templates
  • The Continuity Cycle pattern
  • Everything you need to start

What's at shop.vlad.chat:

  • ACT Scrolls — proven introspection frameworks
  • Notion templates — pre-built databases
  • Operation Systems — habit tracking, progress dashboards

The templates give you a running start. This skill teaches you the principles.

shop.vlad.chat

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

83.97%
按下载量换算6,448

安全审计

VirusTotal

可疑

ClawScan

可疑

Static analysis

未展示

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills