douyin-publisher

ReviewAudited by ClawScan on May 10, 2026.

Overview

This skill appears to do what it claims—post a user-approved video to Douyin—but it uses a logged-in browser profile and can publish public content, so users should review each post carefully.

Install only if you want OpenClaw to automate a logged-in Douyin creator account. Confirm every video, caption, and tag before publishing, and remember that the Douyin session remains saved locally until you remove the skill's browser profile.

Findings (3)

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

If invoked with the wrong video or caption, it could publish unintended content to the user's Douyin account.

Why it was flagged

The script can click Douyin's publish button through browser automation, which is exactly the skill's purpose but is a high-impact public account action.

Skill content
publish_btn = page.query_selector('button:has-text("发布")') ... publish_btn.click()
Recommendation

Only approve execution after verifying the exact video path or URL, title, description, and tags; use the test/login flow first if uncertain.

What this means

Anyone or anything that can use this local OpenClaw browser profile may be able to act as the logged-in Douyin account.

Why it was flagged

The skill requires the user to log in to a Douyin account and persists that browser login state for later use.

Skill content
首次使用需要扫码登录抖音账号。登录状态会保存在浏览器配置中。
Recommendation

Use only on a trusted device and remove ~/.openclaw/browser/douyin-publisher if you want to clear the saved Douyin session.

What this means

Installation may pull the latest compatible Playwright package and browser components from external package sources.

Why it was flagged

The skill depends on Playwright with a version range rather than an exact pinned version, and the registry has no install spec.

Skill content
playwright>=1.40.0
Recommendation

Install dependencies from trusted package indexes, consider pinning versions in controlled environments, and review the installed Playwright browser setup.