1. AI Image Generation (`ai-image`)
Generate high-quality AI images using OpenAI's gpt-image-1 model with customizable styles and artistic themes.
Key Features:
- Multiple aspect ratios (vertical, horizontal, square)
- Artistic themes (Studio Ghibli, futuristic, Pixar, oil painting, Chinese painting)
- High-resolution output (up to 4096x4096 pixels)
- Base64 encoded image generation
Use Cases:
- Create custom artwork from text descriptions
- Generate images with specific artistic styles
- Produce marketing visuals
- Create concept art and illustrations
Quick Start:
```bash
cd ai-image
uv run main.py --prompt "a serene mountain landscape" --style horizontal --theme oil-paint
```
Requirements:
- OpenAI API key with gpt-image-1 access
- Organization verification on OpenAI platform
[Full Documentation](./ai-image/README.md) | [Skill Details](./ai-image/SKILL.md)
---
2. Design Guide Generator (`design-guide`)
Extract comprehensive design language from any website including colors, typography, animations, interactive states, and component patterns. Creates pixel-perfect design guides with responsive screenshots.
Key Features:
- Complete color palette extraction (text, background, borders, shadows, gradients)
- Typography system analysis (font families, sizes, weights, line heights)
- Interactive state capture (hover effects, transitions, animations)
- Component pattern recognition (buttons, cards, forms, navigation)
- Responsive design testing (mobile, tablet, desktop)
- UX pattern analysis (accessibility features, interaction patterns)
- Visual effects extraction (shadows, filters, transforms)
- Automated screenshot generation at multiple breakpoints
Use Cases:
- Analyze competitor website designs
- Create design system documentation
- Reverse-engineer design patterns
- Build pixel-perfect recreations
- Extract component libraries
- Understand UX interaction patterns
Quick Start:
```bash
cd design-guide
uv run main.py --url https://stripe.com --output ./stripe-design
```
Requirements:
- Playwright with Chromium browser
- No API keys needed (fully local)
Output Includes:
- Comprehensive design guide (Markdown)
- Full-page and viewport screenshots
- Interactive hover state captures
- Responsive design screenshots (3 breakpoints)
- Complete HTML and CSS source files
- Structured design data (JSON)
[Full Documentation](./design-guide/README.md) | [Skill Details](./design-guide/SKILL.md)
---