Install
openclaw skills install @jinhuadeng/douyin-comment-auto-replyDouyin comment operations workflow for your own account videos. Use when the user wants to collect, classify, draft, review, or semi-automate replies to comments under their own Douyin videos. Supports comment intent analysis, bilingual or Chinese-first reply drafting, objection handling, lead filtering, escalation rules, and reply SOP design. Also use when the user wants to build or improve a reusable Douyin comment reply process instead of answering comments one by one.
openclaw skills install @jinhuadeng/douyin-comment-auto-replyUse this skill to turn messy Douyin comment handling into a repeatable operating workflow.
Recommended display name: Douyin Comment Auto Reply / 抖音评论自动回复.
Default goal:
Default scope:
Follow this sequence unless the user asks for only one piece.
Clarify the business context Identify:
Choose the operating mode
Classify comments before replying Tag each comment into one primary bucket:
Generate replies by bucket Return short, natural, platform-native replies. Prefer one-line or two-line answers. Keep the reply feeling human, not robotic.
Escalate when needed Recommend manual handling when comments involve:
Use these patterns often:
For each comment:
When comments show buying intent, prefer this public flow:
For example:
When the user provides many comments, do not answer blindly one by one first.
Instead:
Use scripts/batch_comment_drafts.py when the user provides exported comments in CSV form.
Expected CSV columns:
commentvideo_topic (optional)intent_hint (optional)priority_hint (optional)notes (optional)Run:
python3 scripts/batch_comment_drafts.py ./comments.csv
python3 scripts/batch_comment_drafts.py ./comments.csv ./comments.drafts.json
The script outputs one JSON item per comment with:
Use scripts/browser_reply_runner.py when the user wants browser-based execution against the Douyin comment management page.
Recommended workflow:
--dry-run first.Example:
python3 scripts/browser_reply_runner.py ./comments.drafts.json \
--url "https://creator.douyin.com/creator-micro/content/manage" \
--reply-box-selector "textarea" \
--submit-selector "button[type=submit]" \
--dry-run
Then real send:
python3 scripts/browser_reply_runner.py ./comments.drafts.json \
--url "https://creator.douyin.com/creator-micro/content/manage" \
--reply-box-selector "textarea" \
--submit-selector "button[type=submit]"
This executor defaults to npx -y agent-browser, so it can work even if agent-browser is not installed globally yet.
Read references/playbook.md for comment buckets, reply templates, escalation rules, and automation design notes.
Read references/douyin-lead-gen-template.md when the user is using Douyin comments to convert AI services, training, deployment, consulting, or other lead-gen offers.
Read references/automation-roadmap.md when the user wants to move from draft generation into semi-automatic or controlled automatic execution.