notion-management
Node.js/JavaScriptプロジェクトでNotion APIを使用するための完全なガイドです。Notionのページ、データベース、プロパティの作成、更新、取得、管理に使用できます。リッチテキスト、データベーススキーマ、複数選択フィールド、日付、複雑なコンテンツ構造の適切な処理に対応しています。「Notionページを作成する」「データベースプロパティを更新する」「Notionにコンテンツを追加する」「Notionワークフローを管理する」といったタスクで活用できます。
description の原文を見る
Complete guide for working with Notion API in Node.js/JavaScript projects. Use when creating, updating, fetching, or managing Notion pages, databases, and properties. Includes proper handling of rich text, database schemas, multi-select fields, dates, and complex content structures. Triggers on tasks like "create a Notion page," "update database properties," "add content to Notion," or "manage Notion workflows."
SKILL.md 本文
Notion Management スキル
Node.js/JavaScript 開発向けの Notion API を使いこなすためのマスターガイドです。このスキルは、すべての一般的な Notion 操作のパターン、ツール、リファレンスを提供します。
クイックスタート
Notion リソースの取得
// ページまたはデータベースを取得
const page = await notion_notion-fetch({
id: "page-id-or-url"
});
// ページはマークダウン コンテンツとプロパティを返す
// データベースはスキーマ、データソース、ビューを返す
ページの作成
// 単一ページの作成
const pages = await notion_notion-create-pages({
pages: [{
properties: {
title: "My Page Title",
// データベーススキーマに基づく他のプロパティ
},
content: "# Markdown content here\n\nSupports rich markdown."
}],
parent: {
...
詳細情報
- 作者
- majiayu000
- ライセンス
- 不明
- 最終更新
- 2026/5/9
Source: https://github.com/majiayu000/claude-skill-registry-data / ライセンス: 未指定