← Back to Skills Marketplace
solomonneas

Content Scrubber

by Solomon Neas · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ✓ Security Clean
150
Downloads
0
Stars
0
Active Installs
1
Versions
Install in OpenClaw
/install content-scrubber
Description
OpenClaw plugin that scrubs private infrastructure details from outgoing messages. Regex-based redaction of RFC 1918 IPs, localhost ports, SSH targets, and h...
README (SKILL.md)

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

  1. Copy the plugin files to your OpenClaw extensions directory:

    ~/.openclaw/extensions/content-scrubber/
    ├── index.ts
    ├── openclaw.plugin.json
    └── package.json
    
  2. Add to your openclaw.json plugins config:

    {
      "plugins": {
        "entries": {
          "content-scrubber": {
            "enabled": true,
            "config": {
              "dryRun": false,
              "allowedRecipients": []
            }
          }
        }
      }
    }
    
  3. 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]

Usage Guidance
This implementation appears coherent and limited to local redaction. Before installing: (1) enable dryRun first to confirm what will be redacted and avoid accidental over-redaction, (2) review and if needed customize RULES to avoid false positives (e.g., usernames that look like hostnames), (3) limit allowedRecipients rather than leaving it empty if you want exemptions, (4) test in a non-production environment, and (5) note the package has no homepage/author metadata—install only if you trust the source or after reviewing the code (index.ts is short and readable).
Capability Analysis
Type: OpenClaw Skill Name: content-scrubber Version: 1.0.0 The content-scrubber skill is a security-focused utility designed to prevent the accidental leakage of private infrastructure details (such as RFC 1918 IP addresses, localhost ports, and SSH targets) in outgoing messages. The implementation in index.ts uses deterministic regex-based redaction and operates as a message interceptor, aligning perfectly with its stated purpose without any evidence of malicious intent, data exfiltration, or unauthorized execution.
Capability Assessment
Purpose & Capability
Name, description, SKILL.md, and index.ts all implement the same capability: intercept outgoing messages and apply regex rules to redact IPs, localhost ports, hostnames, and SSH targets. No unrelated capabilities (cloud access, filesystem scanning, network exfiltration) are requested or implemented.
Instruction Scope
SKILL.md installation and config steps match the plugin code behavior (registers a message_sending hook, supports dryRun and allowedRecipients). The runtime instructions do not ask the agent to read unrelated files, environment variables, or transmit data to external endpoints.
Install Mechanism
No install spec or remote downloads are used; the skill is distributed as source files to be copied into the extensions directory. This is low-risk and proportional to the stated purpose.
Credentials
The skill requires no environment variables, credentials, or config paths. The plugin reads only its provided configuration (dryRun, allowedRecipients) and runtime event/context fields, which is appropriate.
Persistence & Privilege
always is false (default) and the plugin runs only when enabled by adding it to openclaw.json. It does not modify other plugins or global agent settings.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install content-scrubber
  3. After installation, invoke the skill by name or use /content-scrubber
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.0
Initial release of Content Scrubber for OpenClaw: - Redacts RFC 1918 IPs, loopback addresses, localhost ports, SSH/SCP targets, and custom hostnames from outgoing messages. - Uses fast and auditable regex-based rules, not LLM methods. - Configurable via `dryRun` mode and `allowedRecipients` for fine-grained control. - Integrates as a message interceptor for Discord, Telegram, Signal, and other messaging platforms. - Easy installation and setup in the OpenClaw extensions directory.
Metadata
Slug content-scrubber
Version 1.0.0
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 1
Frequently Asked Questions

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.

💬 Comments