Token导航 LogoToken导航TokenDH.com
开发敏感数据clawhub未标认证来源可访问clear审计通过

notiponotipo 文档

Agent Skill

notipo 用于整理文档、README、Markdown 和说明材料,适合在 OpenClaw 中需要把零散信息整理成结构清晰的文档时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

7,389

周安装

311

GitHub Stars

公开资料未说明

下载量

2,588
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:notipo(notipo 文档)
来源仓库:https://github.com/kfuras/notipo
安装命令:
openclaw skills install notipo
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install notipo

简介

通过 Notion 将博客文章发布到 WordPress,支持 Markdown 转换和图像上传。

  • 适合内容创作者或开发者维护跨平台发布流程。
  • 一键处理页面创建、特色图生成等操作。
  • 安装命令:openclaw skills install notipo。
  • 需配置 WordPress 和 Notion 的 API 密钥。

SKILL.md

name
notipo
description
Publish blog posts from AI agents to WordPress via Notion. One API call handles page creation, markdown conversion, image uploads, featured image generation, and SEO metadata.
homepage
https://notipo.com/docs/api/introduction
metadata
{"clawdbot":{"emoji":"📝","requires":{"bins":[],"env":["NOTIPO_URL","NOTIPO_API_KEY"]}}}

Install Notipo CLI if it doesn't exist

npm install -g notipo
  • npm release: https://www.npmjs.com/package/notipo
  • notipo docs: https://notipo.com/docs/api/introduction
  • notipo cli docs: https://notipo.com/docs/api/cli

Setup

Sign up at notipo.com, connect your Notion database and WordPress site through the dashboard, then grab your API key from Settings → Account.

Set the environment variables:

export NOTIPO_URL="https://notipo.com"
export NOTIPO_API_KEY="ntp_your-api-key"

Core Workflow

  1. Generate — AI agent creates title, body (markdown), category, tags, SEO keyword
  2. Fetch context — get categories and tags from Notipo to pick valid values
  3. Publishnotipo posts create with all fields
  4. Monitornotipo jobs to check completion status

Essential Commands

Check connection status

notipo status

Fetch categories and tags

# Get available categories (for picking a valid category)
curl -s $NOTIPO_URL/api/categories \
  -H "X-API-Key: $NOTIPO_API_KEY" | jq '.data[].name'

# Get available tags
curl -s $NOTIPO_URL/api/tags \
  -H "X-API-Key: $NOTIPO_API_KEY" | jq '.data[].name'

Create a post (draft)

notipo posts create \
  --title "Your Post Title" \
  --body "## Introduction\
\
Your markdown content here.\
\
## Main Section\
\
More content." \
  --category "Tutorials" \
  --tags "automation,ai" \
  --seo-keyword "your focus keyword" \
  --image-title "Featured Image Title" \
  --slug "custom-url-slug"

Create and publish immediately

notipo posts create \
  --title "Your Post Title" \
  --body "Markdown content here." \
  --category "Guides" \
  --seo-keyword "focus keyword" \
  --publish

Create, publish, and wait for completion

notipo posts create \
  --title "Your Post Title" \
  --body "Markdown content here." \
  --category "Guides" \
  --publish --wait

The --wait flag polls until the job completes and returns the result with the WordPress URL.

Create with inline Unsplash images (Pro plan, curl only)

curl -X POST $NOTIPO_URL/api/posts/create \
  -H "X-API-Key: $NOTIPO_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "title": "Your Post Title",
    "body": "## Introduction\
\
Content here.\
\
## Getting Started\
\
More content.",
    "category": "Tutorials",
    "seoKeyword": "focus keyword",
    "images": [
      { "query": "developer workspace laptop", "afterHeading": "## Introduction" },
      { "query": "getting started tutorial", "afterHeading": "## Getting Started" }
    ],
    "publish": true
  }'

Update a post (fix content, change metadata, re-sync to WordPress)

notipo posts update POST_ID \
  --body "## Introduction\
\
Updated content without the H1." \
  --seo-keyword "updated focus keyword" \
  --wait

Updates the Notion page content and/or properties, then triggers a re-sync to WordPress. Only the provided fields are updated — omitted fields stay unchanged. This is the correct way to fix post content after creation.

Check job status

notipo jobs

List posts

notipo posts

Trigger a sync (pick up Notion changes)

notipo sync

Delete a post

notipo posts delete POST_ID

Common Patterns

AI-generated blog post with full metadata

# 1. Fetch categories to pick a valid one
curl -s $NOTIPO_URL/api/categories -H "X-API-Key: $NOTIPO_API_KEY" | jq '.data[].name'

# 2. Create the post with all fields and wait for completion
notipo posts create \
  --title "10 Docker Best Practices for Production" \
  --body "## Introduction\
\
Docker containers are the standard...\
\
## Use Multi-Stage Builds\
\
Reduce image size by separating build and runtime...\
\
## Pin Base Image Versions\
\
Avoid surprises by pinning specific tags..." \
  --category "DevOps" \
  --tags "docker,containers,production" \
  --seo-keyword "docker best practices production" \
  --image-title "Docker Best Practices" \
  --slug "docker-best-practices-production" \
  --publish --wait

Batch content pipeline

# Generate and publish multiple posts in sequence
for topic in "React hooks" "TypeScript generics" "Node.js streams"; do
  notipo posts create \
    --title "A Guide to $topic" \
    --body "## Overview\
\
Generated content about $topic." \
    --category "Tutorials" \
    --seo-keyword "$(echo $topic | tr '[:upper:]' '[:lower:]')" \
    --wait
done

Full pipeline with inline images (curl)

curl -X POST $NOTIPO_URL/api/posts/create \
  -H "X-API-Key: $NOTIPO_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "title": "10 Docker Best Practices for Production",
    "body": "## Introduction\
\
Docker containers are the standard...\
\
## Use Multi-Stage Builds\
\
Reduce image size...",
    "category": "DevOps",
    "tags": ["docker", "containers", "production"],
    "seoKeyword": "docker best practices production",
    "imageTitle": "Docker Best Practices",
    "slug": "docker-best-practices-production",
    "images": [
      { "query": "docker containers server", "afterHeading": "## Introduction" }
    ],
    "publish": true
  }'

CLI Reference

CommandDescription
notipo statusShow Notion and WordPress connection status
notipo syncTrigger an immediate Notion poll
notipo postsList all posts
notipo posts createCreate a post in Notion and sync to WordPress
notipo posts update <id>Update post content/properties and re-sync to WordPress
notipo posts delete <id>Delete a post (cleans up WordPress + Notion)
notipo jobsList recent sync and publish jobs
notipo helpShow usage and examples

posts create flags

FlagDescription
--title <title>Post title (required)
--body <markdown>Markdown content
--category <name>Category name (must exist in WordPress)
--tags <a,b,c>Comma-separated tag names
--seo-keyword <kw>Focus keyword for Rank Math / SEOPress
--image-title <text>Text overlay on featured image (Pro)
--slug <slug>Custom URL slug
--publishPublish immediately (default: draft)
--waitWait for job completion and return result

posts update flags

FlagDescription
--title <title>New post title
--body <markdown>New markdown content (replaces all existing content)
--category <name>New category name
--tags <a,b,c>New comma-separated tag names
--seo-keyword <kw>New focus keyword for Rank Math / SEOPress
--slug <slug>New URL slug
--publishPublish after syncing (default: keep current status)
--waitWait for job completion and return result

API Request Body Reference

PATCH /api/posts/:id (update)

FieldTypeRequiredDescription
titlestringNoNew post title
bodystringNoNew markdown content (replaces all existing content on the Notion page)
categorystringNoNew category name
tagsstring[]NoNew tag names
seoKeywordstringNoNew focus keyword
slugstringNoNew URL slug
publishbooleanNoPublish after syncing

Returns { jobId, postId, message }. The update writes to Notion first, then triggers a sync job to push changes to WordPress.

POST /api/posts/create

For curl/HTTP usage, POST /api/posts/create accepts:

FieldTypeRequiredDescription
titlestringYesPost title
bodystringNoMarkdown content with headings and paragraphs
categorystringNoCategory name (must exist in WordPress)
tagsstring[]NoArray of tag names
seoKeywordstringNoFocus keyword for Rank Math / SEOPress
imageTitlestringNoText overlay on featured image (Pro)
slugstringNoCustom URL slug
publishbooleanNoPublish immediately (default: false)
imagesobject[]NoInline Unsplash images (Pro). Each: {query, afterHeading}

What Notipo Handles

  • Notion page creation from markdown (no Notion credentials needed)
  • Markdown → Notion blocks → WordPress Gutenberg block conversion
  • Image download from Notion and upload to WordPress media library
  • Featured image generation (1200×628 with category background + title overlay)
  • Inline Unsplash image insertion by search query (Pro plan)
  • SEO metadata — Rank Math, Yoast, SEOPress, AIOSEO
  • Post status management in Notion
  • Failure notifications via Slack/Discord webhook

Common Gotchas

  1. Use posts update to fix content — don't delete and recreate. notipo posts update <id> --body "..." updates the Notion page and re-syncs to WordPress in one call.
  2. Include all fields for best results — only title is technically required, but AI agents should always generate body, category, tags, seoKeyword, imageTitle, and slug for a complete post.
  3. Category must exist — the category name must match an existing WordPress category. Fetch valid options first.
  4. --publish runs two jobs — first SYNC_POST (creates draft), then PUBLISH_POST (makes it live). Use --wait to block until both complete.
  5. Images require Pro plan — the images array and featured image generation are Pro features. On Free plan, these fields are silently ignored.
  6. Fire and forget — the API returns a jobId immediately. Processing happens in the background. Use notipo jobs to check status.
  7. Markdown body format — use ## Heading for h2, ### Heading for h3. Paragraphs are separated by `\

\ . Images can be included as alt`.

  1. Rate limitsnotipo sync has a 15-second cooldown. notipo posts create has no rate limit.
  2. API key format — keys start with ntp_. Get yours from Settings → Account in the dashboard.
  3. Slug defaults — if not set, the slug is derived from the SEO keyword. If no SEO keyword, WordPress generates it from the title.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

76.29%
按下载量换算1,974

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills