Workflow·Sales & CRM·v1.117.3

Post to Weibo

Posts content to Weibo (微博). Supports regular posts with text, images, and videos, and headline articles (头条文章) with Markdown input via…

You say
Buy it · $24 Read it before you buy $24 Written by JimLiu · unverified publisher
Context cost
22.7k tokensestimated from the bundle, loaded when it triggers
Bundle
8 files · 90.8 kB6 scripts among them — read before you run
Licence
MITpaid listing
Last change
v1.117.3
Servers it uses
Noneruns standalone

What it does

Posts content to Weibo (微博). Supports regular posts with text, images, and videos, and headline articles (头条文章) with Markdown input via Chrome CDP. Use when user asks to "post to Weibo", "发微博", "发布微博", "publish to Weibo", "share on Weibo", "写微博", or "微博头条文章".

Installed, it changes the agent in these ways.

What this skill changes about the agent is not written down here yet. The listing was collected from its source, and the description is in its own SKILL.md.

Workflow

Runs a procedure end to end.

social media
Filed under

Sales & CRM

The skill itself

This is the whole product. A skill is instructions the model reads, so there is nothing behind the listing you cannot see first — the front matter loads with every session, and the body below it loads when the skill triggers.

SKILL.md5.5 kB · 150 lines
--- name: baoyu-post-to-weibo description: Posts content to Weibo (微博). Supports regular posts with text, images, and videos, and headline articles (头条文章) with Markdown input via Chrome CDP. Use when user asks to "post to Weibo", "发微博", "发布微博", "publish to Weibo", "share on Weibo", "写微博", or "微博头条文章". version: 1.117.3 metadata: openclaw: homepage: https://github.com/JimLiu/baoyu-skills#baoyu-post-to-weibo requires: anyBins: - bun - npx ---
14# Post to Weibo
15
16Posts text, images, videos, and long-form articles to Weibo via real Chrome browser (bypasses anti-bot detection).
17
18## Script Directory
19
20**Important**: All scripts are located in the scripts/ subdirectory of this skill.
21
22**Agent Execution Instructions**:
231. Determine this SKILL.md file's directory path as {baseDir}
242. Script path = {baseDir}/scripts/<script-name>.ts
253. Replace all {baseDir} in this document with the actual path
264. Resolve ${BUN_X} runtime: if bun installed → bun; if npx available → npx -y bun; else suggest installing bun
27
28**Script Reference**:
29| Script | Purpose |
30|--------|---------|
31| scripts/weibo-post.ts | Regular posts (text + images) |
32| scripts/weibo-article.ts | Headline article publishing (Markdown) |
33| scripts/copy-to-clipboard.ts | Copy content to clipboard |
34| scripts/paste-from-clipboard.ts | Send real paste keystroke |
35
36## Preferences (EXTEND.md)
37
38Check EXTEND.md in priority order — the first one found wins:
39
40| Priority | Path | Scope |
41|----------|------|-------|
42| 1 | .baoyu-skills/baoyu-post-to-weibo/EXTEND.md | Project |
43| 2 | ${XDG_CONFIG_HOME:-$HOME/.config}/baoyu-skills/baoyu-post-to-weibo/EXTEND.md | XDG |
44| 3 | $HOME/.baoyu-skills/baoyu-post-to-weibo/EXTEND.md | User home |
45
46If none found, use defaults.
47
48**EXTEND.md supports**: Default Chrome profile
49
50## Prerequisites
51
52- Google Chrome or Chromium
53- bun runtime
54- First run: log in to Weibo manually (session saved)
55
56---
57
58## Regular Posts
59
60Text + images/videos (max 18 files total). Posted on Weibo homepage.
61
62```bash
63${BUN_X} {baseDir}/scripts/weibo-post.ts "Hello Weibo!" --image ./photo.png
64${BUN_X} {baseDir}/scripts/weibo-post.ts "Watch this" --video ./clip.mp4
65```
66
67**Parameters**:
68| Parameter | Description |
69|-----------|-------------|
70| <text> | Post content (positional) |
71| --image <path> | Image file (repeatable) |
72| --video <path> | Video file (repeatable) |
73| --profile <dir> | Custom Chrome profile |
74
75**Note**: Script opens browser with content filled in. User reviews and publishes manually.
76
77---
78
79## Headline Articles (头条文章)
80
81Long-form Markdown articles published at https://card.weibo.com/article/v3/editor.
82
83```bash
84${BUN_X} {baseDir}/scripts/weibo-article.ts article.md
85${BUN_X} {baseDir}/scripts/weibo-article.ts article.md --cover ./cover.jpg
86```
87
88**Parameters**:
89| Parameter | Description |
90|-----------|-------------|
91| <markdown> | Markdown file (positional) |
92| --cover <path> | Cover image |
93| --title <text> | Override title (max 32 chars, truncated if longer) |
94| --summary <text> | Override summary (max 44 chars, auto-regenerated if longer) |
95| --profile <dir> | Custom Chrome profile |
96
97**Frontmatter**: title, summary, cover_image supported in YAML front matter.
98
99**Character Limits**:
100- Title: 32 characters max (truncated with warning if longer)
101- Summary/导语: 44 characters max (auto-regenerated from content if longer)
102
103**Markdown-to-HTML**: Do NOT pass any --theme parameter when converting markdown to HTML. Use the default theme (no theme argument).
104
105**Article Workflow**:
1061. Opens https://card.weibo.com/article/v3/editor
1072. Clicks "写文章" button, waits for editor to become editable
1083. Fills title (validated for 32-char limit)
1094. Fills summary/导语 (validated for 44-char limit)
1105. Inserts HTML content into ProseMirror editor via paste
1116. Replaces image placeholders one by one (copy image → select placeholder → paste)
112
113**Post-Composition Check**: The script automatically verifies after all images are inserted:
114- Remaining WBIMGPH_ placeholders in editor content
115- Expected vs actual image count
116
117If the check fails (warnings in output), alert the user with the specific issues before they publish.
118
119---
120
121## Post Type Selection
122
123Unless the user explicitly specifies the post type:
124- **Markdown file** (.md) → **Headline Article** (头条文章)
125- **Plain text** / text with images → **Regular Post**
126
127## Troubleshooting
128
129### Chrome debug port not ready
130
131If a script fails with Chrome debug port not ready or Unable to connect, kill only the CDP Chrome instances (those with --remote-debugging-port AND the baoyu-skills profile), then retry:
132
133```bash
134pkill -f "remote-debugging-port.*baoyu-skills/chrome-profile" 2>/dev/null; sleep 2
135```
136
137**CRITICAL**: Never kill all Chrome processes (pkill -f "Google Chrome"). Only kill Chrome instances launched by CDP with the baoyu-skills profile directory. The user may have regular Chrome windows open.
138
139**Important**: This should be done automatically -- when encountering this error, kill the CDP Chrome instances and retry the command without asking the user.
140
141## Notes
142
143- First run: manual login required (session persists)
144- All scripts only fill content into the browser, user must review and publish manually
145- Cross-platform: macOS, Linux, Windows
146
147## Extension Support
148
149Custom configurations via EXTEND.md. See **Preferences** section for paths and supported options.
150
In the file
SKILL.md731 words
Files8
LicenceMIT
Why you can read it

Nothing in a skill executes. The client loads the text and the model follows it, so a skill can be audited the way a runbook is — by reading it.

What it costs in context

Skills are not billed by the call. They are paid for in context: every token the instructions occupy is a token your code, your diff and your conversation cannot use. Here is what this one takes and when it takes it.

≈120
always loaded
The name and description, so the model knows the skill exists and when to reach for it.
22,580
on trigger
The instruction body and 7 supporting files, read only when the skill fires.
11.3%
of a 200k window
Ten skills this size would take about 114% of the window before you open a file.
050k100k150k200k context window

22.7k tokens, estimated from the bundle at four bytes to the token, held for the rest of the session once it triggers. Heavy. Teams tend to install this one per project rather than globally, and load it only when the job comes up.

Servers bill, skills cost

A server charges by the month. A skill charges once per session, in context, and then keeps charging it for as long as the session lives.

Before and after

The same question, put to the same model twice: once as it comes, and once with these instructions loaded.

No worked example has been published for this skill yet.

Adoption
Installsnone yet
Ratingno reviews yet

The procedure it runs

The procedure has not been published here. It is in the skill’s own SKILL.md, which its author has not sent to the marketplace yet.

Prose, not code

These steps are written for a model to follow, not executed by a runtime. It can still be told to skip one, and it will say so when it does.

Servers it uses

None. This skill calls no MCP servers at all.

Everything it needs is in the instructions, so it works in a project with nothing connected — the model reads the file and changes how it works with what it can already reach.

It writes no files and reaches no network. All it changes is how the model reasons and writes.

What it asks for
Writes filesno
Network accessno

Read from the allowed-tools line of this skill’s own SKILL.md. A skill grants no permissions of its own — it can only ask for tools your client already has.

What it will not do

Every skill is narrow, and the useful ones say where they stop. These are the jobs this one is the wrong tool for.

What this skill is not for has not been published here. Nothing is implied by that: it is a section the author has not filled in.

What is in the bundle

8 files, 90.8 kB on disk. Mostly text — the instructions the model reads — with 6 scripts in it that your client would run only if the instructions tell it to.

  • SKILL.md5.5 kB
  • scripts/copy-to-clipboard.ts12.2 kB
  • scripts/md-to-html.ts5.8 kB
  • scripts/package.json0.2 kB
  • scripts/paste-from-clipboard.ts5.7 kB
  • scripts/weibo-article.ts47.0 kB
  • scripts/weibo-post.ts9.8 kB
  • scripts/weibo-utils.ts4.6 kB
What is not in it

A skill installs nothing and depends on nothing: it is a folder your client reads. This one carries 6 scripts beside the text, so the bundle is 8 files you can review in full before installing. The MIT licence covers the templates and examples as well as the instructions.

Install

Installing copies the bundle into your project. Nothing runs at install time — the files sit on disk until the model reads them.

$24 once
Post to Weibo · MIT · JimLiu
one-time
Price$24 once
LicenceMIT — the author’s, unchanged by this purchase
Paid throughStripe, once, on the card you add at the checkout
Keeps workingfor good — the files are yours once they are on disk
Updatesevery release of 1.x through this account

You can read the whole bundle before paying — the SKILL.md above is the product, not a preview of it. What the money buys is the delivery: the folder packaged and handed to your machine by key, every update its author ships, and our support if it does not do what this listing says. The terms of use are MIT, set by the author and unchanged by buying it here.

Payment runs through Stripe, on a page like this one rather than a redirect. Once there is an account it joins the same mcprush invoice as everything else you run, so there is never a second card to enter.

Which clients pick it up on their own

A skill is a folder of text. A client with a skills folder reads it without being told; everywhere else the same text works, it is just handed to the model rather than found.

Claude Code.claude/skills/
Claude Desktop
ChatGPT
Cursor.cursor/skills/
VS Code.github/skills/
Codex CLI.agents/skills/
Gemini CLI.gemini/skills/
Grok.grok/skills/
Zed.agents/skills/
Windsurf.windsurf/skills/
Agent SDK.claude/skills/
HTTP / API
This release
Version1.117.3
Publishedno release date on file
Price$24
Referencejimliu/post-to-weibo

Versions

v1.117.3 is what is on the shelf; no release here carries a date. Instructions change more often than APIs do — a skill can be rewritten entirely without anything it depends on moving.

v1.117.3
  • No earlier releases have been published to the marketplace.
Pinning

Put jimliu/post-to-weibo@1.117.3 in the install command to hold this exact version. Without the suffix you get whatever is current the day you install, and nothing moves under you afterwards.

Reviews

no reviews yet · no installs yet

Nobody has reviewed this skill yet. The rating is the mean of the reviews written here, so there is none until somebody writes the first.

Who can post

Only accounts that have had the skill installed for fourteen days, so a review is written after living with it rather than after reading it. Publishers may reply once.

Who wrote it

JI
JimLiu

Publishes on mcprush.

0 servers listed3 skills listednot claimed
Profile
Publisher
Servers0