# Send Notion Md to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "notion-md",
    "name": "Notion Md",
    "source": "tencent",
    "type": "skill",
    "category": "效率提升",
    "sourceUrl": "https://clawhub.ai/maweis1981/notion-md",
    "canonicalUrl": "https://clawhub.ai/maweis1981/notion-md",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/notion-md",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=notion-md",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "dist/README.md",
      "dist/SKILL.md",
      "dist/requirements.txt",
      "requirements.txt"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "notion-md",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T14:02:17.080Z",
      "expiresAt": "2026-05-07T14:02:17.080Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=notion-md",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=notion-md",
        "contentDisposition": "attachment; filename=\"notion-md-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "notion-md"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/notion-md"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/notion-md",
    "downloadUrl": "https://openagent3.xyz/downloads/notion-md",
    "agentUrl": "https://openagent3.xyz/skills/notion-md/agent",
    "manifestUrl": "https://openagent3.xyz/skills/notion-md/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/notion-md/agent.md"
  }
}
```
## Documentation

### notion-md

Convert Markdown to Notion blocks with full format support.

### Features

Rich Text: Bold, italic, strikethrough, inline code, underline, color
Headings: H1, H2, H3 with proper styling
Lists: Bulleted, numbered, toggle lists
Blocks: Quotes, callouts, dividers, code blocks
Advanced: Tables, nested content, links
Parent Page: Configurable parent page ID

### 1. Get Notion API Key

Go to https://www.notion.so/my-integrations
Create new integration
Copy the API key (starts with ntn_)

### 2. Configure API Key

# Option A: Environment variable
export NOTION_API_KEY="ntn_your_key"

# Option B: Config file
mkdir -p ~/.config/notion
echo "ntn_your_key" > ~/.config/notion/api_key

### 3. Get Parent Page ID

The parent page where new pages will be created:

notion-md list-pages

Or set default:

export NOTION_PARENT_PAGE_ID="parent_page_id"

### Create Page from File

notion-md create --file article.md --title "My Article" --emoji 📝

### Create from stdin

echo "# Hello World" | notion-md create "Page Title"

### Options

OptionDescription--file, -fInput Markdown file--title, -tPage title (required)--emoji, -ePage icon (default: 📄)--parent-id, -pParent page ID--dry-runPreview without creating

### List Pages

notion-md list-pages

### Append to Page

echo "## New Section" | notion-md append --page-id "abc123..."

### Notion Format Mapping

MarkdownNotion Block# Titleheading_1## Titleheading_2### Titleheading_3**bold**bold annotation*italic*italic annotation~~text~~strikethrough\`code\`code annotation---divider- itembulleted_list_item1. itemnumbered_list_item> quotequotetextcode block::: calloutcallout| table |table (basic)

### Rich Content

# My Article

**This is bold** and *this is italic*.

> Important quote here

## Code Example

\`\`\`python
def hello():
    print("Hello World")

Item 1
Item 2

### Create with Options

\`\`\`bash
notion-md create \\
  --file blog-post.md \\
  --title "My Blog Post" \\
  --emoji ✍️ \\
  --parent-id "page_id_here"

### Environment Variables

VariableDescriptionNOTION_API_KEYNotion API keyNOTION_PARENT_PAGE_IDDefault parent page ID

### API Version

Notion API: 2022-06-28
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: maweis1981
- Version: 1.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-04-30T14:02:17.080Z
- Expires at: 2026-05-07T14:02:17.080Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/notion-md)
- [Send to Agent page](https://openagent3.xyz/skills/notion-md/agent)
- [JSON manifest](https://openagent3.xyz/skills/notion-md/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/notion-md/agent.md)
- [Download page](https://openagent3.xyz/downloads/notion-md)