Getnote Daily Sync

v1.0.0

每日自动将 Get笔记(biji.com)当天的录音笔记、会议记录、待办事项汇总后写入 Notion 数据库,生成结构化日报页面。 Use when user says "同步今日 Get笔记", "生成今日日报", "把今天的笔记写到 Notion", "getnote daily sync", or trig...

0· 449·0 current·0 all-time

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for phoenixyy/getnote-daily-sync.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "Getnote Daily Sync" (phoenixyy/getnote-daily-sync) from ClawHub.
Skill page: https://clawhub.ai/phoenixyy/getnote-daily-sync
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Use only the metadata you can verify from ClawHub; do not invent missing requirements.
Ask before making any broader environment changes.

Command Line

CLI Commands

Use the direct CLI path if you want to install manually and keep every step visible.

OpenClaw CLI

Canonical install target

openclaw skills install phoenixyy/getnote-daily-sync

ClawHub CLI

Package manager switcher

npx clawhub@latest install getnote-daily-sync
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
The skill claims to sync Get笔记 (biji.com) to Notion and the included script calls openapi.biji.com and api.notion.com and uses GETNOTE_* and NOTION_* credentials — this matches the stated purpose. Note: registry-level metadata at the top indicated "Required env vars: none / Primary credential: none", while package.json and SKILL.md declare the required env vars (GETNOTE_API_KEY, GETNOTE_CLIENT_ID, NOTION_TOKEN, NOTION_DATABASE_ID). That metadata mismatch is a documentation/inventory inconsistency but not evidence of malicious behavior.
Instruction Scope
SKILL.md and the script limit actions to: calling Get笔记 API, parsing notes, and calling the Notion API to create pages and blocks. Instructions do not request access to unrelated files, other services, or system credentials. Cron scheduling examples are ordinary for automation.
Install Mechanism
There is no install spec that downloads/extracts third-party code; the skill is instruction-plus-script only. The Python script uses the standard library (urllib) and writes nothing to disk beyond interacting with Notion via API calls.
Credentials
The environment variables the skill asks for (Get笔记 API key & client id, Notion integration token & database id, optional MY_NAME) are exactly what is needed for the described integration — reasonable and proportionate. Again note the registry metadata inconsistency which lists no required env vars while package.json and SKILL.md do list them; verify env requirements before installing.
Persistence & Privilege
The skill does not request permanent/forced inclusion (always: false). It can be scheduled to run regularly (Cron), which is expected for a daily-sync skill. The script does not modify other skills or system-wide agent settings.
Assessment
This skill appears to do what it says: fetch today's notes from Get笔记 and create a structured Notion page. Before installing: (1) Verify source/trust — the skill has no homepage and a registry owner id only; review the included Python script yourself. (2) Use least-privilege credentials: create a Notion integration limited to the target database, and avoid using tokens with unnecessary workspace-wide rights. (3) For Get笔记, use an API key that’s scoped appropriately if possible. (4) Because the registry metadata omits the declared env vars, confirm which environment variables your OpenClaw config will actually set. (5) Run initially with a test Notion database or dummy data in an isolated environment, and rotate tokens if you later remove the skill or have any concern.

Like a lobster shell, security has layers — review code before you run it.

latestvk979m3xy9h1k8r7810eax1r0v982p20z
449downloads
0stars
1versions
Updated 1mo ago
v1.0.0
MIT-0

Get笔记 → Notion 每日日报 Skill

将你今天在 Get笔记(biji.com)录制的录音笔记、会议记录、灵感笔记自动汇总,生成一份结构化日报写入 Notion 数据库。


日报结构

每次同步后,Notion 中会创建一个新页面,包含:

  • 📊 今日概览 — 今天做了什么、最需要跟进的待办(Top 3)、今日关键洞察
  • 🗣️ 客户会 — 每场会议的录音信息 + 总结 + 待办
  • 🎤 技术分享 / 录音 — 非会议类录音的摘要
  • 💡 个人灵感 — 文字类笔记
  • 📌 后续建议 — 含时间关键词的待办汇总

配置(环境变量)

在 OpenClaw 配置或 .env 文件中设置以下变量:

变量名必填说明
GETNOTE_API_KEYGet笔记 API Key(在 Get笔记设置中获取)
GETNOTE_CLIENT_IDGet笔记 Client ID
NOTION_TOKENNotion Integration Token(创建方法
NOTION_DATABASE_ID目标 Notion 数据库 ID(从 Database URL 中提取)
MY_NAME你的名字关键词,用于过滤"我需要跟进"的待办(例如 Alice,我);留空则显示全部待办

获取 Notion Database ID

打开 Notion 数据库页面,URL 格式为:

https://www.notion.so/xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx?v=...

?v= 前的 32 位字符串即为 NOTION_DATABASE_ID

Notion Database 字段要求

目标 Database 需要包含以下字段(类型必须匹配):

字段名类型
NameTitle(标题)
dateDate(日期)
SummaryText(文本)
TagsMulti-select
SourceSelect

使用方式

手动触发(问 AI)

直接对话即可:

"同步今日 Get笔记到 Notion"

定时自动运行(推荐)

设置 OpenClaw Cron,每天晚上自动执行:

"每天晚上 10 点同步今日 Get笔记到 Notion"

或手动添加 Cron Job:

{
  "schedule": { "kind": "cron", "expr": "0 22 * * *", "tz": "Asia/Shanghai" },
  "payload": {
    "kind": "agentTurn",
    "message": "同步今日 Get笔记到 Notion"
  },
  "sessionTarget": "isolated"
}

工作原理

  1. 调用 Get笔记 Open API 拉取今日全部笔记
  2. 按类型分类(客户会 / 技术分享 / 个人灵感),过滤测试笔记
  3. 提取录音信息、总结、待办、金句等结构化字段
  4. 在 Notion 创建日报页面,写入所有内容

依赖

  • Python 3(标准库,无需额外安装)
  • Get笔记账号(biji.com)+ API Key
  • Notion Integration + 目标 Database

运行脚本(直接执行)

export GETNOTE_API_KEY="your-key"
export GETNOTE_CLIENT_ID="your-client-id"
export NOTION_TOKEN="secret_xxx"
export NOTION_DATABASE_ID="xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
export MY_NAME="你的名字"  # 可选

python3 skills/getnote-notion-daily/scripts/daily_sync.py

Comments

Loading comments...