Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器clawhub未标认证来源可访问clear审计通过

xiaohongshu-longpost-auto小红书长邮汽车

Agent Skill

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

总安装

5,859

周安装

237

GitHub Stars

公开资料未说明

下载量

1,839
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install xiaohongshu-longpost-auto

简介

专用于长文发布的自动化工具,支持分段优化与AI配图生成。

  • 适合已有完整稿件但需高效发布至小红书的个人或团队用户。
  • 自动处理登录检测、内容分段、标签生成、原创声明与发布执行。
  • 仅扫码登录需人工介入,其余步骤全自动化,提升发布效率。
  • 触发词如“长文发布”“分段上传”可激活该技能响应。xiaohongshu-longpost-auto 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
xiaohongshu-longpost-auto
description
When users have long-form content ready to publish on Xiaohongshu, automatically completes the entire process: login detection, long content segmentation optimization, AI-generated images, content filling, AI-generated tags, tag activation, original content declaration, and publishing.

Xiaohongshu Automatic Long-Form Post Publishing

Feature Overview

When users have long-form content ready to publish on Xiaohongshu, automatically completes the entire process: login detection, long content segmentation optimization, AI-generated images, content filling, AI-generated tags, tag activation, original content declaration, and publishing. Only QR code login requires manual operation; all other steps are fully automated.

Trigger Conditions

Trigger this skill when the user mentions any of the following keywords:

  • Xiaohongshu long-form post publishing
  • Publish Xiaohongshu long-form post
  • Automatically publish Xiaohongshu long-form post
  • Xiaohongshu long-form notes
  • Xiaohongshu article publishing
  • 小红书长文发布
  • 发布小红书长文
  • 自动发小红书长文
  • 小红书长文笔记
  • 小红书文章发布

Use Cases

  • Users have existing long-form note content ready to publish on Xiaohongshu

🔄 Workflow

1. Content Preprocessing → 2. Login Detection → 3. Enter Publishing Page → 4. Fill Content → 
5. One-Click Formatting → 6. Select Template → 7. Generate Description → 8. Add Tags → 
9. Declare Original → 10. Publish

Step-by-Step Guide

1️⃣ Content Preprocessing

Segmentation Principles:

  • 300-500 characters per paragraph to maintain reading rhythm
  • Add subheadings for easy browsing
  • Front-load key information; present core points at the beginning of each paragraph
  • Appropriate spacing with blank lines between paragraphs
  • Moderate use of emojis ✨💡

Content Structure:

Opening Hook (50-100 chars) → Spark curiosity or resonate
Body Paragraphs (300-500 chars each) → Problem/Background → Analysis/Methods → Cases/Experience → Summary/Suggestions
Closing Interaction (50 chars) → Encourage comments or saves

2️⃣ Login Detection

Visit: https://creator.xiaohongshu.com/

StatusAction
Logged inDirectly enter publishing page
Not logged inPrompt user to scan QR code, wait for completion

Technical Implementation:

// Detect login status
browser.navigate('https://creator.xiaohongshu.com/')
// If redirected to /login page, not logged in

3️⃣ Enter Publishing Page

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

Operation Steps:

  1. Navigate to the publishing page
  2. Click the "Write Long-Form Post" button
  3. Click "New Creation" to enter the editor

Technical Implementation:

browser.navigate('https://creator.xiaohongshu.com/publish/publish')
browser.snapshot() // Get page elements
browser.act({ kind: 'click', ref: 'e111' }) // Click "Write Long-Form Post"
browser.act({ kind: 'click', ref: 'e148' }) // Click "New Creation"

4️⃣ Fill Content

FieldRequirements
Title≤20 characters, containing 1-2 keywords
Body TextPaste preprocessed content

Technical Implementation:

// Fill title
browser.act({ kind: 'type', ref: 'e253', text: 'Title content' })

// Fill body text (inject using evaluate)
browser.act({
  kind: 'evaluate',
  fn: "() => { const editor = document.querySelector('[contenteditable]'); editor.textContent = 'Body content'; editor.dispatchEvent(new InputEvent('input', {bubbles: true})); return 'done'; }"
})

5️⃣ One-Click Formatting

Click the "One-Click Formatting" button; the system automatically optimizes the format.

Technical Implementation:

browser.act({ kind: 'click', ref: 'e260' }) // Click "One-Click Formatting"

6️⃣ Select Template

Template TypeApplicable Scenarios
Fresh MinimalistLifestyle sharing, reading notes
Workplace ExpertiseExperience summaries, skill sharing
Vibrant FashionBeauty/fashion, trending topics
Warm HealingEmotional stories, inspirational content
Professional RigorousEducational content, tutorials, guides
Logical StructureTech news, industry analysis
Simple BasicGeneral content
Principle: Choose based on content theme and target audience Recommendation: For tech/workplace content, select "Logical Structure" or "Workplace Expertise"

Technical Implementation:

browser.act({ kind: 'click', ref: 'e334' }) // Click "Logical Structure" template
browser.act({ kind: 'click', ref: 'e647' }) // Click "Next"

7️⃣ Generate Body Description

Optimization Principles:

ElementRequirements
Length50-100 characters
ContentSummarize core points or highlights
ToneConversational, friendly
HookCreate suspense or highlight pain points at the beginning
KeywordsInclude 1-2 search keywords

Example:

  • ❌ "This article introduces several methods for time management"
  • ✅ "Same 24 hours, why can others get 3 times the work done? These 5 time management techniques doubled my productivity, number 3 is truly amazing!"

Technical Implementation:

browser.act({ kind: 'type', ref: 'e706', text: 'Description content' })

8️⃣ Add Tags

Tag Structure (5-8 total):

TypeQuantityExample
Core Tags1-2#WorkplaceExpertise #LearningMethods
Niche Tags2-3#TimeManagement #Productivity
Popular Tags1-2#OfficeWorkers #Students
Long-Tail Tags1-2#PomodoroTechnique #MorningJournal

Checklist:

  • ✅ 5-8 tags total
  • ✅ Highly relevant to content
  • ✅ Balanced popularity (high traffic + precise)

Technical Implementation:

browser.act({ kind: 'click', ref: 'e723' }) // Click "Topic" button
browser.act({ kind: 'click', ref: 'e1033' }) // Click recommended tag "#ArtificialIntelligence"
browser.act({ kind: 'click', ref: 'e712' }) // Click recommended tag "#LargeLanguageModels"

9️⃣ Declare Original

Operation Steps:

  1. Check the "Original Content Declaration" checkbox
  2. In the pop-up, check "I have read and agree"
  3. Click the "Declare Original" button

Technical Implementation:

browser.act({ kind: 'click', ref: 'e806' }) // Check original declaration
browser.act({ kind: 'click', ref: 'e1083' }) // Check agreement box
browser.act({ kind: 'click', ref: 'e1088' }) // Click "Declare Original"

🔟 Publish

Pre-Publishing Checklist:

  • [ ] Title complete and engaging (≤20 characters)
  • [ ] Body text formatting looks good
  • [ ] Body description engaging (50-100 characters)
  • [ ] Tags activated (5-8 tags)
  • [ ] Original declaration checked

Technical Implementation:

browser.act({ kind: 'click', ref: 'e1013' }) // Click "Publish"

Publication Success Indicators:

  • Page displays green checkmark ✅
  • Displays "Published Successfully" text
  • Automatically returns to homepage after 3 seconds

⚠️ Important Notes

ItemDescription
Content ComplianceMust comply with Xiaohongshu community guidelines; avoid sensitive words
Image CopyrightAI-generated images should avoid copyright risks
Publishing FrequencyAvoid publishing too frequently in a short period (recommended interval > 1 hour)
Engagement MaintenanceMonitor comments after publishing and respond promptly
Title LengthStrictly control within 20 characters; otherwise cannot publish
Tag CountMinimum 3, maximum 8, recommended 5-6

🛠️ Error Handling

Error ScenarioHandling Method
Login expiredPrompt user to scan QR code again; wait for completion and continue
Element not foundRe-snapshot to get latest ref, retry up to 3 times
Content injection failedCheck contenteditable element, activate using focus()+click()
Image upload failedRetry up to 3 times; if still failing, skip that image
Content moderation promptPrompt user to modify sensitive content
Publishing frequency limitPrompt user to wait before retrying (typically 1-24 hours)
Title too longAutomatically truncate or have AI regenerate a shorter title

Debugging Tips:

// 1. Screenshot to confirm current page status
browser.screenshot({ fullPage: true })

// 2. Get latest element references
browser.snapshot({ refs: 'aria' })

// 3. Check if editor is editable
browser.act({ fn: "document.querySelector('[contenteditable]').isContentEditable" })

🔧 Technical Details

Browser Automation Essentials

1. Element Locating:

  • Use refs: 'aria' to obtain stable aria-ref locators
  • Avoid using unstable XPath or CSS selectors

2. Content Injection:

// Recommended method: Use evaluate + dispatchEvent
browser.act({
  kind: 'evaluate',
  fn: "() => {
    const editor = document.querySelector('[contenteditable]');
    editor.textContent = 'Content';
    editor.dispatchEvent(new InputEvent('input', { bubbles: true }));
    return 'done';
  }"
})

3. Waiting Strategy:

  • Wait 500-1000ms after clicks to allow page to respond
  • Use snapshot to confirm element state before proceeding

🔗 Reference Documentation

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

92.59%
按下载量换算1,703

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

操作浏览器

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

安装前确认

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

来源信息

继续浏览同类 Skills