$npx -y skills add googleworkspace/cli --skill gws-modelarmor-sanitize-responseGoogle Model Armor: Sanitize a model response through a Model Armor template.
| 1 | # modelarmor +sanitize-response |
| 2 | |
| 3 | > **PREREQUISITE:** Read `../gws-shared/SKILL.md` for auth, global flags, and security rules. If missing, run `gws generate-skills` to create it. |
| 4 | |
| 5 | Sanitize a model response through a Model Armor template |
| 6 | |
| 7 | ## Usage |
| 8 | |
| 9 | ```bash |
| 10 | gws modelarmor +sanitize-response --template <NAME> |
| 11 | ``` |
| 12 | |
| 13 | ## Flags |
| 14 | |
| 15 | | Flag | Required | Default | Description | |
| 16 | |------|----------|---------|-------------| |
| 17 | | `--template` | ✓ | — | Full template resource name (projects/PROJECT/locations/LOCATION/templates/TEMPLATE) | |
| 18 | | `--text` | — | — | Text content to sanitize | |
| 19 | | `--json` | — | — | Full JSON request body (overrides --text) | |
| 20 | |
| 21 | ## Examples |
| 22 | |
| 23 | ```bash |
| 24 | gws modelarmor +sanitize-response --template projects/P/locations/L/templates/T --text 'model output' |
| 25 | model_cmd | gws modelarmor +sanitize-response --template ... |
| 26 | ``` |
| 27 | |
| 28 | ## Tips |
| 29 | |
| 30 | - Use for outbound safety (model -> user). |
| 31 | - For inbound safety (user -> model), use +sanitize-prompt. |
| 32 | |
| 33 | ## See Also |
| 34 | |
| 35 | - [gws-shared](../gws-shared/SKILL.md) — Global flags and auth |
| 36 | - [gws-modelarmor](../gws-modelarmor/SKILL.md) — All filter user-generated content for safety commands |