ideogram-data-handling

Featured

Manage Ideogram generated image assets, metadata tracking, and lifecycle management. Use when implementing image persistence, tracking generation history, or building asset management for Ideogram outputs. Trigger with phrases like "ideogram data", "ideogram images", "ideogram asset management", "ideogram metadata", "ideogram image storage".

AI & Automation 2,266 stars 315 forks Updated today MIT

Install

View on GitHub

Quality Score: 99/100

Stars 20%
100
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Ideogram Data Handling ## Overview Manage generated image assets from Ideogram's API. Critical concern: **Ideogram image URLs expire** (approximately 1 hour). Every generation must be downloaded and persisted immediately. This skill covers metadata tracking, download pipelines, local and cloud storage, lifecycle management, and generation history for reproducibility. ## Prerequisites - `IDEOGRAM_API_KEY` configured - Storage solution (local filesystem, S3, or GCS) - Database for generation metadata (SQLite, Postgres, or JSON files) ## Instructions ### Step 1: Generation Record Schema ```typescript interface GenerationRecord { id: string; // Unique identifier prompt: string; // Original prompt expandedPrompt?: string; // Magic Prompt expansion (from response) negativePrompt?: string; // Negative prompt used model: string; // V_2, V_2_TURBO, etc. styleType: string; // DESIGN, REALISTIC, etc. aspectRatio: string; // ASPECT_16_9, etc. seed: number; // For reproducibility resolution: string; // e.g., "1024x1024" isSafe: boolean; // is_image_safe from response originalUrl: string; // Temporary Ideogram URL storedPath: string; // Local or S3 path createdAt: string; // ISO timestamp sizeBytes?: number; // Downloaded file size tags?: string[]; // User-defined tags } ``` ### Step 2: Generate, Download, and Track ```typescript i...

Details

Author
jeremylongshore
Repository
jeremylongshore/claude-code-plugins-plus-skills
Created
7 months ago
Last Updated
today
Language
Python
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category

AI & Automation Featured

ideogram-observability

Set up monitoring, metrics, and alerts for Ideogram integrations. Use when implementing observability for Ideogram operations, tracking costs, or configuring alerting for generation health. Trigger with phrases like "ideogram monitoring", "ideogram metrics", "ideogram observability", "monitor ideogram", "ideogram alerts", "ideogram dashboard".

2,266 Updated today
jeremylongshore
AI & Automation Featured

ideogram-reference-architecture

Implement Ideogram reference architecture with prompt templates, asset pipelines, and CDN delivery. Use when designing new Ideogram integrations, building brand asset systems, or establishing architecture for image generation at scale. Trigger with phrases like "ideogram architecture", "ideogram project structure", "ideogram brand assets", "ideogram pipeline design", "ideogram at scale".

2,266 Updated today
jeremylongshore
AI & Automation Featured

ideogram-core-workflow-a

Execute Ideogram primary workflow: text-to-image generation with text rendering. Use when generating images from text prompts, creating designs with embedded text, or building the main image generation pipeline. Trigger with phrases like "ideogram generate image", "ideogram text to image", "create image with ideogram", "ideogram primary workflow".

2,266 Updated today
jeremylongshore
AI & Automation Featured

ideogram-hello-world

Create a minimal working Ideogram image generation example. Use when starting a new Ideogram integration, testing your setup, or learning basic Ideogram API patterns. Trigger with phrases like "ideogram hello world", "ideogram example", "ideogram quick start", "simple ideogram code", "first ideogram image".

2,266 Updated today
jeremylongshore
AI & Automation Featured

ideogram-prod-checklist

Execute Ideogram production deployment checklist and rollback procedures. Use when deploying Ideogram integrations to production, preparing for launch, or implementing go-live procedures. Trigger with phrases like "ideogram production", "deploy ideogram", "ideogram go-live", "ideogram launch checklist", "ideogram production ready".

2,266 Updated today
jeremylongshore