Install
Install the skill into your project with the skills CLI:Use
Open your project and ask the agent to integrate:- Discovery. The agent scans your codebase for the call sites that produce content. It covers third-party APIs and in-house services alike. It finds in-house platforms by behavioural signals, such as prompt payloads, job queues, and uploads of new media, rather than by SDK names.
- Confirmation. Before it writes any code, the agent shows you the list of call sites it found and asks you to confirm, remove, or add entries. Review this list carefully. A missed call site leaves content unmoderated.
- Integration. For each confirmed site the agent wires the matching endpoint:
POST /api/v1/moderate/textfor user-written prompts and AI-character chat turns,/moderate/image,/moderate/video, and/moderate/audiofor media. - Async handling. The integration holds content until a
passdecision arrives, by webhook or by rate-limit-aware polling, and fails closed on errors.
moderate:* scopes for the modalities
you integrate. The agent reads the key from an environment variable. It never hard-codes
the key and it never logs the key.