Loading source
Pulling the file list, source metadata, and syntax-aware rendering for this listing.
Source from repo
Manage Google Model Armor resources to filter and sanitize user-generated content for AI safety.
Files
Skill
Size
Entrypoint
Format
Open file
Syntax-highlighted preview of this file as included in the skill package.
SKILL.md
1---2name: gws-modelarmor3description: "Google Model Armor: Filter user-generated content for safety."4metadata:5version: 0.22.56openclaw:7category: "productivity"8requires:9bins:10- gws11cliHelp: "gws modelarmor --help"12---1314# modelarmor (v1)1516> **PREREQUISITE:** Read `../gws-shared/SKILL.md` for auth, global flags, and security rules. If missing, run `gws generate-skills` to create it.1718```bash19gws modelarmor <resource> <method> [flags]20```2122## Helper Commands2324| Command | Description |25|---------|-------------|26| [`+sanitize-prompt`](../gws-modelarmor-sanitize-prompt/SKILL.md) | Sanitize a user prompt through a Model Armor template |27| [`+sanitize-response`](../gws-modelarmor-sanitize-response/SKILL.md) | Sanitize a model response through a Model Armor template |28| [`+create-template`](../gws-modelarmor-create-template/SKILL.md) | Create a new Model Armor template |2930## Discovering Commands3132Before calling any API method, inspect it:3334```bash35# Browse resources and methods36gws modelarmor --help3738# Inspect a method's required params, types, and defaults39gws schema modelarmor.<resource>.<method>40```4142Use `gws schema` output to build your `--params` and `--json` flags.4344