Baoyu Post To Weibo

ReviewAudited by ClawScan on May 11, 2026.

Overview

The skill mostly matches its Weibo-posting purpose, but it explicitly uses logged-in Chrome automation to bypass anti-bot detection and runs OS-level clipboard/keystroke commands.

Before installing, make sure you are comfortable letting the skill drive a logged-in Chrome session and use your clipboard/keystrokes to compose Weibo content. Use a dedicated Chrome profile, review all text and media in the browser before clicking publish, avoid switching apps while it runs, and prefer a trusted local Bun installation over the npx fallback.

Findings (4)

Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.

What this means

Using this may put the user's Weibo account or content at risk if Weibo treats the automation as evasion, even though the artifact says the final publish click is manual.

Why it was flagged

The skill advertises browser automation specifically as a way to bypass anti-bot detection while preparing public social-media posts.

Skill content
Posts text, images, videos, and long-form articles to Weibo via real Chrome browser (bypasses anti-bot detection).
Recommendation

Install only if you are comfortable with browser automation against Weibo. Keep the manual review step, avoid using it to evade platform protections, and consider using a dedicated Weibo account/profile.

What this means

Anyone or any agent process using the same configured Chrome profile could compose content under the logged-in Weibo account.

Why it was flagged

The skill relies on a saved browser session to act as the user's logged-in Weibo account.

Skill content
First run: log in to Weibo manually (session saved)
Recommendation

Use a dedicated Chrome profile for this skill, review the browser before publishing, and log out or remove the profile if you no longer want the skill to have account access.

What this means

If focus is wrong, the skill could paste article content or images into an unintended application.

Why it was flagged

The helper runs OS automation commands to send paste keystrokes to the frontmost or targeted application.

Skill content
const result = spawnSync('osascript', ['-e', script], { stdio: 'pipe' });
Recommendation

Watch the browser while the skill runs, avoid switching apps during paste steps, and stop the run if the wrong application is focused.

What this means

Running through npx may fetch runtime code from the package registry at execution time.

Why it was flagged

If Bun is not installed, the documented runtime fallback can download and run a package via npx. This is a common setup pattern but relies on external package provenance.

Skill content
if `bun` installed → `bun`; if `npx` available → `npx -y bun`
Recommendation

Prefer installing Bun from a trusted source and review or preserve the provided lockfile for the script dependencies.