notion-core-workflow-b
Installation
SKILL.md
Notion Core Workflow B — Blocks, Content & Comments
Overview
Secondary workflow for content operations: reading block trees, appending content, building rich text with annotations, and managing comments.
Prerequisites
- Completed
notion-install-authsetup - A Notion page shared with your integration
- Familiarity with
notion-core-workflow-a(databases/pages)
Instructions
Step 1: Retrieve Block Children
import { Client } from '@notionhq/client';
const notion = new Client({ auth: process.env.NOTION_TOKEN });
async function getPageContent(pageId: string) {
Related skills