{
  "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": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/notion-md",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=notion-md",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "dist/README.md",
      "dist/SKILL.md",
      "dist/requirements.txt",
      "requirements.txt"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "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."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "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."
        },
        {
          "label": "Upgrade existing",
          "body": "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."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-23T16:43:11.935Z",
      "expiresAt": "2026-04-30T16:43:11.935Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
        "contentDisposition": "attachment; filename=\"4claw-imageboard-1.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "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."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/notion-md",
    "agentPageUrl": "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"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "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."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "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."
      },
      {
        "label": "Upgrade existing",
        "body": "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."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "notion-md",
        "body": "Convert Markdown to Notion blocks with full format support."
      },
      {
        "title": "Features",
        "body": "Rich Text: Bold, italic, strikethrough, inline code, underline, color\nHeadings: H1, H2, H3 with proper styling\nLists: Bulleted, numbered, toggle lists\nBlocks: Quotes, callouts, dividers, code blocks\nAdvanced: Tables, nested content, links\nParent Page: Configurable parent page ID"
      },
      {
        "title": "1. Get Notion API Key",
        "body": "Go to https://www.notion.so/my-integrations\nCreate new integration\nCopy the API key (starts with ntn_)"
      },
      {
        "title": "2. Configure API Key",
        "body": "# Option A: Environment variable\nexport NOTION_API_KEY=\"ntn_your_key\"\n\n# Option B: Config file\nmkdir -p ~/.config/notion\necho \"ntn_your_key\" > ~/.config/notion/api_key"
      },
      {
        "title": "3. Get Parent Page ID",
        "body": "The parent page where new pages will be created:\n\nnotion-md list-pages\n\nOr set default:\n\nexport NOTION_PARENT_PAGE_ID=\"parent_page_id\""
      },
      {
        "title": "Create Page from File",
        "body": "notion-md create --file article.md --title \"My Article\" --emoji 📝"
      },
      {
        "title": "Create from stdin",
        "body": "echo \"# Hello World\" | notion-md create \"Page Title\""
      },
      {
        "title": "Options",
        "body": "OptionDescription--file, -fInput Markdown file--title, -tPage title (required)--emoji, -ePage icon (default: 📄)--parent-id, -pParent page ID--dry-runPreview without creating"
      },
      {
        "title": "List Pages",
        "body": "notion-md list-pages"
      },
      {
        "title": "Append to Page",
        "body": "echo \"## New Section\" | notion-md append --page-id \"abc123...\""
      },
      {
        "title": "Notion Format Mapping",
        "body": "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)"
      },
      {
        "title": "Rich Content",
        "body": "# My Article\n\n**This is bold** and *this is italic*.\n\n> Important quote here\n\n## Code Example\n\n```python\ndef hello():\n    print(\"Hello World\")\n\nItem 1\nItem 2\n\n### Create with Options\n\n```bash\nnotion-md create \\\n  --file blog-post.md \\\n  --title \"My Blog Post\" \\\n  --emoji ✍️ \\\n  --parent-id \"page_id_here\""
      },
      {
        "title": "Environment Variables",
        "body": "VariableDescriptionNOTION_API_KEYNotion API keyNOTION_PARENT_PAGE_IDDefault parent page ID"
      },
      {
        "title": "API Version",
        "body": "Notion API: 2022-06-28"
      }
    ],
    "body": "notion-md\n\nConvert Markdown to Notion blocks with full format support.\n\nFeatures\nRich Text: Bold, italic, strikethrough, inline code, underline, color\nHeadings: H1, H2, H3 with proper styling\nLists: Bulleted, numbered, toggle lists\nBlocks: Quotes, callouts, dividers, code blocks\nAdvanced: Tables, nested content, links\nParent Page: Configurable parent page ID\nSetup\n1. Get Notion API Key\nGo to https://www.notion.so/my-integrations\nCreate new integration\nCopy the API key (starts with ntn_)\n2. Configure API Key\n# Option A: Environment variable\nexport NOTION_API_KEY=\"ntn_your_key\"\n\n# Option B: Config file\nmkdir -p ~/.config/notion\necho \"ntn_your_key\" > ~/.config/notion/api_key\n\n3. Get Parent Page ID\n\nThe parent page where new pages will be created:\n\nnotion-md list-pages\n\n\nOr set default:\n\nexport NOTION_PARENT_PAGE_ID=\"parent_page_id\"\n\nUsage\nCreate Page from File\nnotion-md create --file article.md --title \"My Article\" --emoji 📝\n\nCreate from stdin\necho \"# Hello World\" | notion-md create \"Page Title\"\n\nOptions\nOption\tDescription\n--file, -f\tInput Markdown file\n--title, -t\tPage title (required)\n--emoji, -e\tPage icon (default: 📄)\n--parent-id, -p\tParent page ID\n--dry-run\tPreview without creating\nList Pages\nnotion-md list-pages\n\nAppend to Page\necho \"## New Section\" | notion-md append --page-id \"abc123...\"\n\nNotion Format Mapping\nMarkdown\tNotion Block\n# Title\theading_1\n## Title\theading_2\n### Title\theading_3\n**bold**\tbold annotation\n*italic*\titalic annotation\n~~text~~\tstrikethrough\n`code`\tcode annotation\n---\tdivider\n- item\tbulleted_list_item\n1. item\tnumbered_list_item\n> quote\tquote\ntext\tcode block\n::: callout\tcallout\n| table |\ttable (basic)\nExamples\nRich Content\n# My Article\n\n**This is bold** and *this is italic*.\n\n> Important quote here\n\n## Code Example\n\n```python\ndef hello():\n    print(\"Hello World\")\n\nItem 1\nItem 2\n\n### Create with Options\n\n```bash\nnotion-md create \\\n  --file blog-post.md \\\n  --title \"My Blog Post\" \\\n  --emoji ✍️ \\\n  --parent-id \"page_id_here\"\n\nEnvironment Variables\nVariable\tDescription\nNOTION_API_KEY\tNotion API key\nNOTION_PARENT_PAGE_ID\tDefault parent page ID\nAPI Version\n\nNotion API: 2022-06-28"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/maweis1981/notion-md",
    "publisherUrl": "https://clawhub.ai/maweis1981/notion-md",
    "owner": "maweis1981",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "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"
  }
}