# Send ClawGuardrails to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- 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.
## Suggested prompts
### New install

```text
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

```text
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.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "claw-guardirails-skill",
    "name": "ClawGuardrails",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/eveiljuice/claw-guardirails-skill",
    "canonicalUrl": "https://clawhub.ai/eveiljuice/claw-guardirails-skill",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/claw-guardirails-skill",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=claw-guardirails-skill",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "claw-guardirails-skill",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-01T14:41:18.058Z",
      "expiresAt": "2026-05-08T14:41:18.058Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=claw-guardirails-skill",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=claw-guardirails-skill",
        "contentDisposition": "attachment; filename=\"claw-guardirails-skill-0.1.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "claw-guardirails-skill"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/claw-guardirails-skill"
    },
    "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."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/claw-guardirails-skill",
    "downloadUrl": "https://openagent3.xyz/downloads/claw-guardirails-skill",
    "agentUrl": "https://openagent3.xyz/skills/claw-guardirails-skill/agent",
    "manifestUrl": "https://openagent3.xyz/skills/claw-guardirails-skill/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/claw-guardirails-skill/agent.md"
  }
}
```
## Documentation

### 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.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: eveiljuice
- Version: 0.1.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-01T14:41:18.058Z
- Expires at: 2026-05-08T14:41:18.058Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/claw-guardirails-skill)
- [Send to Agent page](https://openagent3.xyz/skills/claw-guardirails-skill/agent)
- [JSON manifest](https://openagent3.xyz/skills/claw-guardirails-skill/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/claw-guardirails-skill/agent.md)
- [Download page](https://openagent3.xyz/downloads/claw-guardirails-skill)