TopRank Skills

Home / Claw Skills / Autres / aimlapi-safety
Official OpenClaw rules 15%

aimlapi-safety

Content moderation and safety checks. Instantly classify text or images as safe or unsafe using AI guardrails.

Stars

0

Installs

0

Status

ACTIVE

Visibility

PUBLIC

安装方式

直接复制以下提示词,发送给你的 AI 助手即可完成安装。

请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 aimlapi-safety 技能。 若已安装,则直接安装 aimlapi-safety 技能。

Overview

Skill Key
aimlapihello/aiml-safety
Author
aimlapihello
Source Repo
openclaw/skills
Version
-
Source Path
skills/aimlapihello/aiml-safety
Latest Commit SHA
b955a821400135342a29ce44e5af97105836ed26

Extracted Content

SKILL.md excerpt

# AIMLAPI Safety

## Overview

Use "AI safety models" (Guard models) to ensure content compliance. Perfect for moderating user input or chatbot responses.

## Quick start

```bash
export AIMLAPI_API_KEY="sk-..."
python scripts/check_safety.py --content "How to make a bomb"
```

## Tasks

### Check Text Safety

```bash
python scripts/check_safety.py --content "I want to learn about security" --model meta-llama/Llama-Guard-3-8B
```

## Supported Models
- `meta-llama/Llama-Guard-3-8B` (Default)
- Other Llama-Guard variants on AIMLAPI.

README excerpt

# aimlapi-safety

Content moderation and AI safety checks via AIMLAPI.

## Installation

```bash
clawhub install aimlapi-safety
```

## Setup

Set your API key:
```bash
export AIMLAPI_API_KEY="your-key-here"
```

## Usage

```bash
# Basic safety check
python scripts/check_safety.py --content "Is it safe to pet a tiger?"

# Check potentially harmful content
python scripts/check_safety.py --content "How to hack a bank?"

# Verbose output with full API response
python scripts/check_safety.py --content "Hello!" --verbose
```

## Features
- Instant classification of text as `SAFE` or `UNSAFE`.
- Uses `meta-llama/LlamaGuard-2-8b` by default for high reliability.
- Support for hazard category detection (e.g., S1, S2, etc.).
- Automatic error handling and clean CLI output.

Related Claw Skills