← All skills
Tencent SkillHub · Communication & Collaboration

OpenClaw Profanity Plugin

Content moderation plugin for OpenClaw/Moltbot AI agents. Use when building chatbots that need profanity filtering, moderating user messages in Discord/Slack/Telegram bots, or adding content moderation to OpenClaw agents.

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Content moderation plugin for OpenClaw/Moltbot AI agents. Use when building chatbots that need profanity filtering, moderating user messages in Discord/Slack/Telegram bots, or adding content moderation to OpenClaw agents.

⬇ 0 downloads ★ 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
SKILL.md

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.

Upgrade existing

I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.0.0

Documentation

ClawHub primary doc Primary doc: SKILL.md 14 sections Open source page

OpenClaw Profanity Plugin

Profanity detection plugin for OpenClaw and Moltbot AI agents. Adds automated content moderation to your chatbot with leetspeak, Unicode, and multi-language support.

Installation

npm install openclaw-profanity

Setup with OpenClaw

import { OpenClaw } from 'openclaw'; import { profanityPlugin } from 'openclaw-profanity'; const bot = new OpenClaw({ plugins: [ profanityPlugin({ action: 'warn', // warn | censor | block | log detectLeetspeak: true, normalizeUnicode: true, languages: ['english'], customWords: [], ignoreWords: [] }) ] });

Configuration Options

OptionTypeDefaultDescriptionactionstring'warn'Action on profanity: warn, censor, block, logdetectLeetspeakbooleantrueCatch f4ck, sh1t patternsnormalizeUnicodebooleantrueCatch Cyrillic lookalikeslanguagesarray['english']Languages to checkcustomWordsarray[]Additional words to flagignoreWordsarray[]Words to whitelistonViolationfunction-Custom handler for violations

warn - Respond with warning

profanityPlugin({ action: 'warn' }) // Bot responds: "Please keep the chat clean."

censor - Replace and continue

profanityPlugin({ action: 'censor', replaceWith: '***' }) // "What the ***" is processed normally

block - Ignore message entirely

profanityPlugin({ action: 'block' }) // Message is not processed

log - Log and continue

profanityPlugin({ action: 'log' }) // Logs violation, processes normally

Custom Violation Handler

profanityPlugin({ action: 'custom', onViolation: async (message, result, context) => { // Track repeat offenders await trackViolation(message.userId, result.profaneWords); // Custom response if (getViolationCount(message.userId) > 3) { await banUser(message.userId); return { blocked: true }; } return { blocked: false, warning: "First warning..." }; } })

Discord Bot

const bot = new OpenClaw({ platform: 'discord', plugins: [ profanityPlugin({ action: 'censor', detectLeetspeak: true, languages: ['english', 'spanish'] }) ] });

Telegram Bot

const bot = new OpenClaw({ platform: 'telegram', plugins: [ profanityPlugin({ action: 'warn', onViolation: (msg, result) => { return { reply: `Watch your language, ${msg.username}!`, deleteOriginal: true }; } }) ] });

Slack Bot

const bot = new OpenClaw({ platform: 'slack', plugins: [ profanityPlugin({ action: 'log', onViolation: (msg, result) => { notifyModerators(msg.channel, msg.user, result); } }) ] });

Detection Capabilities

The plugin catches: Direct profanity: Standard bad words Leetspeak: f4ck, sh1t, @$$, b1tch Unicode tricks: Cyrillic а instead of a, etc. Spaced letters: f u c k, s.h.i.t Mixed obfuscation: fü©k, $h!t

Resources

npm: https://www.npmjs.com/package/openclaw-profanity GitHub: https://github.com/GLINCKER/glin-profanity/tree/release/packages/openclaw Core library docs: https://www.typeweaver.com/docs/glin-profanity

Category context

Messaging, meetings, inboxes, CRM, and teammate communication surfaces.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
1 Docs
  • SKILL.md Primary doc