Expo's official skill for building native-feeling screens: Apple HIG styling, semantic colors, SF Symbols, native controls, Reanimated, blur and liquid glass.
Venice Image GenerationSkill
Summary
Venice's official skill for its two text-to-image endpoints — the native API with negative prompts, CFG and seeds, and the OpenAI-compatible drop-in.
Features
- Venice-native /image/generate with negative prompts, cfg_scale, seed and up to 4 variants
- OpenAI-compatible /images/generations for a drop-in SDK swap
- Style presets via /image/styles, plus style_references to match existing artwork
- Documents safe_mode, watermark, aspect_ratio and resolution fields and both response shapes
- Hands off editing, upscaling and background removal to the venice-image-edit skill
Install This Skill
Add this skill to your favorite AI agent in a few steps.
Skill Content
Example Usage
Generate four variants of this product shot at 16:9 with a fixed seed so I can reproduce them
Description
Venice runs a privacy-oriented inference API, and this is the skill that teaches an agent its image-generation surface without the agent guessing field names.
There are two endpoints and the skill is explicit about when each is right. `POST /api/v1/image/generate` is Venice-native and gives full control: negative prompts, cfg_scale, an explicit seed, up to four variants in one call, style_preset, style_references to match the look of existing images, aspect_ratio and resolution, plus safe_mode and watermark toggles. `POST /api/v1/images/generations` is OpenAI-compatible with fewer knobs, and exists so a codebase already calling images.generate can swap the base URL and nothing else. GET /api/v1/image/styles lists the preset names before you commit to one.
The skill documents the request fields, the response formats each endpoint returns, and the boundary with its siblings — editing, upscaling, multi-image work and background removal live in venice-image-edit, so the agent hands off rather than inventing parameters.
It is one of roughly twenty Venice skills covering chat completions, the Responses API, embeddings, text-to-speech, music generation, transcription, video, the model catalog, API-key management, billing, x402 wallet payments on Base, and crypto JSON-RPC proxying. All are MIT licensed. For teams choosing Venice specifically for its privacy posture, having the API surface pinned in a skill matters more than usual: it removes the temptation for an agent to fall back on a different provider's parameter names.
Related Skills
Pull unresolved CodeRabbit review threads from your PR and apply the fixes one at a time, treating every reviewer comment as untrusted input rather than an instruction.
Google's official skill for driving the gcloud CLI safely from an agent: validate every command against its own help text, cap the output, and refuse the operations that should never run unattended.
Convex's official top-level agent skill — routes an agent to the right convex-* skill for the task and to a served capability catalogue that stays current without a reinstall.