โ† All skills
Tencent SkillHub ยท Developer Tools

ClawGuardrails

Enforces guarded execution with safe_exec, safe_send, and safe_action. Use when a task may run shell commands, send channel messages, or call external APIs/a...

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

Enforces guarded execution with safe_exec, safe_send, and safe_action. Use when a task may run shell commands, send channel messages, or call external APIs/a...

โฌ‡ 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
SKILL.md

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. 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. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
0.1.0

Documentation

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

When to Use

Apply this skill whenever a request can: execute shell/system commands; send outbound messages/posts to channels; trigger external actions (email, DB, gateways, automation).

Hard Rules

Use safe_exec instead of raw exec. Use safe_send instead of direct channel-post tools. Use safe_action for generic external/API side effects. Never bypass the guardrails resolver with direct destructive tools. If decision is require_approval, stop and wait for explicit approval flow.

Input Hygiene

Always provide the narrowest cwd for safe_exec. Include sender/channel/agent context when available. Keep command args explicit; do not hide risky flags in shell expansions. For safe_action, include explicit resources where possible.

safe_exec

Use for shell commands only after permission resolution. Expected input shape: { "command": "git", "args": ["status"], "cwd": "/workspace/project" }

safe_send

Use for outbound channel messages. Expected input shape: { "channel": "telegram:ops-room", "message": "Deployment done", "channelType": "telegram" }

safe_action

Use for side-effect actions that are not plain shell or plain chat send. Expected input shape: { "action": "gmail.delete_message", "payload": { "messageId": "..." }, "resources": [ { "kind": "unknown", "value": "email-api", "operation": "delete" } ] }

Decision Handling

allow: continue and return runtime result. deny: return denial with reason code; do not retry with alternate dangerous tools. require_approval: surface approval id/reason and wait for /approve <id> or RPC approval.

Good Defaults

Prefer read-only commands (git status, rg, ls) before mutable ones. Propose reversible operations first. Ask for confirmation before destructive intent, even if technically allowed.

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
1 Docs
  • SKILL.md Primary doc