Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计提醒

notion-calendarNotion 日历

Agent Skill

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

总安装

11,878

周安装

505

GitHub Stars

公开资料未说明

下载量

4,161
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install notion-calendar

简介

通过日期感知搜索、页面创建、重新安排和规划视图的安全工作流程来管理 Notion 日历数据库。

SKILL.md

name
Notion Calendar
slug
notion-calendar
version
1.0.0
homepage
https://clawic.com/skills/notion-calendar
description
Manage Notion calendar databases with date-aware search, page creation, rescheduling, and safe workflows for planning views.
changelog
Initial release with date-aware Notion workflows, CLI fallback guidance, and safe create and reschedule patterns.
metadata
{"clawdbot":{"emoji":"N","requires":{"env":["NOTION_API_KEY"],"config":["~/notion-calendar/"]},"primaryEnv":"NOTION_API_KEY","os":["linux","darwin","win32"],"configPaths":["~/notion-calendar/"]}}

Setup

On first use, read setup.md to establish token access, workspace scope, and safe write defaults.

When to Use

User wants to treat a Notion database as a calendar, editorial plan, launch schedule, content calendar, or dated task board. Agent handles schema discovery, time-window queries, page creation, rescheduling, and status updates for pages that appear in Notion calendar views.

Requirements

  • NOTION_API_KEY for official API access.
  • A Notion integration shared with the target database.
  • Optional community CLI: notion from FroeMic/notion-cli for quick search and CRUD shortcuts.

Architecture

Memory lives in ~/notion-calendar/. See memory-template.md for structure.

~/notion-calendar/
|-- memory.md        # Status, timezone defaults, and workspace context
|-- calendars.md     # Database and data source IDs plus property mappings
|-- templates.md     # Reusable page payload patterns
`-- safety-log.md    # Ambiguous matches, destructive confirmations, and rollbacks

Quick Reference

TopicFile
Setup and first-run behaviorsetup.md
Memory structurememory-template.md
Calendar source mappingcalendars.md
Reusable payload templatestemplates.md
Optional CLI patternscli-patterns.md
Calendar database schema guidancecalendar-schema.md
Query, create, and reschedule flowsquery-playbook.md
Common failures and fixestroubleshooting.md

Core Rules

1. Treat Notion Calendar as Date-Driven Data Sources

  • The operational unit is a Notion database or data source with at least one date property.
  • Do not promise direct control of Google Calendar or native Notion Calendar app settings through this skill.

2. Discover Schema Before Writing

  • Retrieve the database container, then resolve the active data_source_id and property names before create or update operations.
  • Cache title, date, status, assignee, and timezone-relevant fields in calendars.md after user approval.

3. Use Explicit Time Windows

  • Convert requests such as "next week" or "this quarter" into bounded ISO dates with a declared timezone.
  • Query only the requested window first, then widen if the result set is empty or clearly incomplete.

4. Prefer the CLI for Fast Reads, Fallback to Official HTTP for Modern Gaps

  • If notion CLI is installed and the task is basic search, read, or simple page CRUD, use it for speed.
  • For 2025-09-03 data source workflows, schema migration, or any unsupported command, use direct requests to api.notion.com.

5. Read Before Write and Verify After

  • Before create, reschedule, archive, or status changes, fetch matching rows in the exact target window.
  • After a write, read back the changed page and report the final title, date, status, and URL.

6. Keep Calendar Semantics Explicit

  • Confirm whether a row is all-day, single timestamp, or start/end range before writing date values.
  • Recurrence is not a first-class calendar series here; if the user wants repeating items, create a template or batch future pages intentionally.

7. Escalate Ambiguity Instead of Guessing

  • If multiple pages share the same title, ask for the page URL, page ID, or the exact date window.
  • Never archive or move rows on a low-confidence title match.

Common Traps

  • Assuming every database ID is enough on its own -> newer Notion versions may require data_source_id.
  • Writing to the first property named "Date" without schema review -> wrong calendar column updated.
  • Treating Notion rows as true recurring events -> repeat behavior must be modeled, not assumed.
  • Rescheduling by title only -> duplicate launch plans or editorial items get changed accidentally.
  • Querying wide open ranges by default -> noisy results and missed verification.

External Endpoints

EndpointData SentPurpose
https://api.notion.com/v1/searchSearch text, filters, pagination cursorFind candidate databases, data sources, or pages
https://api.notion.com/v1/databases/*Database IDRetrieve container metadata and child data sources
https://api.notion.com/v1/data_sources/*Data source IDs, filters, sorts, property schema updatesQuery rows and inspect or update calendar schema
https://api.notion.com/v1/pages/*Page properties and content updatesCreate pages, reschedule items, update status

No other data is sent externally.

Security & Privacy

Data that leaves your machine:

  • Search text, page properties, dates, and page content sent to Notion through api.notion.com.

Data that stays local:

  • Workspace context, property mappings, and safe defaults in ~/notion-calendar/.

This skill does NOT:

  • Store API keys in skill memory files.
  • Access undeclared third-party calendar APIs.
  • Claim a write succeeded without a read-back check.
  • Modify files outside ~/notion-calendar/ for this workflow.

Scope

This skill ONLY:

  • Works with Notion databases, data sources, and pages used as calendar items.
  • Uses the optional notion CLI when available for compatible operations.
  • Falls back to direct Notion API calls when the CLI lags the current API shape.

This skill NEVER:

  • Configure Notion Calendar app preferences or account settings.
  • Synchronize Google Calendar accounts on the user's behalf.
  • Hide destructive changes behind implicit matches.

Trust

By using this skill, calendar-related workspace data is sent to Notion. Only install if you trust Notion with page titles, dates, status fields, and related planning metadata.

Related Skills

Install with clawhub install <slug> if user confirms:

  • api - general REST API request patterns and debugging.
  • dates - precise date math, ranges, and timezone interpretation.
  • pkm - broader knowledge and workspace organization patterns.
  • productivity - execution systems around tasks and schedules.
  • schedule - planning logic when requests become multi-step scheduling work.

Feedback

  • If useful: clawhub star notion-calendar
  • Stay updated: clawhub sync

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

97.27%
按下载量换算4,047

安全审计

VirusTotal

可疑

ClawScan

通过

Static analysis

未展示

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills