Content Scrubber
/install content-scrubber
Content Scrubber
An OpenClaw extension plugin that intercepts outgoing messages and redacts private infrastructure details before delivery.
What It Catches
- RFC 1918 IPv4 addresses: 10.x.x.x, 172.16-31.x.x, 192.168.x.x
- Loopback addresses: 127.x.x.x
- localhost with ports: localhost:8080, localhost:3000, etc.
- SSH/SCP targets: [email protected]:/path
- Custom hostnames: configurable hostname patterns
How It Works
The plugin registers as a message interceptor. Before any message leaves OpenClaw (Discord, Telegram, Signal, etc.), it runs through regex-based scrubbing rules that replace private details with safe placeholders like [redacted-ip], [redacted-service], [redacted-target].
Rules are deterministic (regex, not LLM), so they're fast, auditable, and never miss edge cases that an LLM scrubber would.
Installation
-
Copy the plugin files to your OpenClaw extensions directory:
~/.openclaw/extensions/content-scrubber/ ├── index.ts ├── openclaw.plugin.json └── package.json -
Add to your
openclaw.jsonplugins config:{ "plugins": { "entries": { "content-scrubber": { "enabled": true, "config": { "dryRun": false, "allowedRecipients": [] } } } } } -
Restart OpenClaw.
Configuration
| Option | Type | Default | Description |
|---|---|---|---|
dryRun |
boolean | false | Log what would be scrubbed without actually redacting |
allowedRecipients |
string[] | [] | Chat IDs where scrubbing is skipped (e.g., private DMs with yourself) |
Example
Before scrubbing:
SSH into [email protected] and check the service on localhost:8096
After scrubbing:
SSH into [redacted-target] and check the service on [redacted-service]
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install content-scrubber - After installation, invoke the skill by name or use
/content-scrubber - Provide required inputs per the skill's parameter spec and get structured output
What is Content Scrubber?
OpenClaw plugin that scrubs private infrastructure details from outgoing messages. Regex-based redaction of RFC 1918 IPs, localhost ports, SSH targets, and h... It is an AI Agent Skill for Claude Code / OpenClaw, with 150 downloads so far.
How do I install Content Scrubber?
Run "/install content-scrubber" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is Content Scrubber free?
Yes, Content Scrubber is completely free, licensed under MIT-0. You can download, install and use it at no cost.
Which platforms does Content Scrubber support?
Content Scrubber is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created Content Scrubber?
It is built and maintained by Solomon Neas (@solomonneas); the current version is v1.0.0.