X Articles技能使用说明
2026-03-29
新闻来源:网淘吧
围观:14
电脑广告
手机广告
X文章 —— 专为Twitter设计的病毒式长文
战胜算法。使用经过验证的病毒式传播模式,创作并发布X(Twitter)文章。
AI驱动的格式、开篇吸引模式及浏览器自动化。处理Draft.js的特殊性、嵌入限制和图片上传。

快速参考
内容格式规则(至关重要)
X文章使用具有特定特殊性的Draft.js编辑器:
- 换行 = 段落分隔- 每个新行都会创建一个带有间距的新段落块
- 将句子合并在一行- 同一段落中的所有句子必须位于同一行
- 使用纯文本,而非Markdown- X文章使用富文本,而非Markdown
- 不要使用长破折号(—)- 用冒号替换或重写句子
错误示例:
Sentence one.
Sentence two.
Sentence three.
正确示例:
Sentence one. Sentence two. Sentence three.
嵌入限制(重要)
嵌入的帖子总是呈现在内容块的末尾,而不是行内。
变通方案:
- 构建文章结构时注明"参见下方帖子"
- 接受视觉流程:文本→文本→底部嵌入内容
- 使用
插入>帖子菜单(不要直接粘贴网址)
图片规格
| 类型 | 宽高比 | 推荐尺寸 |
|---|---|---|
| 封面/页眉图 | 5:2 | 1792x716或相近尺寸 |
| 内嵌图片 | 16:9或4:3 | 1792x1024(DALL-E高清格式) |
爆款文章结构
模板框架
HOOK (hit insecurity or opportunity)
WHAT IT IS (1-2 paragraphs with social proof)
WHY MOST PEOPLE WON'T DO IT (address objections)
THE [X]-MINUTE GUIDE
- Step 1 (time estimate)
- Step 2 (time estimate)
- ...
YOUR FIRST [N] WINS (immediate value)
- Win 1: copy-paste example
- Win 2: copy-paste example
THE COST (value comparison)
WHAT TO DO AFTER (next steps)
THE WINDOW (urgency)
CTA (soft or hard)
已验证有效的开篇模式
不安感/错失恐惧:
everyone's talking about X... and you're sitting there wondering if you missed the window
重大机遇:
this is the biggest opportunity of our lifetime
新闻热点:
X just open sourced the algo. Here's what it means for you:
颠覆模式:
RIP [profession]. This AI tool will [action] in seconds.
震惊模式:
WTF!! This AI Agent [does amazing thing]. Here's how:
个人故事:
When I was young, I was always drawn to people who...
CTA模式
硬性CTA(互动诱导式):
RT + follow + reply 'KEYWORD' and I'll send the cheat sheet
软性CTA:
If you take this advice and build something, let me know!
简洁型:
Feel free to leave a like and RT if this helped.
风格指南
达米安·普莱尔风格(战术型)
- 全小写(刻意设计)
- 紧迫、战术性语气
- 1500+单词
- 侧重分步细节
- 含引流资料的硬性CTA
亚历克斯·芬恩风格(激励型)
- 标准大小写
- 温暖、激励性语气
- 800-1200单词
- 动机与方法的结合
- 软性CTA+产品链接
丹·柯风格(哲思型)
- 长文形式(2000+单词)
- 个人故事开篇
- 命名框架体系(如“金字塔原理”)
- 深度教学,不止于战术
- 新闻简报CTA
常见错误应避免
- 文章篇幅短于500字
- 仅有事实陈述,缺乏故事性或情感共鸣
- 缺少清晰的章节划分或标题
- 未处理潜在反对意见
- 未设置"即时收获"版块
- 缺少行动号召
- 使用通用化的人工智能式语言
- 过度使用长破折号(—)
- 表情符号使用过量
- 直接粘贴推文链接而未使用插入菜单
浏览器自动化(代理浏览器)
前置条件
- clawd浏览器运行于CDP端口18800
- 浏览器中已登录X平台
导航至文章编辑器
# Open new article
agent-browser --cdp 18800 navigate "https://x.com/compose/article"
# Take snapshot to see current state
agent-browser --cdp 18800 snapshot
粘贴内容
# Put content in clipboard
cat article.txt | pbcopy
# Click content area, select all, paste
agent-browser --cdp 18800 click '[contenteditable="true"]'
agent-browser --cdp 18800 press "Meta+a"
agent-browser --cdp 18800 press "Meta+v"
上传封面图片
# Upload to file input
agent-browser --cdp 18800 upload 'input[type="file"]' /path/to/cover.png
# Wait for Edit media dialog, click Apply
agent-browser --cdp 18800 snapshot | grep -i apply
agent-browser --cdp 18800 click @e5 # Apply button ref
发布文章
# Find and click Publish button
agent-browser --cdp 18800 snapshot | grep -i publish
agent-browser --cdp 18800 click @e35 # Publish button ref
# Confirm in dialog
agent-browser --cdp 18800 click @e5 # Confirm
清理工作(重要!)
# Close tab after publishing
agent-browser --cdp 18800 tab list
agent-browser --cdp 18800 tab close 1
故障排除:元素引用失效
若因元素引用失效导致点击失败,请使用JS评估语句:
agent-browser --cdp 18800 evaluate "(function() {
const btns = document.querySelectorAll('button');
for (let btn of btns) {
if (btn.innerText.includes('Publish')) {
btn.click();
return 'clicked';
}
}
return 'not found';
})()"
内容准备脚本
将Markdown转换为X友好格式
# scripts/format-for-x.sh
#!/bin/bash
# Converts markdown to X Articles format
INPUT="$1"
OUTPUT="${2:-${INPUT%.md}-x-ready.txt}"
cat "$INPUT" | \
# Remove markdown headers, keep text
sed 's/^## /\n/g' | \
sed 's/^### /\n/g' | \
sed 's/^# /\n/g' | \
# Remove markdown bold/italic
sed 's/\*\*//g' | \
sed 's/\*//g' | \
# Remove em dashes
sed 's/ — /: /g' | \
sed 's/—/:/g' | \
# Join lines within paragraphs (keeps blank lines as separators)
awk 'BEGIN{RS=""; FS="\n"; ORS="\n\n"} {gsub(/\n/, " "); print}' \
> "$OUTPUT"
echo "Created: $OUTPUT"
发布前检查清单
- 开篇第一行就用钩子抓住注意力
- 尽早处理反对意见
- 分步说明并附上时间估算
- 包含"即时收获"部分
- 结尾处放置行动号召
- 不使用长破折号(—)
- 句子连接在单行上
- 封面图采用5:2宽高比
- 嵌入内容引用为"见下文"
- 校对是否存在AI腔语言
可推文引用模式
用于推广你的文章:
结果 + 成本:
I gave an AI agent full access to my MacBook. It checks email, manages calendar, pushes code. Costs $20/month. A VA costs $2000.
你不需要X:
You don't need a Mac Mini. You don't need a server. I'm running my AI agent on an old MacBook Air from a drawer.
差距警告:
The gap between 'has AI agent' and 'doesn't' is about to get massive. I set mine up in 15 minutes.
紧迫性:
Most people will bookmark this and never set it up. Don't be most people. The window is closing.
示例工作流程
- 撰写文章使用Markdown并包含清晰的部分
- 运行格式脚本转换为X友好的纯文本
- 生成封面图片使用DALL-E(1792x716或5:2比例)
- 打开X文章编辑器通过浏览器自动化
- 粘贴内容并在编辑器中手动添加章节标题
- 上传封面图片通过文件输入
- 添加内联图片在章节分隔处
- 插入嵌入内容(它们将出现在底部)
- 预览并校对
- 发布
- 发布推广推文包含吸引语和文章链接
相关技能
bird- 用于发布推文的X/Twitter命令行工具去除AI痕迹- 从文本中移除AI术语AI-PDF构建器- 生成PDF(用于潜在客户吸引内容)
文章底部电脑广告
手机广告位-内容正文底部


微信扫一扫,打赏作者吧~