← 返回 Skills 市场
zurbrick

Notion Brain

作者 Don Zurbrick · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ✓ 安全检测通过
141
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install notion-brain
功能描述
Route high-value content into a Notion workspace with a quality gate, destination mapping, and exact MCP write patterns. ALWAYS trigger when the user says "s...
使用说明 (SKILL.md)

Notion Brain

Use this skill to make deliberate Notion saves, not reflexive ones.

The job is fourfold:

  1. decide whether the content deserves a durable home in Notion
  2. route it to the right page or database
  3. shape it into a clean structure before writing
  4. push it with the correct Notion MCP call pattern

Decision gate

Write to Notion only if at least one of these is true:

  • the content will be useful again later
  • it captures a decision, plan, status, insight, or reusable artifact
  • it would be annoying or costly to reconstruct
  • the owner would reasonably expect to find it in their second brain later

Do not write to Notion when the content is:

  • trivial, obvious, or disposable
  • already stored there in equivalent form
  • better suited only for chat, scratch work, or transient memory
  • part of a dedicated workflow this skill explicitly excludes

When unsure, prefer one of these outcomes:

  • Do not save
  • Save a short capture to Inbox DB
  • Save a fully structured page

Scope and non-scope

In scope:

  • research summaries
  • decision memos
  • project plans and project status
  • article drafts
  • security audit reports
  • financial snapshots
  • weekly rollups
  • contact notes
  • meeting prep
  • quick captures worth preserving

Out of scope:

  • health database management
  • property, vehicle, or equipment management
  • replacing workspace memory or daily logs
  • auto-pushing everything by default

Always write to workspace memory separately when the content also matters for agent continuity.

Default workflow

  1. Classify the content Choose the closest content type from references/page-map.md.

  2. Choose save depth

  • durable artifact or polished note -> structured page under the destination page
  • uncertain but worth keeping -> Inbox DB capture
  • existing page needs more detail -> append blocks instead of creating a duplicate
  1. Load the right template Read references/templates.md and use the smallest template that preserves value.

  2. Check for an existing page first Use Notion search before creating a new page when the topic may already exist.

  3. Write with MCP Read references/mcp-commands.md and use the exact command pattern for:

  • search
  • create page in a parent page
  • create item in Inbox DB
  • update page metadata
  • append blocks to an existing page
  1. Keep titles specific Prefer titles that are searchable and date-aware, for example:
  • Research Summary — Microsoft Copilot vs SecureAI — 2026-03-22
  • Decision Memo — Notion Routing Skill
  • Weekly Rollup — 2026-W12
  1. Avoid junk writes If the content is weak, incomplete, or duplicated, either tighten it first or do not save it.

Routing rules

Read references/page-map.md when deciding destination.

Practical defaults:

  • broad knowledge, synthesis, decisions, audits, rollups, and relationship notes -> Knowledge Hub
  • work execution and meeting support -> Work Hub
  • writing and publishing work -> Content Hub
  • money and finance artifacts -> Finance Hub
  • everything else worth saving but not yet sorted -> Inbox DB

Formatting rules

Read references/templates.md when preparing the payload.

Default formatting standards:

  • lead with a one-line summary
  • use short sections, not walls of text
  • preserve source links, dates, and decisions
  • include Next steps only when action is implied
  • avoid raw dump formatting unless using Inbox DB for quick capture

MCP usage

Read references/mcp-commands.md before writing. Use native Notion MCP tools (notion-search, notion-create-pages, notion-update-page, notion-fetch) — not mcporter.

Command order:

  1. search if collision is possible
  2. create or identify target page/database item
  3. add content (inline for new pages, append for existing)
  4. update page properties only when needed

Duplicate handling

Always search before creating when:

  • the title contains a person name, project name, or recurring topic
  • the content type recurs (weekly rollup, project status, financial snapshot)
  • you are unsure whether the page already exists

When a duplicate is found:

  • rollups and status pages → use replace_content to supersede the old version
  • knowledge pages → use update_content to append new findings
  • captures → skip the write and note the existing page

Content size limits

Notion API constrains each rich text element to ~2000 characters. For content longer than ~1500 words, split into multiple calls. Keep each payload focused; add long sections via follow-up update_content calls.

Review markers

After pushing content to Notion, consider adding a comment instead of editing the page body when:

  • marking that the content was reviewed or verified
  • flagging something as stale
  • adding metadata about when/why the page was created

Use the Comments API pattern from references/mcp-commands.md.

Setup

Before using this skill, replace the placeholder page and database IDs in the reference files with your own Notion IDs.

Minimum setup:

  • references/page-map.md — set the destinations you want to use for knowledge, work, content, finance, and inbox capture
  • references/mcp-commands.md — replace every YOUR_*_ID placeholder with the matching Notion page or data source ID
  • optional: rename destination labels to match your workspace, while preserving the routing logic

Recommended destination mapping:

  • Knowledge Hub — durable notes, research, decisions, audits, rollups, relationship notes
  • Work Hub — active execution artifacts, meeting prep, project plans, project status
  • Content Hub — drafts, outlines, posts, newsletters, content experiments
  • Finance Hub — durable financial summaries and snapshots
  • Inbox DB — quick captures worth saving before full structuring

How to get your IDs:

  • open the target page or database in Notion
  • copy the page URL
  • extract the 32-character page/database identifier from the URL
  • use the page ID for top-level pages and the data source ID for databases such as Inbox DB

Do not ship or publish your private Notion IDs in shared repositories.

Output expectations

When using this skill, return a compact operator-style summary:

  • Decision: save / do not save / save to inbox
  • Destination: exact Notion page or database
  • Format: template used
  • Action: command pattern chosen or write completed
  • Memory note: whether the same content should also be logged to workspace memory

References

  • references/page-map.md — content type to destination routing
  • references/templates.md — section templates by content type
  • references/mcp-commands.md — exact Notion MCP command patterns with placeholder IDs
安全使用建议
This skill is internally consistent and appears to do what it says: shape and route content into Notion. Before installing, confirm you understand how your platform's Notion connector/auth is configured (the skill expects you to supply page/database IDs and relies on platform MCP tools to make API calls). Be mindful that the skill will save durable artifacts when triggered by the listed phrases — if you want manual confirmation before writes, require the agent to ask you first. Also review which destinations you wire into references/page-map.md (especially Finance or Contact pages) to avoid accidentally pushing sensitive data. Finally, since the skill recommends also writing to the agent's workspace memory, decide whether you want that duplication (it may increase where your data is stored and who/what can access it).
功能分析
Type: OpenClaw Skill Name: notion-brain Version: 1.0.0 The notion-brain skill is a legitimate productivity tool designed to structure and route high-value information into a user's Notion workspace using native Model Context Protocol (MCP) tools. The skill includes well-defined quality gates in SKILL.md, content-to-destination mapping in references/page-map.md, and formatting templates in references/templates.md to ensure data is organized effectively. While it handles sensitive content types such as financial snapshots and security audits, its operations are transparent, aligned with its stated purpose, and include explicit warnings to users about protecting their private Notion IDs.
能力评估
Purpose & Capability
Name and description match the runtime instructions: the skill classifies content, maps it to destination pages/databases, formats it using templates, and issues Notion MCP commands. It does not request unrelated binaries, credentials, or system access.
Instruction Scope
SKILL.md confines actions to classifying content, selecting templates, searching/creating/updating Notion pages using the declared MCP tools, and optionally adding comments. It references only the shipped reference files and the Notion API (official endpoint) for comments. It does not instruct the agent to read unrelated files, secrets, or system state.
Install Mechanism
Instruction-only skill with no install spec and no code files — lowest-risk installation footprint. Nothing is downloaded or written to disk by the skill itself.
Credentials
The skill declares no environment variables and asks the user to replace placeholder Notion page/database IDs in the references. It does not request unrelated credentials. (Platform-level Notion connector/auth is assumed but not requested by the skill, which is proportionate.)
Persistence & Privilege
Skill is not always-enabled and does not request system-wide persistence or modify other skills. It uses the platform's MCP Notion tools for writes; autonomous invocation is allowed by default (normal for skills) but not elevated by this skill.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install notion-brain
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /notion-brain 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
Initial release: quality-gated Notion second brain skill with content routing, decision gate, MCP write patterns, duplicate handling, comments API, and webhooks roadmap.
元数据
Slug notion-brain
版本 1.0.0
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 1
常见问题

Notion Brain 是什么?

Route high-value content into a Notion workspace with a quality gate, destination mapping, and exact MCP write patterns. ALWAYS trigger when the user says "s... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 141 次。

如何安装 Notion Brain?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install notion-brain」即可一键安装,无需额外配置。

Notion Brain 是免费的吗?

是的,Notion Brain 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

Notion Brain 支持哪些平台?

Notion Brain 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Notion Brain?

由 Don Zurbrick(@zurbrick)开发并维护,当前版本 v1.0.0。

💬 留言讨论