{
  "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": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/openclaw-profanity",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=openclaw-profanity",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "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."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "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."
        },
        {
          "label": "Upgrade existing",
          "body": "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."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "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."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/openclaw-profanity",
    "agentPageUrl": "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"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "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."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "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."
      },
      {
        "label": "Upgrade existing",
        "body": "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."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "OpenClaw Profanity Plugin",
        "body": "Profanity detection plugin for OpenClaw and Moltbot AI agents. Adds automated content moderation to your chatbot with leetspeak, Unicode, and multi-language support."
      },
      {
        "title": "Installation",
        "body": "npm install openclaw-profanity"
      },
      {
        "title": "Setup with OpenClaw",
        "body": "import { OpenClaw } from 'openclaw';\nimport { profanityPlugin } from 'openclaw-profanity';\n\nconst bot = new OpenClaw({\n  plugins: [\n    profanityPlugin({\n      action: 'warn',              // warn | censor | block | log\n      detectLeetspeak: true,\n      normalizeUnicode: true,\n      languages: ['english'],\n      customWords: [],\n      ignoreWords: []\n    })\n  ]\n});"
      },
      {
        "title": "Configuration Options",
        "body": "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"
      },
      {
        "title": "warn - Respond with warning",
        "body": "profanityPlugin({ action: 'warn' })\n// Bot responds: \"Please keep the chat clean.\""
      },
      {
        "title": "censor - Replace and continue",
        "body": "profanityPlugin({ action: 'censor', replaceWith: '***' })\n// \"What the ***\" is processed normally"
      },
      {
        "title": "block - Ignore message entirely",
        "body": "profanityPlugin({ action: 'block' })\n// Message is not processed"
      },
      {
        "title": "log - Log and continue",
        "body": "profanityPlugin({ action: 'log' })\n// Logs violation, processes normally"
      },
      {
        "title": "Custom Violation Handler",
        "body": "profanityPlugin({\n  action: 'custom',\n  onViolation: async (message, result, context) => {\n    // Track repeat offenders\n    await trackViolation(message.userId, result.profaneWords);\n\n    // Custom response\n    if (getViolationCount(message.userId) > 3) {\n      await banUser(message.userId);\n      return { blocked: true };\n    }\n\n    return { blocked: false, warning: \"First warning...\" };\n  }\n})"
      },
      {
        "title": "Discord Bot",
        "body": "const bot = new OpenClaw({\n  platform: 'discord',\n  plugins: [\n    profanityPlugin({\n      action: 'censor',\n      detectLeetspeak: true,\n      languages: ['english', 'spanish']\n    })\n  ]\n});"
      },
      {
        "title": "Telegram Bot",
        "body": "const bot = new OpenClaw({\n  platform: 'telegram',\n  plugins: [\n    profanityPlugin({\n      action: 'warn',\n      onViolation: (msg, result) => {\n        return {\n          reply: `Watch your language, ${msg.username}!`,\n          deleteOriginal: true\n        };\n      }\n    })\n  ]\n});"
      },
      {
        "title": "Slack Bot",
        "body": "const bot = new OpenClaw({\n  platform: 'slack',\n  plugins: [\n    profanityPlugin({\n      action: 'log',\n      onViolation: (msg, result) => {\n        notifyModerators(msg.channel, msg.user, result);\n      }\n    })\n  ]\n});"
      },
      {
        "title": "Detection Capabilities",
        "body": "The plugin catches:\n\nDirect profanity: Standard bad words\nLeetspeak: f4ck, sh1t, @$$, b1tch\nUnicode tricks: Cyrillic а instead of a, etc.\nSpaced letters: f u c k, s.h.i.t\nMixed obfuscation: fü©k, $h!t"
      },
      {
        "title": "Resources",
        "body": "npm: https://www.npmjs.com/package/openclaw-profanity\nGitHub: https://github.com/GLINCKER/glin-profanity/tree/release/packages/openclaw\nCore library docs: https://www.typeweaver.com/docs/glin-profanity"
      }
    ],
    "body": "OpenClaw Profanity Plugin\n\nProfanity detection plugin for OpenClaw and Moltbot AI agents. Adds automated content moderation to your chatbot with leetspeak, Unicode, and multi-language support.\n\nInstallation\nnpm install openclaw-profanity\n\nSetup with OpenClaw\nimport { OpenClaw } from 'openclaw';\nimport { profanityPlugin } from 'openclaw-profanity';\n\nconst bot = new OpenClaw({\n  plugins: [\n    profanityPlugin({\n      action: 'warn',              // warn | censor | block | log\n      detectLeetspeak: true,\n      normalizeUnicode: true,\n      languages: ['english'],\n      customWords: [],\n      ignoreWords: []\n    })\n  ]\n});\n\nConfiguration Options\nOption\tType\tDefault\tDescription\naction\tstring\t'warn'\tAction on profanity: warn, censor, block, log\ndetectLeetspeak\tboolean\ttrue\tCatch f4ck, sh1t patterns\nnormalizeUnicode\tboolean\ttrue\tCatch Cyrillic lookalikes\nlanguages\tarray\t['english']\tLanguages to check\ncustomWords\tarray\t[]\tAdditional words to flag\nignoreWords\tarray\t[]\tWords to whitelist\nonViolation\tfunction\t-\tCustom handler for violations\nActions\nwarn - Respond with warning\nprofanityPlugin({ action: 'warn' })\n// Bot responds: \"Please keep the chat clean.\"\n\ncensor - Replace and continue\nprofanityPlugin({ action: 'censor', replaceWith: '***' })\n// \"What the ***\" is processed normally\n\nblock - Ignore message entirely\nprofanityPlugin({ action: 'block' })\n// Message is not processed\n\nlog - Log and continue\nprofanityPlugin({ action: 'log' })\n// Logs violation, processes normally\n\nCustom Violation Handler\nprofanityPlugin({\n  action: 'custom',\n  onViolation: async (message, result, context) => {\n    // Track repeat offenders\n    await trackViolation(message.userId, result.profaneWords);\n\n    // Custom response\n    if (getViolationCount(message.userId) > 3) {\n      await banUser(message.userId);\n      return { blocked: true };\n    }\n\n    return { blocked: false, warning: \"First warning...\" };\n  }\n})\n\nPlatform Examples\nDiscord Bot\nconst bot = new OpenClaw({\n  platform: 'discord',\n  plugins: [\n    profanityPlugin({\n      action: 'censor',\n      detectLeetspeak: true,\n      languages: ['english', 'spanish']\n    })\n  ]\n});\n\nTelegram Bot\nconst bot = new OpenClaw({\n  platform: 'telegram',\n  plugins: [\n    profanityPlugin({\n      action: 'warn',\n      onViolation: (msg, result) => {\n        return {\n          reply: `Watch your language, ${msg.username}!`,\n          deleteOriginal: true\n        };\n      }\n    })\n  ]\n});\n\nSlack Bot\nconst bot = new OpenClaw({\n  platform: 'slack',\n  plugins: [\n    profanityPlugin({\n      action: 'log',\n      onViolation: (msg, result) => {\n        notifyModerators(msg.channel, msg.user, result);\n      }\n    })\n  ]\n});\n\nDetection Capabilities\n\nThe plugin catches:\n\nDirect profanity: Standard bad words\nLeetspeak: f4ck, sh1t, @$$, b1tch\nUnicode tricks: Cyrillic а instead of a, etc.\nSpaced letters: f u c k, s.h.i.t\nMixed obfuscation: fü©k, $h!t\nResources\nnpm: https://www.npmjs.com/package/openclaw-profanity\nGitHub: https://github.com/GLINCKER/glin-profanity/tree/release/packages/openclaw\nCore library docs: https://www.typeweaver.com/docs/glin-profanity"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/thegdsks/openclaw-profanity",
    "publisherUrl": "https://clawhub.ai/thegdsks/openclaw-profanity",
    "owner": "thegdsks",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "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"
  }
}