Install
openclaw skills install community-operationsClawHub Security found sensitive or high-impact capabilities. Review the scan results before using.
Design and implement automatic community commenting workflows driven by existing site content, with optional support for automatic posting and multi-account execution. Use when building auto-comment systems that read comics, articles, novels, or videos from a database, generate natural-looking comments from that content, rotate across multiple accounts, schedule tasks, and optionally hand off generated comments to moderation before or after submission.
openclaw skills install community-operationsUse this skill to build or operate content-driven automatic commenting systems. The primary use case is: read existing site content from the database, generate comments that match the content type, assign those comments to one or more accounts, and publish them with scheduling, rate limits, and optional moderation handoff.
This skill can later expand into automatic posting, but the first priority is automatic commenting based on existing content.
Keep responsibilities separate:
This skill owns:
This skill does not own:
If moderation is required, integrate a dedicated moderation skill or service such as post-content-moderation.
Prioritize this workflow first:
existing content in database
→ extract content summary
→ generate comment candidates
→ choose account
→ optional moderation
→ submit comment
→ log result
Target content sources include:
Build a unified comment-input structure even if the original tables differ.
Recommended normalized fields:
content_typecontent_idtitlesummaryauthortagscategory_idtopic_idpublished_atextraExample:
{
"content_type": "comic",
"content_id": 123,
"title": "标题",
"summary": "摘要",
"author": "作者",
"tags": ["热血", "校园"],
"extra": {}
}
Do not use one generic template for every content type. Generate comments differently based on the source.
Prefer comments about:
Prefer comments about:
Prefer comments about:
Prefer comments about:
Generate multiple styles instead of repeating one voice.
Recommended style buckets:
Avoid repetitive low-quality outputs like:
不错啊写得真好支持一下期待更新Those can appear occasionally, but should not dominate the comment pool.
When asked to build the system, follow this order:
Clarify:
Create a common extraction layer that maps different content models into one unified comment input object.
Define:
Define:
Use this chain:
select target content
→ build normalized content input
→ generate comment candidates
→ filter / deduplicate
→ optional moderation
→ choose account
→ submit comment
→ log result
→ retry or cooldown
Always add:
If multiple accounts are used, always define:
Do not design a system where all accounts can comment indefinitely with no rotation or no cooldown.
Always prevent:
Recommended controls:
If generated comments must be checked, choose one mode:
Use when generated comments must not enter the system unless clean.
Use when the project already supports post-save review states.
Use when comments get basic local filtering before submit and full moderation after submit.
Do not merge moderation policy directly into this skill. Keep moderation as a dependency.
At minimum, log:
This skill may later expand to:
But first build automatic commenting based on existing content well.
Store:
references/51dm-auto-comment-schema-plan.mdreferences/51dm-auto-comment-implementation-v1.mdreferences/51dm-auto-comment-task-breakdown-v1.mdreferences/51dm-comment-reuse-plan.mdreferences/human-like-comment-strategy.mdStore:
For the first version, build only these:
Do not start with full posting automation unless the user explicitly prioritizes it.