douyin-engager

WarnAudited by ClawScan on May 18, 2026.

Overview

This skill openly automates Douyin comments and follows from a logged-in account, but the bulk public actions and saved session make it risky to install without careful review.

Install only if you are comfortable letting an automation script act from your Douyin account. Review the comment text, count, and targets carefully, use test mode first, consider a separate account, and clear the saved browser_data profile when finished.

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

The user's Douyin account can post public comments and follow accounts automatically, which can harm reputation, trigger account restrictions, or create spam-like behavior.

Why it was flagged

The script directly clicks Follow and submits a comment on Douyin videos using browser automation.

Skill content
await btn.click() ... await comment_input.fill(comment) ... await page.keyboard.press("Enter")
Recommendation

Require explicit review of target videos before posting or following, keep counts low, use dry-run/test mode first, and make each public action user-approved.

What this means

Anyone or any later agent run with access to the saved browser profile could potentially act as the logged-in Douyin account.

Why it was flagged

The skill requires the user to log into Douyin and persists that authenticated session, but the metadata declares no credential requirement.

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

Declare the Douyin session as a credential requirement, isolate the browser profile, document how to clear it, and require fresh confirmation before using any saved session.

What this means

Users may be encouraged to run activity that platforms or other users perceive as manipulation or spam.

Why it was flagged

The guidance discusses avoiding Douyin risk controls and account-warming behavior, which supports automated promotional engagement rather than only safe user assistance.

Skill content
频繁操作可能触发抖音风控,建议间隔不要太短 ... 新账号建议先养号,不要一上来就大量互动
Recommendation

Reframe guidance around platform-compliant use, anti-spam limits, and user accountability rather than avoiding risk-control systems.

What this means

Installation may require extra local packages not visible in the registry metadata.

Why it was flagged

The skill depends on Playwright and a Chromium browser installation, but the registry install specifications and required binaries are empty.

Skill content
pip install playwright
playwright install chromium
Recommendation

Declare Playwright/Chromium dependencies in the install metadata or provide a reviewed install spec.