โ† All skills
Tencent SkillHub ยท Productivity

notion-agent-memory

Structured memory system for AI agents using Notion. Use when setting up agent memory, discussing memory persistence, or helping agents remember context acro...

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Structured memory system for AI agents using Notion. Use when setting up agent memory, discussing memory persistence, or helping agents remember context acro...

โฌ‡ 0 downloads โ˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
SKILL.md, _meta.json, assets/AGENTS-TEMPLATE.md, assets/HEARTBEAT-TEMPLATE.md, assets/IDENTITY-TEMPLATE.md, assets/MEMORY-TEMPLATE-v2.md

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.

Upgrade existing

I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.0.1

Documentation

ClawHub primary doc Primary doc: SKILL.md 18 sections Open source page

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: MEMORY.md โ€” Persistent context (patterns, projects, lessons) 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: Read MEMORY.md (long-term context) Read IDENTITY.md (who you are) Read today's and yesterday's daily logs Check HEARTBEAT.md for scheduled tasks

Step 3: Session End Ritual

Before stopping: Update today's daily log with what you did If something significant changed โ†’ update MEMORY.md Add a RESUME block if work was interrupted 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)

Get the templates at shop.vlad.chat Duplicate the Notion template to your workspace For agents: Set up Notion API access (instructions included) Start every session by reading MEMORY.md 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

LayerFilePurposeDailymemory/YYYY-MM-DD.mdRaw events, decisions, notesLong-termMEMORY.mdCurated patterns, lessons, active projectsStructuredACT 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 forACT I: Hidden TruthsDiscover patterns, assumptions, blind spotsReflection, self-awarenessACT II: LimitlessTrack mindset/methods/motivation shiftsGrowth, breakthroughsACT 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: Get access via Gumroad Open the Notion template link Click "Duplicate" to copy to your workspace 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.

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

Category context

Workflow acceleration for inboxes, docs, calendars, planning, and execution loops.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
5 Docs1 Config
  • SKILL.md Primary doc
  • assets/AGENTS-TEMPLATE.md Docs
  • assets/HEARTBEAT-TEMPLATE.md Docs
  • assets/IDENTITY-TEMPLATE.md Docs
  • assets/MEMORY-TEMPLATE-v2.md Docs
  • _meta.json Config