Token导航 LogoToken导航TokenDH.com
开发敏感数据clawhub未标认证来源可访问clear审计通过

wechat-to-notionwechat TO Notion 开发

Agent Skill

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

总安装

9,455

周安装

402

GitHub Stars

公开资料未说明

下载量

3,312
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install wechat-to-notion

简介

wechat-to-notion 将公众号文章存入 Notion 数据库,支持字段映射和批量导入。

  • 适用于 OpenClaw 中统一内容管理与检索的知识工程实践。
  • 自动提取标题、摘要和正文,匹配预设数据库属性。
  • 安装命令为 openclaw skills install wechat-to-notion,需授权 Notion 集成。
  • 务必提前定义好数据库 schema,避免字段类型冲突。

SKILL.md

name
wechat-to-notion
description
Save WeChat public account articles to a Notion database. Use when user sends a mp.weixin.qq.com link and wants to save/archive it to Notion. Fetches title, cover image, body content (paragraphs, headings, images, code blocks, lists) and writes them as Notion blocks.
metadata

wechat-to-notion

Save a WeChat article to Notion in three steps: fetch → analyze → save.

Configuration Check (Do This First)

Check if the Notion API key is configured:

echo ${NOTION_API_KEY:0:8}...

If missing, tell the user:

You haven't configured a Notion API key yet: 1. Go to https://notion.so/my-integrations → + New integration → copy the key (starts with ntn_) 2. Open your Notion database → ...Connect to → select your integration 3. Set the key in your OpenClaw config — do not paste it into chat: `` openclaw config set skills.entries.wechat-to-notion.NOTION_API_KEY "ntn_xxx" ` OpenClaw will inject it as NOTION_API_KEY` automatically.

⚠️ Never ask the user to send the API key as a chat message — it will be exposed in conversation logs.

Setup (One-time)

Ask if the user has an existing Notion database. If yes, use it directly. If no, ask for a parent page URL and create one:

curl -s -X POST https://api.notion.com/v1/databases \
  -H "Authorization: Bearer $NOTION_API_KEY" \
  -H "Notion-Version: 2025-09-03" \
  -H "Content-Type: application/json" \
  -d '{
    "parent": {"type": "page_id", "page_id": "<parent_page_id>"},
    "title": [{"type": "text", "text": {"content": "WeChat Articles"}}],
    "properties": {
      "Title": {"title": {}},
      "URL": {"url": {}},
      "Read Time": {"date": {}},
      "Rating": {"select": {"options": [
        {"name": "⭐", "color": "gray"},
        {"name": "⭐⭐", "color": "gray"},
        {"name": "⭐⭐⭐", "color": "yellow"},
        {"name": "⭐⭐⭐⭐", "color": "orange"},
        {"name": "⭐⭐⭐⭐⭐", "color": "red"}
      ]}},
      "Tags": {"multi_select": {}},
      "Notes": {"rich_text": {}}
    }
  }'
Match field names to the user's language (e.g. Chinese users get Chinese field names).

Workflow

Step 1: Fetch article

python3 {skillDir}/scripts/fetch_wechat.py <wechat_url> > /tmp/wx_article.json

Step 2: Analyze (inline — reason directly, no subprocess)

Use the read tool to load /tmp/wx_article.json. Read the title and text content from blocks, then produce two outputs by reasoning directly:

Keywords (3–5):

  • Only extract core concepts: the specific technologies, products, or domain terms that define what this article is actually about
  • Omit generic/broad terms (e.g. "AI", "efficiency", "productivity", "tools", "development")
  • Comma-separated, preserve original casing

Rating (1–5 stars): Based on readability and value, give a star rating:

  • ⭐ (1): waste of time — clickbait, no substance, or unreadable
  • ⭐⭐ (2): below average — padded, shallow, or poorly organized
  • ⭐⭐⭐ (3): decent — has useful content but nothing exceptional
  • ⭐⭐⭐⭐ (4): good — well-written, actionable, worth bookmarking
  • ⭐⭐⭐⭐⭐ (5): excellent — insightful, well-structured, a must-read in its domain

3 stars and above automatically get a "Featured" tag.

Comment (1 sentence, written in the user's language): Evaluate the article's readability and value, not summarize its content. Focus on:

  • Is it well-structured and easy to follow, or rambling and padded?
  • Does it deliver actionable insight, or is it surface-level fluff?
  • Who would actually benefit from reading this?
  • Example: "Well-structured, flows from theory to hands-on smoothly — ideal for devs wanting to get started with MCP (refreshingly no filler)"
  • Example: "Clickbait title, buries the lead under three screens of preamble — the core point could fit in a single tweet"
  • Keep it under 35 words. Be direct — praise or criticize with specifics, no hedging.

Step 3: Save to Notion

python3 {skillDir}/scripts/save_to_notion.py \
  /tmp/wx_article.json \
  <notion_db_url> \
  <wechat_url> \
  <read_time_iso8601+08:00> \
  "<kw1>,<kw2>,<kw3>" \
  "<comment>" \
  <rating>
  • read_time: current time in the user's local timezone as ISO 8601 with offset, e.g. 2026-03-12T14:00:00+08:00
  • keywords: comma-separated string
  • comment: the single-sentence comment from Step 2
  • rating: integer 1–5 (star rating); 3+ automatically adds "Featured" to tags

The script auto-detects field names from the database schema by type (title, url, date, select, multi_select), writes all content blocks in batches of 100, and posts the comment to the Notion Comments panel.

Notes

  • Cover image: extracted from og:image meta tag, inserted as the first block
  • Rich text (bold/italic), code blocks, and lists are preserved by fetch_wechat.py
  • Read time defaults to current system time with local UTC offset if omitted
  • The comment appears in the Notion Comments panel, not in the page body
  • Field names are language-agnostic — the script maps by type, not by name

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

90.12%
按下载量换算2,985

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

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

来源信息

继续浏览同类 Skills