xiaohongshu-publisher▌
iamzifei/red-publisher-skill · updated Apr 8, 2026
MDX-style export adds YAML metadata + attribution linking explainx.ai and this canonical listing URL.
Publish images and notes to Xiaohongshu (小红书) Creator Platform using agent-browser with CDP (Chrome DevTools Protocol) mode.
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
--cdpflag
⚠️ 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 -ioutput. Always take a snapshot before interacting. - The
--cdp 9222flag connects to the browser's debug port instead of launching a new browser. - Do NOT use the
closecommand 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.
-
Check if browser is accessible:
npx agent-browser --cdp 9222 snapshot -i- If connection fails, tell user: "请先启动带调试端口的 Chrome 浏览器"
-
Provide startup command if needed:
/Applications/Google\ Chrome.app/Contents/MacOS/Google\ Chrome --remote-debugging-port=9222
Phase 1: Check Login Status
-
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- Look for "上传图片" button = logged in
- Look for QR code or login form = need to login
-
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
-
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
Phase 4: Fill Title and Content
-
Find title input field from snapshot (placeholder usually contains "标题")
-
Fill title:
npx agent-browser --cdp 9222 fill @e<title_ref> "Your Note Title"- Title limit: ~20 characters recommended
-
Find content/description field (placeholder usually contains "描述" or "正文")
-
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:
-
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- Repeat for each tag (max 5 recommended)
Phase 6: Save as Draft (Default) or Publish
Default Action: Save as Draft
-
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 Explicitly Requests Publishing
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.
Phase 7: Verify and Report
-
Take final snapshot to verify success:
npx agent-browser --cdp 9222 snapshot -i -
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
- 🚨 NEVER AUTO-PUBLISH - ALWAYS
How to use xiaohongshu-publisher on Cursor
AI-first code editor with Composer
Prerequisites
Before installing skills in Cursor, ensure your development environment meets these requirements:
- ›Cursor installed and configured on your development machine
- ›Node.js version 16.0+ with npm package manager (verify with
node --version) - ›Active project directory or workspace where you want to add xiaohongshu-publisher
Execute installation command
Execute the skills CLI command in your project's root directory to begin installation:
The skills CLI fetches xiaohongshu-publisher from GitHub repository iamzifei/red-publisher-skill and configures it for Cursor.
Select Cursor when prompted
The CLI will show a list of available agents. Use arrow keys to navigate and space to select Cursor:
Verify installation
Confirm successful installation by checking the skill directory location:
Reload or restart Cursor to activate xiaohongshu-publisher. Access the skill through slash commands (e.g., /xiaohongshu-publisher) or your agent's skill management interface.
Security & Verification Notice
We perform automated surface-level scans (Gen AI Scanner, Socket, Snyk) during installation. These checks detect common vulnerabilities but do not guarantee complete security. Always review skill source code and verify the publisher's reputation before production use.
Skills execute code in your development environment. Always verify the publisher's identity, review recent commits, and test in isolated environments before production deployment.
List & Monetize Your Skill
Submit your Claude Code skill and start earning
Use Cases▌
User Story & Requirements Generation
Create detailed user stories, acceptance criteria, and feature specs
Example
Generate user stories for 'password reset feature' with acceptance criteria, edge cases, and test scenarios
Reduce spec writing time by 50%, ensure comprehensive coverage
Competitive Analysis
Research competitors, compare features, identify gaps
Example
Analyze 5 competitor products, create feature comparison matrix, suggest differentiation opportunities
Complete competitive research in 2 hours instead of 2 days
Roadmap Prioritization
Evaluate features using frameworks (RICE, ICE, Kano) and create prioritized backlogs
Example
Score 20 feature ideas using RICE framework, generate prioritized roadmap with rationale
Make data-driven prioritization decisions faster
Stakeholder Communication
Draft PRDs, status updates, and stakeholder presentations
Example
Create executive summary of Q3 roadmap, monthly progress report, feature launch announcement
Save 3-5 hours/week on communication overhead
Implementation Guide▌
Prerequisites
- ›Claude Desktop or compatible AI client
- ›Access to product documentation and roadmap tools (Jira, Notion, etc.)
- ›Understanding of product management frameworks (RICE, Jobs-to-be-Done, etc.)
- ›Stakeholder contact information and communication channels
Time Estimate
30-60 minutes to see productivity improvements
Installation Steps
- 1.Install product management skill
- 2.Start with user story generation for known feature
- 3.Progress to competitive analysis: research 2-3 competitors
- 4.Use for roadmap prioritization: apply RICE/ICE scoring
- 5.Draft stakeholder communications and refine based on feedback
- 6.Build template library for recurring PM tasks
- 7.Share effective prompts with product team
Common Pitfalls
- ⚠Not validating competitive research—verify facts before sharing
- ⚠Accepting user stories without involving engineering team
- ⚠Over-relying on frameworks without qualitative judgment
- ⚠Not customizing outputs to company culture and communication style
- ⚠Skipping stakeholder validation of generated requirements
Best Practices▌
✓ Do
- +Validate research and competitive analysis with real data
- +Collaborate with engineering when generating technical requirements
- +Customize frameworks and templates to your company context
- +Use skill for first drafts, refine with stakeholder input
- +Document successful prompt patterns for PM tasks
- +Combine AI efficiency with human judgment and intuition
✗ Don't
- −Don't publish competitive analysis without fact-checking
- −Don't finalize user stories without engineering review
- −Don't make prioritization decisions solely on AI scoring
- −Don't skip customer validation of generated requirements
- −Don't ignore company-specific context and culture
💡 Pro Tips
- ★Provide context: company goals, constraints, customer feedback
- ★Ask for alternatives: 'Show 3 ways to prioritize this roadmap'
- ★Request stakeholder-specific formatting: 'Executive summary vs. engineering spec'
- ★Use skill for 70% generation + 30% customization to company needs
When to Use This▌
✓ Use When
Use for user story writing, competitive research, roadmap prioritization, stakeholder communication, and PRD drafting. Best for reducing repetitive documentation and research work.
✗ Avoid When
Avoid for strategic product vision (requires deep customer empathy), pricing decisions (needs market and financial expertise), or when face-to-face customer discovery is more valuable than speed.
Learning Path▌
- 1Basic: user stories, feature specs, status updates
- 2Intermediate: competitive analysis, prioritization frameworks, PRDs
- 3Advanced: product strategy, go-to-market planning, OKR setting
- 4Expert: product vision, market positioning, business model innovation
Discussion
Product Hunt–style comments (not star reviews)- No comments yet — start the thread.
Ratings
4.4★★★★★49 reviews- ★★★★★Xiao Jackson· Dec 12, 2024
Solid pick for teams standardizing on skills: xiaohongshu-publisher is focused, and the summary matches what you get after install.
- ★★★★★Chaitanya Patil· Dec 8, 2024
xiaohongshu-publisher has been reliable in day-to-day use. Documentation quality is above average for community skills.
- ★★★★★Amelia Mehta· Dec 8, 2024
xiaohongshu-publisher fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.
- ★★★★★Noor Robinson· Dec 8, 2024
xiaohongshu-publisher is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.
- ★★★★★Piyush G· Nov 27, 2024
Solid pick for teams standardizing on skills: xiaohongshu-publisher is focused, and the summary matches what you get after install.
- ★★★★★Noah Srinivasan· Nov 27, 2024
xiaohongshu-publisher reduced setup friction for our internal harness; good balance of opinion and flexibility.
- ★★★★★Xiao Thomas· Nov 27, 2024
Registry listing for xiaohongshu-publisher matched our evaluation — installs cleanly and behaves as described in the markdown.
- ★★★★★Henry Martin· Nov 27, 2024
Keeps context tight: xiaohongshu-publisher is the kind of skill you can hand to a new teammate without a long onboarding doc.
- ★★★★★Kaira Patel· Nov 3, 2024
xiaohongshu-publisher has been reliable in day-to-day use. Documentation quality is above average for community skills.
- ★★★★★Arjun Anderson· Oct 22, 2024
Useful defaults in xiaohongshu-publisher — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.
showing 1-10 of 49