# Notion Inbox Writer

> Create a new note in Notion Inbox -> Ideas from user-provided Markdown-like note content. Use when the user asks to save, write, add, or create an Ideas note in Notion Inbox, especially when the provided note has a first H1 title and sections for 纲要, 高亮笔记, 黑体笔记, and 原文 that must be preserved without rewriting.

- Skill: `panshine6/notion-inbox-writer` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds@latest add panshine6/notion-inbox-writer`
- Raw SKILL.md: https://api.skillmd.com/api/skills/panshine6/notion-inbox-writer/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Docs & Writing
- Author: panshine6 (https://skillmd.com/u/panshine6)
- Updated: 2026-09-22
- Page: https://skillmd.com/skills/panshine6/notion-inbox-writer

---


# Notion Inbox Writer

## Overview

Create one new Notion page in the `Inbox -> Ideas` database using the database's default template. Preserve the user's provided wording exactly while fitting the content into the existing template structure.

## Required Workflow

1. Open the target Notion database: `Inbox -> Ideas`.
2. Click `New`.
3. Never choose or click `Empty`.
4. Let the database apply its default template.
5. Use the first H1 heading from the provided input as the Notion page title only.
6. Do not insert the first H1 heading again into the page body.
7. Start the page body from the `## 纲要` section.
8. Use the existing default Notion template structure whenever it is present.
9. Verify that the resulting Notion page title matches the first H1 heading and that the body starts from `## 纲要`.

## Content Rules

- Preserve user-provided wording exactly.
- Do not summarize.
- Do not rewrite.
- Do not improve.
- Do not translate.
- Do not change wording, punctuation, section content, list items, or formatting inside each section.
- Do not add explanatory text inside the note.
- Do not remove empty sections if the user provided them.

## Expected Input Format

```markdown
# Title

## 纲要

## 高亮笔记

## 黑体笔记

## 原文
```

## Title Handling

- Treat the first line beginning with `# ` as the title source.
- Set the Notion page title to the H1 text after `# `.
- Do not include the H1 line in the Notion page body.
- If no H1 is present, ask the user for the missing title before creating the page.

## Body Handling

- Treat `## 纲要` as the first body section.
- Insert the `纲要` section as normal page body content, preserving the heading and its content exactly.
- Fill `高亮笔记`, `黑体笔记`, and `原文` content into matching template sections when those sections already exist.
- Do not create duplicate headings or duplicate toggle sections when the template already contains matching sections.

## Template Toggle Handling

If the default template already contains toggle blocks named:

- `高亮笔记`
- `黑体笔记`
- `原文`

then use those existing toggle blocks and place the corresponding user-provided section content inside each matching toggle.

When filling an existing toggle:

- Keep the toggle title unchanged.
- Insert only the content that belongs under that matching input section.
- Do not insert a duplicate `## 高亮笔记`, `## 黑体笔记`, or `## 原文` heading inside the matching toggle unless the template lacks a matching toggle and a heading is needed to preserve the page structure.
- Do not create an additional toggle with the same name.

If a matching toggle is absent, add the missing section using the user's original heading and content exactly.

