AI Agent Hub
Back to skills
Douyin Comment Auto-Reply Assistant icon

Douyin Comment Auto-Reply Assistant

Business Operations Updated 2026.08.30

Paste the following prompt into your AI chat to install this skill:

Please install @user_f4e1eca6/douyin-reply-comments-helper according to https://skillhub.cn/install/skillhub.md.

About this skill

Problem

Creators often have to open multiple Douyin videos or image posts, scroll through lazy-loaded comments, check which comments lack a creator reply, and type each response manually. Plain window.scrollBy may not trigger comment loading, and Draft.js editors do not accept document.execCommand. Manual work is repetitive, while formulaic replies can feel robotic.

How It Works

  • Entry point: Prefer the personal profile post flow, opening /video/{id} or /article/{id} and entering the comment section.
  • Comment loading: Use page.evaluate to find the real scroll container, scroll inside it step by step, and detect the end marker such as no more comments.
  • Reply state: Check for the creator or author marker under each user comment to determine whether it has already been answered.
  • Sending: Scroll the target into view, then type with page.keyboard.type; avoid identical phrasing, rapid consecutive sends, and overused emoji.

Boundaries and Caveats

  • The browser must already be logged in to Douyin, and the target posts must be accessible to the owner.
  • This is closer to a personal operations helper than a mass-marketing automation tool; replies should remain natural and spaced.
  • DOM changes can affect container selection, reply-button location, or author-marker detection, so selectors may need adjustment.

Use Cases

  • After publishing a video, open the profile post comments and reply to audience comments that lack an author response.
  • While managing several image posts, load each comment section, find comments without an author marker, and add replies.
  • Use the creator comment center as a fallback to verify whether a disputed comment has been answered and add an explanation.
  • Before running the reply flow, confirm the browser is logged in, the post URL is correct, and the comment container loads.

Best For

  • Douyin content creators who need to reply daily to unreplied comments on videos and image posts.
  • Operators managing multiple post portfolios who want to check each work's comments and avoid missed replies.
  • Browser automation engineers who need stable container scrolling, reply-button targeting, and Draft.js typing.
  • Editorial feedback coordinators who need to convert unreplied audience comments into natural, varied responses.