# Send OpenClaw Profanity Plugin to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
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

```text
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.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "openclaw-profanity",
    "name": "OpenClaw Profanity Plugin",
    "source": "tencent",
    "type": "skill",
    "category": "通讯协作",
    "sourceUrl": "https://clawhub.ai/thegdsks/openclaw-profanity",
    "canonicalUrl": "https://clawhub.ai/thegdsks/openclaw-profanity",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/openclaw-profanity",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=openclaw-profanity",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "openclaw-profanity",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T21:41:04.163Z",
      "expiresAt": "2026-05-07T21:41:04.163Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=openclaw-profanity",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=openclaw-profanity",
        "contentDisposition": "attachment; filename=\"openclaw-profanity-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "openclaw-profanity"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/openclaw-profanity"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/openclaw-profanity",
    "downloadUrl": "https://openagent3.xyz/downloads/openclaw-profanity",
    "agentUrl": "https://openagent3.xyz/skills/openclaw-profanity/agent",
    "manifestUrl": "https://openagent3.xyz/skills/openclaw-profanity/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/openclaw-profanity/agent.md"
  }
}
```
## Documentation

### 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
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: thegdsks
- Version: 1.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-04-30T21:41:04.163Z
- Expires at: 2026-05-07T21:41:04.163Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/openclaw-profanity)
- [Send to Agent page](https://openagent3.xyz/skills/openclaw-profanity/agent)
- [JSON manifest](https://openagent3.xyz/skills/openclaw-profanity/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/openclaw-profanity/agent.md)
- [Download page](https://openagent3.xyz/downloads/openclaw-profanity)