A set of Claude Code skills for Ideogram AI image generation — general prompting technique (loose vs. structured, color-palette control, reference-image style extraction, remix vs. edit), plus purpose-built skills covering brand systems, characters, marketing creative, icon sets, patterns/textures, bulk generation, custom model training, collections, and post-processing (background removal, upscaling). Built by Devkind.
Ideogram 4 was trained on structured JSON captions, not plain text — this toolkit documents that schema (adapted from the official ideogram-oss/ideogram4 docs, Apache-2.0) and packages practical prompting technique around it, scoped to what the connected Ideogram MCP actually supports.
skills/ideogram-prompt/ # general Ideogram prompting technique
├── SKILL.md
├── references/ # JSON caption schema, style-extraction workflow
└── examples/ # pointer to the root examples/ set (see below)
skills/logo-prompting/ # logo/brand-mark prompt writing, Ideogram-first
├── SKILL.md
├── references/ # anti-slop discipline, brand visual-layer reading, intake checklist
└── examples/ # accumulated real logo-prompt directions by style family
skills/moodboard-generator/ # pre-logo 3x3 brand-exploration board (loose adjectives, unlocked palette)
├── SKILL.md
├── references/ # panel anatomy, composition-spec JSON schema, anti-slop discipline
└── examples/ # a worked prompt + full JSON breakdown
skills/brand-identity-sheet/ # whole brand system in one generated image (wordmark, icons, buttons)
├── SKILL.md
├── references/ # panel anatomy, composition-spec JSON schema, anti-slop discipline
├── examples/ # a worked prompt + full JSON breakdown
└── evals/ # eval scenarios for this skill
skills/character-model-sheet/ # multi-panel character turnaround sheet (mascot, game/animation character)
├── SKILL.md
├── references/ # panel anatomy, composition-spec JSON schema, anti-slop discipline
├── examples/ # a worked prompt + full JSON breakdown
└── evals/ # eval scenarios for this skill
skills/marketing-ui-mockup-hero-generator/ # landing-page hero shots, device mockups, dashboard screenshots
├── SKILL.md
├── references/
├── examples/ # worked hero/device-mockup/dashboard examples
└── evals/
skills/social-marketing-asset-generator/ # finished social/ad creative with copy baked into the pixels
├── SKILL.md
├── references/ # composition-spec format, anti-slop discipline, platform dimension map, typography-baking discipline
├── examples/ # populated as worked jobs are run — see examples/STATUS.md
└── evals/
skills/photographic-icon-set-generator/ # consistent 3D/claymation/textured icon packs sharing a locked style recipe
├── SKILL.md
├── references/ # style-lock recipe, anti-slop discipline, set-consistency workflow
├── examples/ # a worked claymation icon set
└── evals/
skills/seamless-pattern-texture-generator/ # seamless/tileable patterns and material textures
├── SKILL.md
├── references/ # tile-prompt recipe, tiling verification, anti-slop discipline, composition-spec format
├── examples/ # populated once a real job is run — see examples/README.md
└── evals/
skills/bulk-image-generation-workflow/ # one locked caption → N on-brief variations, batch-submitted and culled
├── SKILL.md
├── references/ # variation strategy, review/culling guide
├── examples/ # a worked 10-prompt sticker-pack batch, shortlisted to 6
└── evals/
skills/custom-model-training/ # train a custom Ideogram model on a folder of reference images
├── SKILL.md
├── references/
├── examples/ # a worked training set + proof generation
└── evals/
skills/collections-management/ # create/browse/rename/delete Ideogram collections, file images into them
├── SKILL.md
├── references/
├── examples/ # a worked logo collection
└── evals/
skills/remove-background-workflow/ # strip an image's background to a transparent PNG
├── SKILL.md
├── references/ # background-removal patterns
├── examples/ # a worked before/after
└── evals/
skills/upscale-image-workflow/ # raise the resolution of one specific Ideogram image
├── SKILL.md
├── references/ # upscale settings
├── examples/ # a worked upscale
└── evals/
examples/ # generated showcase assets + the exact prompts used
See examples/ for the full write-up of the root showcase set — each image below links to its exact prompt.
This is a set of Claude Code skills. Requires the Ideogram MCP to be connected (claude mcp add ideogram --transport http https://mcp.ideogram.ai/mcp).
Each skill installs independently — swap ideogram-prompt below for any of the 14 skills under skills/ as needed.
Via the skills CLI (reads straight from this GitHub repo, no unreviewed single-URL installer):
npx skills add https://github.com/devkindhq/ideogram-ai-toolkit/tree/main/skills/ideogram-prompt
# or, from a project root, target it explicitly:
npx skills add devkindhq/ideogram-ai-toolkit -s ideogram-promptAdd -g to install globally (available in every session) instead of just the current project.
Project-scoped, manual (checked into a repo, shared with your team):
git clone https://github.com/devkindhq/ideogram-ai-toolkit.git /tmp/ideogram-ai-toolkit
cp -r /tmp/ideogram-ai-toolkit/skills/ideogram-prompt <your-project>/.claude/skills/ideogram-promptPersonal, manual (available in every session):
git clone https://github.com/devkindhq/ideogram-ai-toolkit.git ~/ideogram-ai-toolkit
ln -s ~/ideogram-ai-toolkit/skills/ideogram-prompt ~/.claude/skills/ideogram-promptWe deliberately don't ship a one-line curl ... | skill.md installer — pulling an unreviewed instruction file straight into ~/.claude/skills/ from a single URL is a real prompt-injection / supply-chain risk for an AI agent, and we'd rather you read the skill before trusting it. Clone it, read SKILL.md, then symlink or copy it in.
Some public prompting guides for Ideogram reference a one-line curl installer for a Claude Code skill hosted at a single URL outside GitHub. That URL wasn't independently verifiable at the time this toolkit was built (returned HTTP 403, no cached or archived copy found), so this repo exists as an open, reviewable alternative: same underlying technique (documented against the real, open-source ideogram-oss/ideogram4 schema and the actual Ideogram MCP tool surface), but as source you can read before you run it.
Apache License 2.0 — see LICENSE and NOTICE. The JSON caption schema reference is adapted from ideogram-oss/ideogram4 (Apache-2.0).













