Skip to main content
ClaudeWave
Skill107 estrellas del repoactualizado 4d ago

wjs-syndicating-articles

This skill auto-syndicates the latest unsyndicated WeChat public account article to multiple social platforms using a single post copy. It posts directly to API-enabled platforms (X, Bluesky, Threads, LinkedIn) via automated scripts while preparing copy-paste templates in an outbox for manual platforms (Facebook, Little Red Book, Jike, Zhihu). Use it when distributing daily articles across social channels or when triggered by phrases like "分发文章到各平台" or "同步到社交平台".

Instalar en Claude Code
Copiar
git clone --depth 1 https://github.com/jianshuo/claude-skills /tmp/wjs-syndicating-articles && cp -r /tmp/wjs-syndicating-articles/wjs-syndicating-articles ~/.claude/skills/wjs-syndicating-articles
Después abre una sesión nueva de Claude Code; el skill carga automáticamente.

SKILL.md

# wjs-syndicating-articles

每天把最新一篇还没分发过的公众号文章,扇出(syndicate)到各社交平台。**一套文案走天下**,有 API 的真发,没 API 的备好待发件箱让你手动粘。

## Core Principles

- **稳定第一**:每个平台是独立步骤,一个失败绝不影响其它。
- **幂等去重**:`state/history.jsonl` 按 `(slug, platform)` 记录;重复跑只补发没成功的,永不重复发。
- **凭证降级**:API 平台缺/过期凭证 → 自动转 outbox(手动),不报错。
- **署名 / CTA 用「王建硕」**(用户全局偏好),不写营销腔、不堆 hashtag/@/emoji(除非原文有)。

## Inputs

```
/wjs-syndicating-articles                 # 选最新未分发文章,走完整流程(默认/定时用)
/wjs-syndicating-articles <article-folder># 显式指定文章
/wjs-syndicating-articles --open          # 交互模式:打开手动平台 web 页 + 文案进剪贴板
/wjs-syndicating-articles --dry-run       # 只草拟,不发、不写 history
/wjs-syndicating-articles --mark <slug> <platform>  # 手动标记某平台已发
```

`SKILL_DIR = ~/.claude/skills/wjs-syndicating-articles`

## Workflow (default / scheduled run)

### Step 0: --mark short-circuit
若调用是 `--mark <slug> <platform>`:`bash $SKILL_DIR/scripts/history.sh record <slug> <platform> posted` 然后告诉用户已标记,结束。

### Step 1: 选文章
```bash
bash $SKILL_DIR/scripts/pick-next-article.sh
```
- 显式指定了 `<article-folder>` 则跳过此脚本,直接用它。
- 输出为空 → 最近文章都分发完了,今天 rest day,结束。
- 记 `FOLDER`,`SLUG=$(basename "$FOLDER")`。

### Step 2: 抽一套核心文案(你来做,不是脚本)
读 `$FOLDER/article.md` 和 `$FOLDER/meta.json`。抽出**一段最 quotable 的核心句/小段,≤120 字**(保证塞进 X 的 280 字符;中文每字算 2),保留王建硕语气。再加一行软 CTA + 文章链接(公众号链接,没有就用 `meta.json` 里信息+ `article_url_base`)。

把最终文案写进 `$SKILL_DIR/outbox/<date>-<SLUG>/post.txt`(先 `mkdir -p`)。`<date>=$(date +%F)`。

`--dry-run` 时:打印 post.txt 内容 + 下面每个平台「将发什么」,**不**继续 Step 3+,结束。

### Step 3: 扇出(一个确定性脚本搞定,LLM 不碰 key)
```bash
bash $SKILL_DIR/scripts/syndicate.sh "$FOLDER" "$POST_TXT"
```
`syndicate.sh` 内部:slug 一律取 `basename "$FOLDER"`;API 平台(X/Bluesky/Threads/LinkedIn)逐个 try/catch 真发,X 会先查 tweeting skill 的 history 防双发,缺凭证的自动降级记 `queued`;手动平台(Facebook/小红书/即刻/知乎)调 `build-outbox.sh` 备好 `outbox/<slug>/` 并记 `queued`。**不要自己手写平台循环或拼 slug** —— 全交给脚本,避免 key 漂移。`--dry-run` 时改跑 `syndicate.sh "$FOLDER" "$POST_TXT" --dry-run`(不发、不写 history)。脚本 stdout 的每行 `  <platform>: ...` 和末尾 `outbox=...` 就是 Step 5 汇总的数据来源。

### Step 5: 通知 + 汇总
打印一张表:每个平台 status(posted+URL / queued(outbox) / failed / skipped)。
无人值守(定时)跑:发一条 PushNotification,例:「✅ X、Bluesky 已发;📋 Facebook/小红书/即刻/知乎 在 outbox 待粘:$OUTBOX」。
**不要**在 Step 5 自动开浏览器——那是 `--open` 的事。

## --open mode(交互,发手动平台时)
1. 找到今天的 outbox:`$SKILL_DIR/outbox/$(date +%F)-<SLUG>`(或最新一个)。
2. `cat OUTBOX/post.txt | pbcopy`(文案进剪贴板)。
3. 用 `/browse` skill 打开 config 里 facebook、jike、zhihu 的 `web_compose`。
4. 小红书:`open "$OUTBOX/image.png"`(Finder 弹出),提示用户 AirDrop 到手机、文案已在剪贴板。
5. 逐个提示:粘贴 → 发布。用户发完某个可 `--mark <slug> <platform>`。

## File Layout
```
$SKILL_DIR/
├── SKILL.md  config.json  secrets.json(gitignored)
├── scripts/  lib.sh history.sh pick-next-article.sh post-*.sh build-outbox.sh
├── outbox/<date>-<slug>/  post.txt image.png OPEN.md
└── state/history.jsonl
```

## 配置 API 平台(可选,配了才真发)
拷 `secrets.json.example` → `secrets.json`,按需填 bluesky / threads / linkedin。不填的平台自动走 outbox。

## Daily 自动化
```
/schedule daily 10:00 /wjs-syndicating-articles
```
skill-quality-reviewerSubagent

Repo-wide drift detector for the wjs-* Claude Code skills in this marketplace. Sweeps every SKILL.md, scores it against the repo's own conventions (V-ing naming, trigger-phrase density, companion files, description shape), and returns a grouped punch list ordered by severity. Read-only — never edits files. Use before pushing a batch of skill changes, or whenever you wonder "are these skills still internally consistent?

wangjianshuo-perspectiveSkill

|

wjs-auditing-projectSkill

Use when the user asks to audit what's wrong with a project, "make it right", "看看项目出了什么问题", "为什么用户的需求还没上线", "为什么没提交App Store", "为什么没新build", or wants a holistic state-of-the-project check covering unmerged branches, stalled PRs, failed GitHub Actions, stale builds, plan drift (TODOS.md / ROADMAP), unreleased commits, and log errors. Runs read-only investigation, presents a grouped checklist, fixes only after explicit user confirmation. Aware of the Cathier iOS app workflow (Xcode + fastlane + auto-merge @claude PRs from in-app feedback).

wjs-burning-subtitlesSkill

Use when the user has a video + an SRT and wants the subtitles either burned into the pixels (libass, always-visible) or soft-muxed as a togglable track. Also handles the final composite step for the localization pipeline — burn subs, mix a dub track, and keep the original audio as a low-volume bed, all in ONE ffmpeg encode (no cascade). Verifies libass availability and auto-downloads a static evermeet ffmpeg build when Homebrew's stripped binary lacks it. Triggers — "烧字幕", "硬字幕", "burn subtitles", "burn-in subs", "embed subtitle", "soft mux SRT", "把字幕烧进视频", "做最终合成".

wjs-cleaning-spamSkill

Use when the user complains about spam on his X/Twitter posts — 同城面付 / 寻固炮 / 线下上门 / 免费破处 这类引流号在他推文下刷的 emoji 垃圾回复 — and wants them removed. Covers the last 7 days (X recent-search window). Triggers — "把这些spam删掉", "清理X垃圾回复", "推文下面好多引流号", "clean spam replies", "/wjs-cleaning-spam".

wjs-converting-text-to-videoSkill

Use when the user wants a 王建硕-style WeChat article (article.md) turned into a narrated short MP4 video — TTS voiceover via 火山引擎 Volcano TTS, HyperFrames CSS/GSAP animation per scene, subtle SFX, abstract watercolor background, full pipeline rendering to 1080×1920 portrait MP4 (30-90s). Triggers — "把这篇文章做成视频", "做一个解说视频", "讲解视频", "/wjs-converting-text-to-video".

wjs-converting-wp-to-hugoSkill

Use when migrating a WordPress site to a Hugo static site on GitHub Pages from a WXR export (.xml) plus the wp-content/uploads folder — preserving /archives/<id>/ URLs, localizing images, and deploying via GitHub Actions. Triggers — "把 WordPress 迁成 Hugo", "wordpress 转静态站", "migrate WordPress to Hugo", "WXR to Hugo", "publish WordPress to GitHub Pages", "/wjs-converting-wp-to-hugo".

wjs-dubbing-videoSkill

Use when the user has a video + a target-language SRT and wants the video to actually speak that language — generates a time-aligned TTS voice dub. Routes by voice ID — Volcano (豆包) TTS for Chinese, edge-tts neural for any language. Defaults to one voice (single-speaker); opt-in multi-speaker via visual diarization. Outputs `*_<lang>_dub.mp4` with the dub audio in place of the original. Final mixing (audio bed + burn-in) is handed off to `/wjs-burning-subtitles`. Triggers — "配音", "中文配音", "Chinese dub", "voice over this", "dub the video", "TTS this SRT", "different voice for each speaker".