skills/image-generation/SKILL.md
# Image Generation Skill (Cora) ## Overview Cora uses OpenRouter to access AI image generation models. This skill provides access to multiple image generation models through a single unified API. ## API Configuration - **Provider**: OpenRouter (`https://openrouter.ai/api/v1`) - **API Key**: Set via `OPENROUTER_API_KEY` environment variable - **Primary Model**: `black-forest-labs/flux-1.1-pro` (best quality) - **Fast Model**: `black-forest-labs/flux-schnell` (faster, cheaper) - **Alternative**:
npx skillsauth add garrettroi/open-manus skills/image-generationInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Cora uses OpenRouter to access AI image generation models. This skill provides access to multiple image generation models through a single unified API.
https://openrouter.ai/api/v1)OPENROUTER_API_KEY environment variableblack-forest-labs/flux-1.1-pro (best quality)black-forest-labs/flux-schnell (faster, cheaper)stabilityai/stable-diffusion-3-5-largefrom skills.image_generation.image_gen import generate_image
# Basic usage
result = generate_image(
prompt="A beautiful wedding venue with soft golden hour lighting, elegant floral arrangements",
model="black-forest-labs/flux-1.1-pro",
width=1024,
height=1024
)
# Returns: {"url": "...", "local_path": "/workspace/images/..."}
When generating for specific brands, use these style guides:
Vows & Vinyl DJ Co.
"romantic wedding atmosphere, warm golden lighting, elegant and joyful"Cana Collective
"Catholic wedding aesthetic, clean professional style, warm and welcoming"McGarry Homes
"professional real estate photography, bright and inviting, Oklahoma City"OPENROUTER_API_KEY=<from secrets>
IMAGE_OUTPUT_DIR=/workspace/images
/workspace/images/ on the agent's volumedevelopment
# Voice Sanitizer This skill cleans up text before it is sent to the Text-to-Speech (TTS) engine. It removes technical jargon, code blocks, and long URLs to ensure the agent sounds natural and conversational in voice chat. ## Usage To sanitize text for speech, run the following command in the terminal: ```bash python3 /app/skills/voice_sanitizer/sanitizer.py "Your long, technical text with `code` and https://links.com/long-url" ``` ### Example Output ```text Your long, technical text with a
tools
Professional AI video production workflow. Use when creating videos, short films, commercials, or any video content using AI generation tools.
tools
Secure API key access from the centralized vault. Fetch keys on-demand without storing them in environment variables.
testing
# Task Board — Persistent Task Tracking for Open Manus This skill provides a shared task board backed by Redis. Harmony uses it to track delegated work across all agents, and agents use it to report progress and completion. ## When to Use - **Harmony**: Use this whenever you delegate a task to an agent. Add the task to the board, then check the board periodically to follow up. - **Worker Agents**: Use this to update your task status or mark tasks as complete. ## Commands ### Add a new task