Borrowing it
Nothing to install: this file belongs to EXboys/skilllite. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.
curl -O https://raw.githubusercontent.com/EXboys/skilllite/main/.skills/xiaohongshu-writer/SKILL.mdgit clone --depth 1 https://github.com/EXboys/skillliteWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/exboys/skilllite/xiaohongshu-writer)<a href="https://agentmods.dev/skills/exboys/skilllite/xiaohongshu-writer"><img src="https://agentmods.dev/badge/skills/exboys/skilllite/xiaohongshu-writer/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/exboys/skilllite/xiaohongshu-writer"><img src="https://agentmods.dev/badge/skills/exboys/skilllite/xiaohongshu-writer.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector pass
What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00056 | $0.01288 |
| Opus 5 | $0.00028 | $0.00644 |
| Sonnet 5 | $0.00011 | $0.00258 |
| Haiku 4.5 | $0.00006 | $0.00129 |
Grade A, and why
xiaohongshu-writer scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 10d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 137 lines — stays where its author put it; the contents beside it link to each section on GitHub.
小红书图文创作助手
工作流程
- Agent 用本 Skill 的指引,根据用户主题生成完整内容(标题、正文、标签、封面设计)
- 调用本工具,传入生成的
content,建议generate_thumbnail: true - 脚本:优先用 Playwright 渲染 HTML 并截图(效果好、排版一致),失败时回退 Pillow;返回 base64 及保存到
image_path
无需 OpenAI,优先 Playwright HTML 截图,回退 Pillow 绘图。
输出结构(工具返回)
{
"success": true,
"title": "吸睛标题,带 emoji",
"body": "正文内容",
"hashtags": ["#话题1", "#话题2"],
"thumbnail": {
"cover_title": "封面显示标题",
"accent_color": "#FF6B6B",
"style": "gradient",
"image_base64": "封面图 base64(仅当未保存到文件时返回,避免输出过大)",
"image_path": "项目根目录下保存的图片路径,如 xiaohongshu_thumbnail.png",
"image_source": "playwright 或 pillow"
}
}
标题规则
- 长度:15-25 字为宜,信息密度高
- 必备:至少 1 个 emoji,放在开头或关键词处
- 禁止:标题党、夸张承诺、违禁词
- 技巧:数字+结果、反常识、疑问式、场景代入
正文规则
- 分段:每段 2-4 行,多用空行隔开
- 语气:口语化、像朋友分享,用"我"、"你"
- emoji:适当点缀,每段 0-2 个,不过度
- 结构:开头抓人 → 干货/故事 → 总结/互动
- 禁止:硬广感、堆砌关键词、违禁词
标签规则
- 数量:3-5 个
- 搭配:1 个大类话题 + 2-3 个细分 + 1 个热门
- 示例:#生活好物 #平价好物 #宿舍党必备 #618攻略
缩略图(封面)设计
封面为高质量图文风格,包含三部分:主标题、正文摘要(2–5 行)、话题标签。由 Playwright 渲染 HTML 并截图(主)或 Pillow 绘制(备选)生成,竖版 3:4。成功后保存到项目根目录 xiaohongshu_thumbnail.png。
Agent 生成 content 时,thumbnail 需包含:
| 字段 | 说明 | 示例 |
|---|---|---|
cover_title |
封面上显示的主标题(可略,默认用 title) | "3 件办公室好物" |
accent_color |
主色调,十六进制或中文 | "#FF6B6B" 或 "暖橙" |
style |
风格 | "gradient" / "minimal" / "vibrant" |
风格说明
gradient:渐变背景,主色到深色(默认)minimal:简约灰白vibrant:纯色块
使用方式
工具调用:传入 content(必填),即 Agent 已生成的内容。格式:
{
"content": {
"title": "🛒 打工人的 3 件办公室好物!",
"body": "正文...",
"hashtags": ["#办公室好物", ...],
"thumbnail": {
"cover_title": "3 件办公室好物",
"accent_color": "#FF6B6B",
"style": "gradient"
}
},
"generate_thumbnail": true
}
前置条件:
pip install playwright且执行playwright install chromium(优先,skilllite init 时会安装)- 可选回退:
pip install Pillow及中文字体(macOS 自带 PingFang;Linux:apt install fonts-noto-cjk;或于.skills/xiaohongshu-writer/fonts/放入 NotoSansCJKsc-Regular.otf)
What ships with it
1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 10d ago First seen · 137 lines · 56 tokens per session scan A 1cc725b6271f
xiaohongshu-writer is a skill published in the GitHub repository EXboys/skilllite (167 stars, last pushed yesterday), licensed MIT. It adds 56 tokens to every session and 1,288 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
ai-drama-prompt-factory
A prompt-planning workflow that turns a novel or story idea into structured prompts for characters, locations, props, storyboard images, video, and audio. It produces prompt data for other AI generation tools rather than creating the media itself.
ad-ready
Generate advertising images automatically from a product URL + brand profile. ✅ USE WHEN: User provides a product URL (e-commerce link) Want automated product scraping + image generation Have a brand profile to apply (70+ brands available) Need funnel-stage targeting (awareness/consideration/conversion) Want AI to…
agent-soul
Create AI art, mint NFTs, and trade on the Agent Soul marketplace. Use when an agent wants to generate AI art, manage an NFT gallery, buy/sell artwork, or interact with other AI agents on Solana. Authenticated via x402 USDC micropayments.
muse ai
An AI music-creation assistant that generates original songs, instrumental music, and background tracks through conversation. It supports creating lyrics, melodies, arrangements, and different music styles.
2slides
AI-powered presentation generation using 2slides API. Create slides from text content, match reference image styles, or summarize documents into presentations. Use when users request to "create a presentation", "make slides", "generate a deck", "create slides from this content/document/image", or any presentation…
Social Media Content Engine
Complete social media strategy, content creation, scheduling, analytics, and growth system. Plan campaigns, write platform-optimized posts, build content calendars, track performance, and grow audiences systematically.