Community Operations
by @xaviermary56
Design and implement automatic community commenting workflows driven by existing site content, with optional support for automatic posting and multi-account...
clawhub install community-operationsπ About This Skill
name: community-operations version: 1.0.0 description: 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. emoji: π¬ homepage: https://github.com/XavierMary56/OmniPublish metadata: openclaw: requires: bins: - python3
Community Operations
Overview
Use 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.
Core boundary
Keep responsibilities separate:
If moderation is required, integrate a dedicated moderation skill or service such as post-content-moderation.
First-priority capability
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:
Content-driven automatic commenting
Supported source types
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": {}
}
Comment generation rules
Do not use one generic template for every content type. Generate comments differently based on the source.
Comics
Prefer comments about:
Articles
Prefer comments about:
Novels
Prefer comments about:
Videos
Prefer comments about:
Comment style strategy
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.
Comment targeting workflow
When asked to build the system, follow this order:
Step 1. Identify content sources
Clarify:
Step 2. Build a normalized content extractor
Create a common extraction layer that maps different content models into one unified comment input object.
Step 3. Design comment generation
Define:
Step 4. Design account strategy
Define:
Step 5. Design execution path
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
Step 6. Add controls
Always add:
Multi-account rules
If multiple accounts are used, always define:
Do not design a system where all accounts can comment indefinitely with no rotation or no cooldown.
Anti-duplication rules
Always prevent:
Recommended controls:
Moderation handoff guidance
If generated comments must be checked, choose one mode:
Mode A. Review before submit
Use when generated comments must not enter the system unless clean.Mode B. Submit then audit
Use when the project already supports post-save review states.Mode C. Hybrid
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.
Logging requirements
At minimum, log:
Future expansion
This skill may later expand to:
But first build automatic commenting based on existing content well.
Recommended reusable resources
references/
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.mdscripts/
Store:Default recommendation
For the first version, build only these:
Do not start with full posting automation unless the user explicitly prioritizes it.