# Send Clawshell 0.1.0 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": "clawshell-0-1-0",
    "name": "Clawshell 0.1.0",
    "source": "tencent",
    "type": "skill",
    "category": "安全合规",
    "sourceUrl": "https://clawhub.ai/Lucky-2968/clawshell-0-1-0",
    "canonicalUrl": "https://clawhub.ai/Lucky-2968/clawshell-0-1-0",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/clawshell-0-1-0",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=clawshell-0-1-0",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "package-lock.json",
      "package.json",
      "pnpm-lock.yaml"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-23T16:43:11.935Z",
      "expiresAt": "2026-04-30T16:43:11.935Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
        "contentDisposition": "attachment; filename=\"4claw-imageboard-1.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/clawshell-0-1-0"
    },
    "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/clawshell-0-1-0",
    "downloadUrl": "https://openagent3.xyz/downloads/clawshell-0-1-0",
    "agentUrl": "https://openagent3.xyz/skills/clawshell-0-1-0/agent",
    "manifestUrl": "https://openagent3.xyz/skills/clawshell-0-1-0/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/clawshell-0-1-0/agent.md"
  }
}
```
## Documentation

### ClawShell

Human-in-the-loop security layer for OpenClaw. ClawShell intercepts shell commands before execution, analyzes their risk level, and requires your explicit approval (via push notification) for dangerous operations.

### How it works

The agent calls clawshell_bash instead of bash
ClawShell analyzes the command against built-in and configurable risk rules
Based on risk level:

Critical (e.g. rm -rf /, fork bombs) — automatically blocked
High (e.g. rm -rf, curl to external URLs, credential access) — sends a push notification and waits for your approval
Medium (e.g. npm install, git push) — logged and allowed
Low (e.g. ls, cat, git status) — allowed


All decisions are logged to logs/clawshell.jsonl

### clawshell_bash

Secure replacement for bash. Analyzes command risk and executes only if safe or approved.

Parameters:

command (string, required) — The shell command to execute
workingDir (string, optional) — Working directory (defaults to cwd)

Returns: { exitCode, stdout, stderr }

High-risk commands will block until you approve or reject via push notification. Critical commands are rejected immediately.

### clawshell_status

Returns current ClawShell state: pending approval requests and recent decisions.

Parameters: none

### clawshell_logs

Returns recent log entries for audit and debugging.

Parameters:

count (number, optional) — Number of entries to return (default: 20)

### 1. Install dependencies

cd /app/workspace/skills/clawshell
npm install

### 2. Configure Pushover notifications

Create a Pushover application at https://pushover.net/apps/build and add your keys to .env:

CLAWSHELL_PUSHOVER_USER=your-user-key
CLAWSHELL_PUSHOVER_TOKEN=your-app-token

Alternatively, configure Telegram instead:

CLAWSHELL_TELEGRAM_BOT_TOKEN=your-bot-token
CLAWSHELL_TELEGRAM_CHAT_ID=your-chat-id

### 3. Add to TOOLS.md

Add the following to your OpenClaw TOOLS.md so the agent uses ClawShell for shell commands:

## Shell Access

Use \`clawshell_bash\` for ALL shell command execution. Do not use \`bash\` directly.
ClawShell will analyze commands for risk and require human approval for dangerous operations.

Available tools:
- \`clawshell_bash(command, workingDir)\` — Execute a shell command with risk analysis
- \`clawshell_status()\` — Check pending approvals and recent decisions
- \`clawshell_logs(count)\` — View recent audit log entries

### Configuration

ClawShell reads configuration from environment variables (CLAWSHELL_*) with fallback to config.yaml.

VariableDefaultDescriptionCLAWSHELL_PUSHOVER_USER—Pushover user keyCLAWSHELL_PUSHOVER_TOKEN—Pushover app tokenCLAWSHELL_TELEGRAM_BOT_TOKEN—Telegram bot token (alternative)CLAWSHELL_TELEGRAM_CHAT_ID—Telegram chat ID (alternative)CLAWSHELL_TIMEOUT_SECONDS300Seconds to wait for approval before auto-rejectCLAWSHELL_LOG_DIRlogs/Directory for JSONL log filesCLAWSHELL_LOG_LEVELinfoLog verbosity: debug, info, warn, errorCLAWSHELL_BLOCKLIST—Comma-separated extra blocked commandsCLAWSHELL_ALLOWLIST—Comma-separated extra allowed commands

Custom rules can also be defined in config.yaml under rules.blocklist and rules.allowlist using exact strings, globs, or regex patterns.

### Limitations

Not a security guarantee. LLMs can encode, split, or obfuscate commands to bypass pattern matching.
Defense-in-depth only. Use alongside OpenClaw's sandbox mode, not as a replacement.
Approval latency. High-risk commands block execution until you respond or the timeout expires.

Always ask your AI to scan any skill or software for security risks.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: Lucky-2968
- Version: 1.0.0
## Source health
- Status: healthy
- Source download looks usable.
- Yavira can redirect you to the upstream package for this source.
- Health scope: source
- Reason: direct_download_ok
- Checked at: 2026-04-23T16:43:11.935Z
- Expires at: 2026-04-30T16:43:11.935Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/clawshell-0-1-0)
- [Send to Agent page](https://openagent3.xyz/skills/clawshell-0-1-0/agent)
- [JSON manifest](https://openagent3.xyz/skills/clawshell-0-1-0/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/clawshell-0-1-0/agent.md)
- [Download page](https://openagent3.xyz/downloads/clawshell-0-1-0)