ads-generate — for Claude Code ads-generate, Shopify-Dev-Apps-Monorepo, community, for Claude Code, ide skills, gemini-2.5-flash-image, ads generate, ads generate --platform meta, ads generate --batch, campaign-brief.md

v1.0.0

이 스킬 정보

적합한 상황: Ideal for AI agents that need ads generate — ai ad image generator. 현지화된 요약: chargeback app for shopify # Ads Generate — AI Ad Image Generator Generates platform-sized ad creative images from your campaign brief and brand profile. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

기능

Ads Generate — AI Ad Image Generator
Generates platform-sized ad creative images from your campaign brief and brand
profile. Uses Gemini by default (gemini-2.5-flash-image, stable GA).
Command What it does
--------- -------------

# 핵심 주제

tahatms12 tahatms12
[0]
[0]
업데이트: 4/13/2026

Skill Overview

Start with fit, limitations, and setup before diving into the repository.

적합한 상황: Ideal for AI agents that need ads generate — ai ad image generator. 현지화된 요약: chargeback app for shopify # Ads Generate — AI Ad Image Generator Generates platform-sized ad creative images from your campaign brief and brand profile. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

이 스킬을 사용하는 이유

추천 설명: ads-generate helps agents ads generate — ai ad image generator. chargeback app for shopify # Ads Generate — AI Ad Image Generator Generates platform-sized ad creative images from your campaign brief and brand

최적의 용도

적합한 상황: Ideal for AI agents that need ads generate — ai ad image generator.

실행 가능한 사용 사례 for ads-generate

사용 사례: Ads Generate — AI Ad Image Generator
사용 사례: Generates platform-sized ad creative images from your campaign brief and brand
사용 사례: profile. Uses Gemini by default (gemini-2.5-flash-image, stable GA)

! 보안 및 제한 사항

  • 제한 사항: /ads generate --platform meta Generate Meta assets only
  • 제한 사항: Requires repository-specific context from the skill documentation
  • 제한 사항: Works best when the underlying tools and dependencies are already configured

About The Source

The section below is adapted from the upstream repository. Use it as supporting material alongside the fit, use-case, and installation summary on this page.

Labs 데모

Browser Sandbox Environment

⚡️ Ready to unleash?

Experience this Agent in a zero-setup browser environment powered by WebContainers. No installation required.

Boot Container Sandbox

FAQ 및 설치 단계

These questions and steps mirror the structured data on this page for better search understanding.

? 자주 묻는 질문

ads-generate은 무엇인가요?

적합한 상황: Ideal for AI agents that need ads generate — ai ad image generator. 현지화된 요약: chargeback app for shopify # Ads Generate — AI Ad Image Generator Generates platform-sized ad creative images from your campaign brief and brand profile. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

ads-generate은 어떻게 설치하나요?

다음 명령을 실행하세요: npx killer-skills add tahatms12/Shopify-Dev-Apps-Monorepo. Cursor, Windsurf, VS Code, Claude Code와 19개 이상의 다른 IDE에서 동작합니다.

ads-generate은 어디에 쓰이나요?

주요 활용 사례는 다음과 같습니다: 사용 사례: Ads Generate — AI Ad Image Generator, 사용 사례: Generates platform-sized ad creative images from your campaign brief and brand, 사용 사례: profile. Uses Gemini by default (gemini-2.5-flash-image, stable GA).

ads-generate 와 호환되는 IDE는 무엇인가요?

이 스킬은 Cursor, Windsurf, VS Code, Trae, Claude Code, OpenClaw, Aider, Codex, OpenCode, Goose, Cline, Roo Code, Kiro, Augment Code, Continue, GitHub Copilot, Sourcegraph Cody, and Amazon Q Developer 와 호환됩니다. 통합 설치에는 Killer-Skills CLI를 사용하세요.

ads-generate에 제한 사항이 있나요?

제한 사항: /ads generate --platform meta Generate Meta assets only. 제한 사항: Requires repository-specific context from the skill documentation. 제한 사항: Works best when the underlying tools and dependencies are already configured.

이 스킬 설치 방법

  1. 1. 터미널 열기

    프로젝트 디렉터리에서 터미널 또는 명령줄을 여세요.

  2. 2. 설치 명령 실행

    npx killer-skills add tahatms12/Shopify-Dev-Apps-Monorepo 를 실행하세요. CLI가 IDE 또는 에이전트를 자동으로 감지하고 스킬을 설정합니다.

  3. 3. 스킬 사용 시작

    스킬이 이제 활성화되었습니다. 현재 프로젝트에서 ads-generate을 바로 사용할 수 있습니다.

! Source Notes

This page is still useful for installation and source reference. Before using it, compare the fit, limitations, and upstream repository notes above.

Upstream Repository Material

The section below is adapted from the upstream repository. Use it as supporting material alongside the fit, use-case, and installation summary on this page.

Upstream Source

ads-generate

Install ads-generate, an AI agent skill for AI agent workflows and automation. Explore features, use cases, limitations, and setup guidance.

SKILL.md
Readonly
Upstream Repository Material
The section below is adapted from the upstream repository. Use it as supporting material alongside the fit, use-case, and installation summary on this page.
Upstream Source

Ads Generate — AI Ad Image Generator

Generates platform-sized ad creative images from your campaign brief and brand profile. Uses Gemini by default (gemini-2.5-flash-image, stable GA).

Quick Reference

CommandWhat it does
/ads generateGenerate all images from campaign-brief.md
/ads generate --platform metaGenerate Meta assets only
/ads generate --prompt "text" --ratio 9:16Standalone generation without brief
/ads generate --batchUse Gemini Batch API (50% cost, 24h turnaround)

Environment Setup

Required before running:

bash
1# Gemini (default — recommended) 2export GOOGLE_API_KEY="your-key" 3# Get a key: console.cloud.google.com/apis/credentials 4 5# Switch to a different provider (optional) 6export ADS_IMAGE_PROVIDER="openai" 7export OPENAI_API_KEY="your-key" 8 9export ADS_IMAGE_PROVIDER="stability" 10export STABILITY_API_KEY="your-key" 11 12export ADS_IMAGE_PROVIDER="replicate" 13export REPLICATE_API_TOKEN="your-token"

If the API key is not set, this skill will display the setup instructions above and stop. It will never fail silently.

Process

Step 1: Check API Key

Verify the required environment variable is set before proceeding:

bash
1python3 -c " 2import os, sys 3provider = os.environ.get('ADS_IMAGE_PROVIDER', 'gemini') 4keys = {'gemini': 'GOOGLE_API_KEY', 'openai': 'OPENAI_API_KEY', 5 'stability': 'STABILITY_API_KEY', 'replicate': 'REPLICATE_API_TOKEN'} 6env_var = keys.get(provider, 'GOOGLE_API_KEY') 7if not os.environ.get(env_var): 8 print(f'Error: {env_var} not set (provider: {provider})', file=sys.stderr) 9 sys.exit(1) 10print(f'OK: {env_var} is set') 11"

If this exits with code 1, display the Environment Setup section above and stop.

Step 2: Locate Source Files

Check for:

  • campaign-brief.md → primary source for prompts and dimensions
  • brand-profile.json → brand color/style injection (optional but recommended)

If campaign-brief.md is found: Use ## Image Generation Briefs section as the generation job list.

If no campaign-brief.md: Enter standalone mode (Step 2b).

Step 2b: Standalone Mode

Ask the user:

  1. Generation prompt (what should the image show?)
  2. Target platform (to set correct dimensions)
  3. Output filename (optional)

Then skip to Step 5.

Step 3: Read Provider Config

Load ~/.claude/skills/ads/references/image-providers.md to confirm:

  • Active provider pricing (show user the cost estimate)
  • Rate limits for current tier
  • Batch API availability

Step 4: Read Platform Specs

For each platform in the campaign brief, load the relevant spec reference:

  • ~/.claude/skills/ads/references/meta-creative-specs.md
  • ~/.claude/skills/ads/references/google-creative-specs.md
  • ~/.claude/skills/ads/references/tiktok-creative-specs.md
  • ~/.claude/skills/ads/references/linkedin-creative-specs.md
  • ~/.claude/skills/ads/references/youtube-creative-specs.md
  • ~/.claude/skills/ads/references/microsoft-creative-specs.md

Step 5: Spawn Visual Designer Agent

Spawn the visual-designer agent using the Task tool with context: fork.

The agent will:

  • Parse the image generation briefs from campaign-brief.md
  • Inject brand colors and mood from brand-profile.json
  • Call generate_image.py for each asset
  • Save to ./ad-assets/[platform]/[concept]/ directory structure
  • Write generation-manifest.json

Step 6: Validate with Format Adapter

After the visual-designer completes, spawn the format-adapter agent with context: fork to validate dimensions and report missing formats.

Step 7: Report Results

Present a summary:

Generation complete:

  Generated assets:
    ✓ ./ad-assets/meta/concept-1/feed-1080x1350.png
    ✓ ./ad-assets/tiktok/concept-1/vertical-1080x1920.png
    ✗ ./ad-assets/google/concept-1/landscape-1200x628.png [error reason]

  Format validation: See format-report.md

  Cost estimate: ~$[N] at $0.067/image (Gemini 1K)

  Next steps:
    1. Review assets in ./ad-assets/
    2. Check format-report.md for any missing formats
    3. Upload to your ad platform managers

Cost Transparency

Before generating, estimate and show the cost:

  • Count the number of image briefs in campaign-brief.md
  • Multiply by $0.067 (Gemini default 1K)
  • Show: "Estimated cost: [N] images × $0.067 = ~$[total]"
  • If >$1.00, ask for confirmation before proceeding

Standalone Mode (No campaign-brief.md)

When running without a campaign brief:

Platform target → dimensions used:
  meta-feed     → 1080×1350 (4:5)
  meta-reels    → 1080×1920 (9:16)
  tiktok        → 1080×1920 (9:16)
  google-pmax   → 1200×628 (1.91:1)
  linkedin      → 1080×1080 (1:1)
  youtube       → 1280×720 (16:9)
  youtube-short → 1080×1920 (9:16)

Calls generate_image.py directly:

bash
1python ~/.claude/skills/ads/scripts/generate_image.py \ 2 "[user prompt]" \ 3 --size [WxH] \ 4 --output [filename] \ 5 --json

Reference Files

  • ~/.claude/skills/ads/references/image-providers.md — provider config, pricing, limits
  • ~/.claude/skills/ads/references/[platform]-creative-specs.md — per-platform specs
  • ~/.claude/skills/ads/references/brand-dna-template.md — brand injection schema

관련 스킬

Looking for an alternative to ads-generate or another community skill for your workflow? Explore these related open-source skills.

모두 보기

openclaw-release-maintainer

Logo of openclaw
openclaw

현지화된 요약: 🦞 # OpenClaw Release Maintainer Use this skill for release and publish-time workflow. It covers ai, assistant, crustacean workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

333.8k
0
인공지능

widget-generator

Logo of f
f

현지화된 요약: Generate customizable widget plugins for the prompts.chat feed system # Widget Generator Skill This skill guides creation of widget plugins for prompts.chat. It covers ai, artificial-intelligence, awesome-list workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf

149.6k
0
인공지능

flags

Logo of vercel
vercel

현지화된 요약: The React Framework # Feature Flags Use this skill when adding or changing framework feature flags in Next.js internals. It covers blog, browser, compiler workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

138.4k
0
브라우저

pr-review

Logo of pytorch
pytorch

현지화된 요약: Usage Modes No Argument If the user invokes /pr-review with no arguments, do not perform a review. It covers autograd, deep-learning, gpu workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

98.6k
0
개발자