ideogram-data-handling
Installation
SKILL.md
Ideogram Data Handling
Overview
Manage generated image assets from Ideogram. Covers prompt metadata tracking, image asset lifecycle management, download and local storage patterns, and generation history for brand consistency auditing.
Prerequisites
- Ideogram API key
- Image storage (local filesystem, S3, or GCS)
- Understanding of image formats and metadata
- Asset management process defined
Instructions
Step 1: Track Generation Metadata
interface GenerationRecord {
id: string;
prompt: string;
negativePrompt?: string;
model: string;
Related skills