Loading source
Pulling the file list, source metadata, and syntax-aware rendering for this listing.
Source from repo
Comprehensive AI design skill providing design intelligence across platforms with 161 reasoning rules.
Files
Skill
Size
Entrypoint
Format
Open file
Syntax-highlighted preview of this file as included in the skill package.
references/cip-design.md
1# CIP Design Reference23Corporate Identity Program design with 50+ deliverables, 20 styles, 20 industries. Generate mockups with Gemini Nano Banana (Flash/Pro).45## Scripts67| Script | Purpose |8|--------|---------|9| `scripts/cip/search.py` | Search deliverables, styles, industries; generate CIP briefs |10| `scripts/cip/generate.py` | Generate CIP mockups with Gemini (Flash/Pro) |11| `scripts/cip/render-html.py` | Render HTML presentation from CIP mockups |12| `scripts/cip/core.py` | BM25 search engine for CIP data |1314## Commands1516### CIP Brief (Start Here)1718```bash19python3 ~/.claude/skills/design/scripts/cip/search.py "tech startup" --cip-brief -b "BrandName"20```2122### Search Domains2324```bash25# Deliverables26python3 ~/.claude/skills/design/scripts/cip/search.py "business card letterhead" --domain deliverable2728# Design styles29python3 ~/.claude/skills/design/scripts/cip/search.py "luxury premium elegant" --domain style3031# Industry guidelines32python3 ~/.claude/skills/design/scripts/cip/search.py "hospitality hotel" --domain industry3334# Mockup contexts35python3 ~/.claude/skills/design/scripts/cip/search.py "office reception" --domain mockup36```3738### Generate Mockups3940```bash41# With logo (RECOMMENDED - uses image editing)42python3 ~/.claude/skills/design/scripts/cip/generate.py --brand "TopGroup" --logo /path/to/logo.png --deliverable "business card" --industry "consulting"4344# Full CIP set with logo45python3 ~/.claude/skills/design/scripts/cip/generate.py --brand "TopGroup" --logo /path/to/logo.png --industry "consulting" --set4647# Pro model for 4K text rendering48python3 ~/.claude/skills/design/scripts/cip/generate.py --brand "TopGroup" --logo logo.png --deliverable "business card" --model pro4950# Custom deliverables with aspect ratio51python3 ~/.claude/skills/design/scripts/cip/generate.py --brand "GreenLeaf" --logo logo.png --industry "organic food" --deliverables "letterhead,packaging,vehicle" --ratio 16:95253# Without logo (AI generates interpretation)54python3 ~/.claude/skills/design/scripts/cip/generate.py --brand "TechFlow" --deliverable "business card" --no-logo-prompt55```5657### Render HTML Presentation5859```bash60python3 ~/.claude/skills/design/scripts/cip/render-html.py --brand "TopGroup" --industry "consulting" --images /path/to/cip-output61python3 ~/.claude/skills/design/scripts/cip/render-html.py --brand "TopGroup" --industry "consulting" --images ./topgroup-cip --output presentation.html62```6364## Models6566- `flash` (default): `gemini-2.5-flash-image` - Fast, cost-effective67- `pro`: `gemini-3-pro-image-preview` - Quality, 4K text rendering6869## Deliverable Categories7071| Category | Items |72|----------|-------|73| Core Identity | Logo, Logo Variations |74| Stationery | Business Card, Letterhead, Envelope, Folder, Notebook, Pen |75| Security/Access | ID Badge, Lanyard, Access Card |76| Office Environment | Reception Signage, Wayfinding, Meeting Room Signs, Wall Graphics |77| Apparel | Polo Shirt, T-Shirt, Cap, Jacket, Apron |78| Promotional | Tote Bag, Gift Box, USB Drive, Water Bottle, Mug, Umbrella |79| Vehicle | Car Sedan, Van, Truck |80| Digital | Social Media, Email Signature, PowerPoint, Document Templates |81| Product | Packaging Box, Labels, Tags, Retail Display |82| Events | Trade Show Booth, Banner Stand, Table Cover, Backdrop |8384## Design Styles8586| Style | Colors | Best For |87|-------|--------|----------|88| Corporate Minimal | Navy, White, Blue | Finance, Legal, Consulting |89| Modern Tech | Purple, Cyan, Green | Tech, Startups, SaaS |90| Luxury Premium | Black, Gold, White | Fashion, Jewelry, Hotels |91| Warm Organic | Brown, Green, Cream | Food, Organic, Artisan |92| Bold Dynamic | Red, Orange, Black | Sports, Entertainment |9394## HTML Presentation Features9596- Hero section with brand name, industry, style, mood97- Deliverable cards with mockup images98- Descriptions: concept, purpose, specifications99- Responsive desktop/mobile, dark theme100- Images embedded as base64 (single-file portable)101102## Workflow1031041. Generate CIP brief → `scripts/cip/search.py --cip-brief`1052. Generate mockups with logo → `scripts/cip/generate.py --brand --logo --industry --set`1063. Render HTML presentation → `scripts/cip/render-html.py --brand --industry --images`107108**Tip:** If no logo exists, use Logo Design (built-in) to generate one first.109110## Detailed References111112- `references/cip-deliverable-guide.md` - Deliverable specifications113- `references/cip-style-guide.md` - Design style descriptions114- `references/cip-prompt-engineering.md` - AI generation prompts115116## Setup117118```bash119export GEMINI_API_KEY="your-key"120pip install google-genai pillow121```122