Publish images to Xiaohongshu (小红书) via CDP browser. Always saves as draft.
Publish images and notes to Xiaohongshu (小红书) Creator Platform using agent-browser with CDP (Chrome DevTools Protocol) mode.
This skill uses CDP mode - connecting to an existing browser instance where the user is already logged in. This approach:
--cdp flagThis 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:
If unsure, ALWAYS save as draft and let user review before publishing.
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
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.
pip install Pillow pyobjc-framework-Cocoa
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:
snapshot -i output. Always take a snapshot before interacting.--cdp 9222 flag connects to the browser's debug port instead of launching a new browser.close command as it would close the user's browser!Located in ~/.claude/skills/xiaohongshu-publisher/scripts/:
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 image to system clipboard for pasting:
python copy_to_clipboard.py image /path/to/image.jpg [--quality 80]
CRITICAL: First verify that the CDP browser is running and connected.
Check if browser is accessible:
npx agent-browser --cdp 9222 snapshot -i
Provide startup command if needed:
/Applications/Google\ Chrome.app/Contents/MacOS/Google\ Chrome --remote-debugging-port=9222
Navigate to creator page (if not already there):
npx agent-browser --cdp 9222 open "https://creator.xiaohongshu.com/publish/publish"
Take snapshot to check login status:
npx agent-browser --cdp 9222 snapshot -i
If login required:
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"]
}
Take snapshot to get current element refs:
npx agent-browser --cdp 9222 snapshot -i
Find the upload input element (look for file input or "上传图片" area)
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"
Wait for uploads to complete:
npx agent-browser --cdp 9222 wait 3000
Take new snapshot after upload completes
Find title input field from snapshot (placeholder usually contains "标题")
Fill title:
npx agent-browser --cdp 9222 fill @e<title_ref> "Your Note Title"
Find content/description field (placeholder usually contains "描述" or "正文")
Fill content:
npx agent-browser --cdp 9222 fill @e<content_ref> "Your note content here..."
If tags are provided:
Find tag input area from snapshot
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
Find "存草稿" button from snapshot
Click draft button:
npx agent-browser --cdp 9222 click @e<draft_button_ref>
Verify success - take snapshot or wait for confirmation
ONLY if user said "直接发布", "立即发布", or "publish now":
Find "发布" button from snapshot
Click publish button:
npx agent-browser --cdp 9222 click @e<publish_button_ref>
When in doubt, ALWAYS save as draft.
Take final snapshot to verify success:
npx agent-browser --cdp 9222 snapshot -i
Report to user:
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>
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>
User: "直接发布这些图到小红书,不用草稿"
# [Same as above until Step 6]
# Find and click "发布" button (NOT 存草稿)
npx agent-browser --cdp 9222 click @e<publish_ref>
If snapshot fails to connect:
Verify Chrome is running with debug port:
lsof -i :9222
If not running, start Chrome:
/Applications/Google\ Chrome.app/Contents/MacOS/Google\ Chrome --remote-debugging-port=9222
Check for port conflicts - another process might be using 9222
If previously logged in but now seeing login page:
Tell user to re-login in browser: "您的登录状态已过期,请在浏览器中重新扫码登录"
Wait for user confirmation
Take new snapshot to verify
npx agent-browser --cdp 9222 screenshot error.png
--cdp 9222| Type | Details |
|---|---|
| Images | JPG, PNG, GIF, WebP (1-18 images) |
| Title | Up to ~20 characters recommended |
| Content | Up to ~1000 characters |
| Tags | Up to 5 tags recommended |
触发:/小红书发布 新手、「这个怎么用」「第一次用」「能干嘛」「带我走一遍」,
以及用户输入了技能名却没有给任何任务的时候。
这个模式的铁律:不假设、不索取。用户可能什么都没准备, 不要一上来就问他要文件、要 API key、要具体需求。按下面四步走:
一、先说清楚这是什么(三句话以内)
一句话:把图文直接发到小红书草稿箱。 它连的是你已经登录的浏览器,不需要你交出账号密码, 而且永远只存草稿,发不发由你在小红书里点。
二、给编号选项,让他按回车就能继续
不要问开放式问题(「你想做什么?」对新手是负担)。给 3 个选项加一个默认:
想先看哪个?(直接回车 = 1)
1. 先看看整个流程长什么样(示例)
2. 把这组图发成草稿
3. 先讲讲要准备什么
三、直接演示一遍,边做边解释
选完立刻做给他看,用示例数据,不需要他提供任何东西。 每做完一步,加一行「💡 刚才发生了什么」,一句话说明这步的意义。
四、毕业
演示完只问一个是非题:「要不要用你自己的笔记真跑一遍?」
答是就进正常流程;答否就告诉他随时回来输 /小红书发布 新手。
关于前置条件:这个技能需要 一个开着调试端口的 Chrome,并且已经登录小红书创作服务平台。 新手模式下不要提前索取——先用示例数据演示完,到第四步真跑的时候再引导他配置, 并说清楚在哪配、怎么拿。新手最容易在这一步流失。