Token导航 LogoToken导航TokenDH.com
开发需要联网clawhub未标认证来源可访问clear审计提醒

community-operations社区运营

Agent Skill

community-operations 用于整理文档、README、Markdown 和说明材料,适合在 OpenClaw 中需要把零散信息整理成结构清晰的文档时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

1,909

周安装

82

GitHub Stars

公开资料未说明

下载量

669
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:community-operations(社区运营)
来源仓库:https://github.com/xaviermary56/community-operations
安装命令:
openclaw skills install community-operations
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install community-operations

简介

community-operations 设计和实施自动化社区评论工作流,支持多账户发布。

  • 适合在 OpenClaw 中需要扩大内容影响力或收集用户反馈的场景。
  • 可基于网站内容生成评论草稿,提升互动频率。
  • 安装命令为 openclaw skills install community-operations,需确认目标平台政策和登录凭证。
  • 注意维护状态及是否被判定为 spam 行为,建议控制频率和多样性。

SKILL.md

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

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:

  • This skill owns:

- content selection for commenting - comment generation strategy - account rotation - scheduling and task orchestration - publishing execution - duplicate suppression - frequency control - operation logging

  • This skill does not own:

- moderation policy itself - ad/contact-risk rules - final moderation result semantics

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:

  • comics
  • articles
  • novels
  • videos

Content-driven automatic commenting

Supported source types

Build a unified comment-input structure even if the original tables differ.

Recommended normalized fields:

  • content_type
  • content_id
  • title
  • summary
  • author
  • tags
  • category_id
  • topic_id
  • published_at
  • extra

Example:

{
  "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:

  • art style
  • character appeal
  • plot progression
  • update expectations
  • favorite scenes

Articles

Prefer comments about:

  • viewpoint response
  • agreement/disagreement
  • practical reflection
  • follow-up questions
  • short discussion prompts

Novels

Prefer comments about:

  • writing style
  • pacing
  • plot setup
  • character development
  • expectation for later chapters

Videos

Prefer comments about:

  • pacing
  • scene quality
  • plot reaction
  • rewatch value
  • performance or presentation

Comment style strategy

Generate multiple styles instead of repeating one voice.

Recommended style buckets:

  • praise / appreciation
  • discussion / opinion
  • expectation / follow-up
  • question / interaction
  • light emotional reaction

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:

  • which tables or models provide comics, articles, novels, and videos
  • which fields are available for summarization
  • whether comments target only published content
  • whether comments should exclude very old content or low-quality content

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:

  • generation prompt or template policy
  • content-type-specific styles
  • duplicate suppression rules
  • per-content comment count limits
  • unsafe phrase blacklist
  • optional moderation checkpoint

Step 4. Design account strategy

Define:

  • account pool source
  • account roles
  • per-account comment quota
  • cooldown period
  • account disable conditions
  • fallback account selection

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:

  • idempotency keys
  • timeout handling
  • retry limits
  • duplicate-comment suppression
  • per-account frequency caps
  • per-content comment caps
  • audit logging
  • manual disable switch

Multi-account rules

If multiple accounts are used, always define:

  • account id
  • account status
  • role
  • last action time
  • cooldown_until
  • daily quota
  • hourly quota
  • failure count

Do not design a system where all accounts can comment indefinitely with no rotation or no cooldown.

Anti-duplication rules

Always prevent:

  • same account posting the same comment repeatedly
  • many accounts posting nearly identical comments in a short window
  • too many comments on the same content in a short period
  • same template being used on multiple content items without variation

Recommended controls:

  • similarity threshold checks
  • comment hash / normalized hash
  • per-content cooloff window
  • random delay window
  • template variation rules

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:

  • task id
  • content_type
  • content_id
  • account id
  • generated comment
  • generation strategy or style bucket
  • moderation mode used
  • execution result
  • failure reason
  • created_at / updated_at

Future expansion

This skill may later expand to:

  • automatic posting
  • posting + commenting orchestration
  • campaign scheduling
  • multi-account publishing waves

But first build automatic commenting based on existing content well.

Recommended reusable resources

references/

Store:

  • content-extractor template
  • comment-style matrix
  • account rotation template
  • queue design template
  • rollout checklist
  • project-specific schema plans such as references/51dm-auto-comment-schema-plan.md
  • project-specific implementation plans such as references/51dm-auto-comment-implementation-v1.md
  • project-specific task breakdowns such as references/51dm-auto-comment-task-breakdown-v1.md
  • project-specific reuse plans such as references/51dm-comment-reuse-plan.md
  • human-like comment guidance such as references/human-like-comment-strategy.md

scripts/

Store:

  • sample comment generator
  • comment signature examples if needed
  • scheduler/runner examples
  • account rotation pseudocode

Default recommendation

For the first version, build only these:

  • content extractor
  • comment generator
  • account selector
  • comment submitter
  • moderation handoff adapter
  • operation logger

Do not start with full posting automation unless the user explicitly prioritizes it.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

92.36%
按下载量换算618

安全审计

VirusTotal

可疑

ClawScan

可疑

Static analysis

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills