Install
openclaw skills install brand-identity-analyzerAnalyze brands to generate comprehensive brand identity profiles (JSON). Use when the user wants to analyze a brand, create a brand profile, or needs brand data for ad generation. Stores profiles for reuse across Ad-Ready, Morpheus, and other creative workflows. Can list existing profiles and update them.
openclaw skills install brand-identity-analyzerAnalyze any brand to generate a comprehensive brand identity JSON profile using Gemini Flash with Google Search grounding.
Brand Analyzer creates structured brand identity profiles by:
GEMINI_API_KEY="$KEY" uv run {baseDir}/scripts/analyze.py \
--brand "Brand Name" \
--output ./brands/Brand_Name.json
GEMINI_API_KEY="$KEY" uv run {baseDir}/scripts/analyze.py \
--brand "Heredero Gin" \
--auto-save
The --auto-save flag automatically saves to ~/clawd/ad-ready/configs/Brands/{Brand_Name}.json
Every time a new brand profile is generated and saved, it MUST be pushed to GitHub immediately. This is non-optional — the ComfyDeploy deployment pulls brand profiles from the repo.
cd ~/clawd/ad-ready
git add configs/Brands/{Brand_Name}.json
git commit -m "Add brand profile: {Brand Name}"
git push origin main
Do NOT skip this step. The ad generation pipeline on ComfyDeploy needs the profile in the repo to work correctly.
GEMINI_API_KEY="$KEY" uv run {baseDir}/scripts/analyze.py --brand "Nike"
| Input | Required | Description |
|---|---|---|
--brand | ✅ | Brand name to analyze |
--output | Optional | Output file path (default: stdout) |
--auto-save | Optional | Auto-save to Ad-Ready brands catalog |
--api-key | Optional | Gemini API key (or set GEMINI_API_KEY env var) |
The generated JSON follows the standard brand identity template used by Ad-Ready:
{
"brand_info": { "name", "tagline", "category", "positioning", "vision", "mission", "origin_story" },
"brand_values": { "core_values", "brand_promise", "differentiators", "non_negotiables" },
"target_audience": { "demographics", "psychographics" },
"tone_of_voice": { "personality_traits", "communication_style", "language_register", ... },
"visual_identity": { "logo", "color_system", "typography", "layout_principles" },
"photography": { "style", "technical" },
"campaign_guidelines": { "visual_tone", "model_casting", "product_presentation", ... },
"brand_behavior": { "do_dont", "immutability" },
"channel_expression": { "retail", "digital", "print" },
"compliance": { ... }
}
Brand profiles are automatically available as brand_profile options when generating ads.
Brand visual identity (colors, photography style, tone) can inform Morpheus campaigns.
Load any brand profile JSON to extract visual identity, tone of voice, or campaign guidelines for any creative task.
The analyzer follows a 3-phase approach:
Uses Gemini API. Set via:
GEMINI_API_KEY environment variable--api-key flag