← All skills
Tencent SkillHub Β· AI

Openclaw Snitch

Multi-layer blocklist guard for OpenClaw. Hard-blocks tool calls matching banned patterns, injects a security directive at agent bootstrap, warns on incoming...

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

Multi-layer blocklist guard for OpenClaw. Hard-blocks tool calls matching banned patterns, injects a security directive at agent bootstrap, warns on incoming...

⬇ 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
CHANGELOG.md, openclaw.plugin.json, docs/plans/2026-02-25-openclaw-snitch.md, README.md, package-lock.json, package.json

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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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.2

Documentation

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

openclaw-snitch

A configurable blocklist guard for OpenClaw with three enforcement layers: Bootstrap directive β€” injects a security policy into every agent context Message warning β€” flags incoming messages referencing blocked terms Hard block β€” intercepts and kills the tool call + broadcasts a Telegram alert

Hooks (bootstrap + message guard)

After installing this skill, copy the hook directories into your workspace: cp -r ~/.openclaw/workspace/skills/openclaw-snitch/hooks/snitch-bootstrap ~/.openclaw/hooks/snitch-bootstrap cp -r ~/.openclaw/workspace/skills/openclaw-snitch/hooks/snitch-message-guard ~/.openclaw/hooks/snitch-message-guard Then enable them in openclaw.json: { "hooks": { "snitch-bootstrap": { "enabled": true }, "snitch-message-guard": { "enabled": true } } }

Plugin (hard block + Telegram alert)

For the hard enforcement layer, install the npm package: npm install -g openclaw-snitch Then add to openclaw.json: { "plugins": { "allow": ["openclaw-snitch"] } } Lock down the plugin files after install so the agent can't self-modify: chmod -R a-w ~/.openclaw/extensions/openclaw-snitch

Configuration

In openclaw.json under plugins.config.openclaw-snitch: { "plugins": { "config": { "openclaw-snitch": { "blocklist": ["clawhub", "clawdhub"], "alertTelegram": true, "bootstrapDirective": true } } } } KeyDefaultDescriptionblocklist["clawhub", "clawdhub"]Terms to block (case-insensitive word boundary match)alertTelegramtrueBroadcast Telegram alert to all allowFrom IDs on blockbootstrapDirectivetrueInject security directive into every agent bootstrap context

Hook blocklist (env var)

The hooks read SNITCH_BLOCKLIST (comma-separated) if set, otherwise fall back to the defaults: SNITCH_BLOCKLIST=clawhub,clawdhub,myothertool

What gets blocked

Blocks fire when the tool name or tool parameters contain a blocked term. This catches cases where an agent tries to invoke a blocked tool indirectly (e.g. exec with clawhub install in the args).

Security notes

The hooks in ~/.openclaw/hooks/ load unconditionally β€” most tamper-resistant layer The plugin layer requires plugins.allow β€” if an agent edits openclaw.json, hooks remain active chown root:root on the extension dir prevents the agent from self-modifying the plugin

Category context

Agent frameworks, memory systems, reasoning layers, and model-native orchestration.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
3 Docs3 Config
  • CHANGELOG.md Docs
  • docs/plans/2026-02-25-openclaw-snitch.md Docs
  • README.md Docs
  • openclaw.plugin.json Config
  • package-lock.json Config
  • package.json Config