Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器github未标认证来源可访问许可证需确认审计提醒

xiaohongshu-publisher小红书出版社

Agent Skill

xiaohongshu-publisher 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

4,272

周安装

178

GitHub Stars

8

下载量

1,424
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:xiaohongshu-publisher(小红书出版社)
来源仓库:https://github.com/iamzifei/red-publisher-skill
仓库路径:skills/xiaohongshu-publisher
安装命令:
npx skills add https://github.com/iamzifei/red-publisher-skill --skill xiaohongshu-publisher
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/iamzifei/red-publisher-skill --skill xiaohongshu-publisher

简介

小红书出版社技能用于查找、检索和筛选相关信息。

  • 适合根据关键词、任务场景或来源线索快速定位候选结果。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装,支持 Codex、Claude、Cursor 等宿主环境。
  • 使用前需确认权限范围和维护状态,注意可能触发联网、命令执行或文件读写操作。
  • xiaohongshu-publisher 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Xiaohongshu Publisher (小红书发布器)

Publish images and notes to Xiaohongshu (小红书) Creator Platform using agent-browser with CDP (Chrome DevTools Protocol) mode.

Architecture: CDP Mode

This skill uses CDP mode - connecting to an existing browser instance where the user is already logged in. This approach:

  • Eliminates QR code scanning - User logs in once in their browser
  • Leverages existing session - Uses the browser's cookies and auth state
  • More stable - No need to manage auth state files
  • agent-browser CLI - Simple command-line interface with --cdp flag

⚠️ IMPORTANT: Draft Mode by Default

This skill ALWAYS saves notes as DRAFT by default. It will NEVER auto-publish.

Only click the "发布" (publish) button if the user EXPLICITLY requests immediate publishing with phrases like:

  • "直接发布" / "立即发布" / "马上发布"
  • "publish now" / "publish directly" / "publish immediately"
  • "不要草稿,直接发" / "不存草稿"

If unsure, ALWAYS save as draft and let user review before publishing.

Prerequisites

1. Launch Chrome with Remote Debugging

Before using this skill, the user must launch Chrome with remote debugging enabled:

macOS:

/Applications/Google\ Chrome.app/Contents/MacOS/Google\ Chrome --remote-debugging-port=9222

Or create an alias in ~/.zshrc or ~/.bashrc:

alias chrome-debug='/Applications/Google\ Chrome.app/Contents/MacOS/Google\ Chrome --remote-debugging-port=9222'

Then simply run: chrome-debug

2. Login to Xiaohongshu

In the Chrome browser (with debug port), navigate to:

https://creator.xiaohongshu.com/publish/publish

Login using QR code scan with Xiaohongshu App. This only needs to be done once - the session persists in the browser.

Note: After login, you can minimize the browser window to the Dock. The browser must stay running (not closed) for CDP to work, but you don't need to see it.

3. Python Dependencies

pip install Pillow pyobjc-framework-Cocoa

agent-browser CDP Commands Reference

All commands use the --cdp 9222 flag to connect to the existing Chrome browser:

# Navigation
npx agent-browser --cdp 9222 open <url>          # Navigate to URL
npx agent-browser --cdp 9222 snapshot -i         # Get page snapshot with element refs

# Element Interaction
npx agent-browser --cdp 9222 click @e5           # Click element by ref
npx agent-browser --cdp 9222 fill @e2 "text"     # Fill input field
npx agent-browser --cdp 9222 type @e3 "text"     # Type text into element
npx agent-browser --cdp 9222 upload @e4 "/path/to/file.jpg"  # Upload file

# Keyboard & Wait
npx agent-browser --cdp 9222 press Enter         # Press key
npx agent-browser --cdp 9222 wait 2000           # Wait milliseconds
npx agent-browser --cdp 9222 wait --text "发布"  # Wait for text

# Screenshot
npx agent-browser --cdp 9222 screenshot          # Take screenshot

Important:

  • Element refs (like @e5) come from snapshot -i output. Always take a snapshot before interacting.
  • The --cdp 9222 flag connects to the browser's debug port instead of launching a new browser.
  • Do NOT use the close command as it would close the user's browser!

Scripts

Located in ~/.claude/skills/xiaohongshu-publisher/scripts/:

parse_note.py

Parse Markdown and extract structured data for Xiaohongshu notes:

python parse_note.py <markdown_file> [--output json]

Returns JSON with: title, content, images (list of paths), tags

copy_to_clipboard.py

Copy image to system clipboard for pasting:

python copy_to_clipboard.py image /path/to/image.jpg [--quality 80]

Workflow

Phase 0: Verify Browser Connection

CRITICAL: First verify that the CDP browser is running and connected.

  1. Check if browser is accessible: npx agent-browser --cdp 9222 snapshot -i

- If connection fails, tell user: "请先启动带调试端口的 Chrome 浏览器"

  1. Provide startup command if needed: /Applications/Google\ Chrome.app/Contents/MacOS/Google\ Chrome --remote-debugging-port=9222

Phase 1: Check Login Status

  1. Navigate to creator page (if not already there): npx agent-browser --cdp 9222 open "https://creator.xiaohongshu.com/publish/publish"
  2. Take snapshot to check login status: npx agent-browser --cdp 9222 snapshot -i

- Look for "上传图片" button = logged in - Look for QR code or login form = need to login

  1. If login required:

- Tell user: "请在浏览器中扫码登录小红书,登录后告诉我" - Wait for user confirmation - Take new snapshot to verify login success

Phase 2: Parse Content

If user provides a markdown file, parse it:

python ~/.claude/skills/xiaohongshu-publisher/scripts/parse_note.py /path/to/note.md

Output JSON:

{
  "title": "Note Title",
  "content": "Note description/content text...",
  "images": ["/path/to/img1.jpg", "/path/to/img2.jpg"],
  "tags": ["tag1", "tag2"]
}

Phase 3: Upload Images

  1. Take snapshot to get current element refs: npx agent-browser --cdp 9222 snapshot -i
  2. Find the upload input element (look for file input or "上传图片" area)
  3. Upload images: # Single image npx agent-browser --cdp 9222 upload @e<ref> "/path/to/image1.jpg" # Multiple images (comma-separated) npx agent-browser --cdp 9222 upload @e<ref> "/path/to/img1.jpg,/path/to/img2.jpg,/path/to/img3.jpg"
  4. Wait for uploads to complete: npx agent-browser --cdp 9222 wait 3000
  5. Take new snapshot after upload completes

Phase 4: Fill Title and Content

  1. Find title input field from snapshot (placeholder usually contains "标题")
  2. Fill title: npx agent-browser --cdp 9222 fill @e<title_ref> "Your Note Title"

- Title limit: ~20 characters recommended

  1. Find content/description field (placeholder usually contains "描述" or "正文")
  2. Fill content: npx agent-browser --cdp 9222 fill @e<content_ref> "Your note content here..."

- Content limit: ~1000 characters max

Phase 5: Add Tags (Optional)

If tags are provided:

  1. Find tag input area from snapshot
  2. Add each tag: npx agent-browser --cdp 9222 click @e<add_tag_ref> npx agent-browser --cdp 9222 fill @e<tag_input_ref> "tag1" npx agent-browser --cdp 9222 press Enter

- Repeat for each tag (max 5 recommended)

Phase 6: Save as Draft (Default) or Publish

Default Action: Save as Draft

  1. Find "存草稿" button from snapshot
  2. Click draft button: npx agent-browser --cdp 9222 click @e<draft_button_ref>
  3. Verify success - take snapshot or wait for confirmation

Only If User Explicitly Requests Publishing

ONLY if user said "直接发布", "立即发布", or "publish now":

  1. Find "发布" button from snapshot
  2. Click publish button: npx agent-browser --cdp 9222 click @e<publish_button_ref>

When in doubt, ALWAYS save as draft.

Phase 7: Verify and Report

  1. Take final snapshot to verify success: npx agent-browser --cdp 9222 snapshot -i
  2. Report to user:

- Draft saved: "草稿已保存!请在小红书 App 中预览和发布。" - Published: "笔记已发布成功!"

Example Flows

Example 1: Basic Image Publish

User: "发布这些图片到小红书: /path/to/photo1.jpg, /path/to/photo2.jpg, 标题是'周末好去处'"

# 1. Verify connection and check login
npx agent-browser --cdp 9222 snapshot -i

# 2. Navigate to publish page (if needed)
npx agent-browser --cdp 9222 open "https://creator.xiaohongshu.com/publish/publish"

# 3. Take snapshot, verify "上传图片" visible
npx agent-browser --cdp 9222 snapshot -i

# 4. Upload images
npx agent-browser --cdp 9222 upload @e<ref> "/path/to/photo1.jpg,/path/to/photo2.jpg"
npx agent-browser --cdp 9222 wait 3000

# 5. Take new snapshot, fill title
npx agent-browser --cdp 9222 snapshot -i
npx agent-browser --cdp 9222 fill @e<title_ref> "周末好去处"

# 6. Save as draft
npx agent-browser --cdp 9222 click @e<draft_ref>

Example 2: Markdown File Publish

User: "把这个 markdown 发到小红书: /path/to/note.md"

# 1. Parse markdown
python ~/.claude/skills/xiaohongshu-publisher/scripts/parse_note.py /path/to/note.md

# 2. Extract: title, content, images, tags from JSON output

# 3. Verify connection
npx agent-browser --cdp 9222 snapshot -i

# 4. Upload all images from parsed result
npx agent-browser --cdp 9222 upload @e<ref> "/path/to/img1.jpg,/path/to/img2.jpg"

# 5. Fill title and content
npx agent-browser --cdp 9222 fill @e<title_ref> "parsed title"
npx agent-browser --cdp 9222 fill @e<content_ref> "parsed content"

# 6. Add tags if present
npx agent-browser --cdp 9222 fill @e<tag_ref> "tag1"
npx agent-browser --cdp 9222 press Enter

# 7. Save as draft
npx agent-browser --cdp 9222 click @e<draft_ref>

Example 3: Direct Publish

User: "直接发布这些图到小红书,不用草稿"

# [Same as above until Step 6]

# Find and click "发布" button (NOT 存草稿)
npx agent-browser --cdp 9222 click @e<publish_ref>

Critical Rules

  1. 🚨 NEVER AUTO-PUBLISH - ALWAYS save as draft by default
  2. 🔌 ALWAYS USE --cdp 9222 - Every command must include this flag
  3. ❌ NEVER USE close COMMAND - Would close user's browser!
  4. 📸 TAKE SNAPSHOTS FREQUENTLY - Page state changes, always get fresh refs
  5. ⏳ WAIT AFTER UPLOADS - Give time for images to process
  6. 🔄 HANDLE LOGIN GRACEFULLY - Guide user to login in browser if needed
  7. 📝 RESPECT CONTENT LIMITS - Title ~20 chars, Content ~1000 chars
  8. 🖼️ IMAGE LIMITS - 1-18 images per note

Troubleshooting

CDP Connection Failed

If snapshot fails to connect:

  1. Verify Chrome is running with debug port: lsof -i:9222
  2. If not running, start Chrome: /Applications/Google\ Chrome.app/Contents/MacOS/Google\ Chrome --remote-debugging-port=9222
  3. Check for port conflicts - another process might be using 9222

Session Expired

If previously logged in but now seeing login page:

  1. Tell user to re-login in browser: "您的登录状态已过期,请在浏览器中重新扫码登录"
  2. Wait for user confirmation
  3. Take new snapshot to verify

Upload Failed

  • Check image file exists and is valid format (jpg, png, gif, webp)
  • Check file size (Xiaohongshu has limits)
  • Try uploading one at a time
  • Take screenshot to see actual error: npx agent-browser --cdp 9222 screenshot error.png

Element Not Found

  • Page structure may have changed
  • Always take a fresh snapshot before interacting
  • Look for similar elements with different refs

Why CDP Mode with agent-browser?

Advantages:

  1. No QR code scanning per session - Login persists in browser
  2. User's own browser - Existing cookies and preferences
  3. Simple CLI - Same agent-browser commands, just add --cdp 9222
  4. No MCP server - Direct CLI invocation
  5. Reliable auth - Browser handles session management

Trade-offs:

  1. Requires browser running - User must start Chrome with debug port
  2. Single browser instance - One session at a time
  3. Manual first login - User does initial QR scan in browser

Supported Content

TypeDetails
ImagesJPG, PNG, GIF, WebP (1-18 images)
TitleUp to ~20 characters recommended
ContentUp to ~1000 characters
TagsUp to 5 tags recommended

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.66%
按下载量换算494

Claude

33.75%
按下载量换算481

Cursor

19.3%
按下载量换算275

Gemini CLI

10.1%
按下载量换算144

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

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

来源信息

继续浏览同类 Skills