Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问clear审计异常

creative-orchestrator创意协调者

Agent Skill

creative-orchestrator 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

593

周安装

24

GitHub Stars

21

下载量

186
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:creative-orchestrator(创意协调者)
来源仓库:https://github.com/sanky369/vibe-building-skills
仓库路径:skills/creative-orchestrator
安装命令:
npx skills add https://github.com/sanky369/vibe-building-skills --skill creative-orchestrator
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/sanky369/vibe-building-skills --skill creative-orchestrator

简介

创意协调者统筹所有创意技能执行顺序与自动化流程,实现资产生成与工作流管理一体化。

  • 适用于 Claude Code 环境下的多技能协同调用,提升创意生产效率与系统集成度。
  • 可动态调度 Python 脚本运行与外部工具接入,支持端到端创意项目管理。
  • 部署前需验证技能依赖与环境兼容性,防止因配置错误导致任务中断。
  • creative-orchestrator 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Creative Orchestrator Skill

Overview

The Creative Orchestrator is the master coordinator for all creative skills. It tells Claude Code exactly how to generate assets using the automation system, manage workflows, and orchestrate creative production.

Keywords: orchestration, workflow, automation, asset generation, creative production, Claude Code integration

What This Skill Does

The Creative Orchestrator:

  1. Coordinates all creative skills — Tells Claude which skills to use in which order
  2. Manages Claude Code integration — Shows Claude how to run Python code to generate assets
  3. Automates workflows — Chains multiple generation tasks together
  4. Handles file organization — Manages asset storage and organization
  5. Provides templates — Pre-built workflows for common scenarios

How Claude Code Uses This Skill

When you ask Claude to generate creative assets, the Orchestrator tells Claude Code:

  1. Where the automation system is — File paths and imports
  2. How to set up the environment — API keys, dependencies
  3. What Python code to run — Exact function calls
  4. How to chain operations — Multiple assets in sequence
  5. Where to save results — Organized folder structure

Automatic Skill Invocation

After understanding the user's creative needs, ask if they want you to automatically invoke the relevant creative skills. For example:

"For your product launch, I recommend these skills:
1. creative-strategist (define visual direction)
2. product-photography (hero shots)
3. social-graphics (platform assets)

Would you like me to run these skills now? I'll invoke each one to guide your asset creation."

If the user agrees, invoke each skill using the /skill-name command (e.g., /creative-strategist, /product-photography). Work through them in the recommended order.

Setup: Enable Automation System

Step 1: Extract Automation System

Copy and Extract vibe-creative-automation.zip to your project and add it in gitignore (it is located in the root where this file is):

your-project/
├── vibe-creative-automation/
│   ├── fal_api.py
│   ├── creative_cli.py
│   ├── claude_integration.py
│   └── requirements.txt
└── assets/  (will be created automatically)

Step 2: Install Dependencies

pip install requests

Step 3: Set API Key

export FAL_API_KEY="your_fal_api_key_here"

Or set in your environment:

export FAL_KEY="your_fal_api_key_here"

Step 4: Test Connection

Ask Claude to test the API:

Test my nanobanana pro API connection by generating a simple test image.

Claude will run:

from fal_api import NanobananProClient

client = NanobananProClient()
result = client.generate_image(
    prompt="A red cube on a white background, minimalist, professional quality, 4K",
    num_images=1,
    resolution="2K"
)
print(f"✅ Generated: {result['images'][0]['url']}")

Claude Code Integration Patterns

Pattern 1: Single Asset Generation

from claude_integration import generate_product

result = generate_product(
    product_name="Luxury Watch",
    description="A luxury leather watch with gold accents",
    style="professional product photography",
    num_variations=3
)

for img in result['images']:
    print(f"Generated: {img}")

Pattern 2: Social Campaign

from claude_integration import generate_social

platforms = ["instagram", "linkedin", "twitter"]
for platform in platforms:
    result = generate_social(
        platform=platform,
        topic="Product Launch",
        description="Eye-catching post for product launch",
        num_variations=1
    )
    print(f"{platform}: {result['images']}")

Pattern 3: Brand Identity

from claude_integration import generate_brand

assets = ["logo", "icon", "pattern"]
for asset_type in assets:
    result = generate_brand(
        brand_name="TechCorp",
        element_type=asset_type,
        description=f"Modern {asset_type} for tech company",
        num_variations=1
    )
    print(f"{asset_type}: {result['images']}")

Pattern 4: Batch Generation

from claude_integration import batch_generate_assets

assets = [
    {
        "type": "product",
        "name": "Watch",
        "description": "Luxury leather watch with gold accents",
        "style": "professional product photography",
        "num_variations": 2
    },
    {
        "type": "social",
        "platform": "instagram",
        "topic": "Product Launch",
        "description": "Instagram post for launch",
        "num_variations": 1
    },
    {
        "type": "brand",
        "brand_name": "TechCorp",
        "element_type": "logo",
        "description": "Modern tech logo",
        "num_variations": 1
    }
]

results = batch_generate_assets(assets)
for result in results:
    print(f"{result['asset_name']}: {result['images']}")

Pattern 5: Custom Asset with Web Search

from claude_integration import generate_asset

result = generate_asset(
    category="infographics",
    name="tech-trends-2025",
    prompt="Create an infographic of top tech trends for 2025 based on current data",
    num_variations=1,
    enable_web_search=True
)

print(f"Generated: {result['images']}")

Nanobanana Pro Parameters

Resolution Options

1K   — Small, fast generation
2K   — Default, balanced quality
4K   — Large, maximum detail

Aspect Ratios

21:9  — Ultra-wide
16:9  — Widescreen
3:2   — Standard
4:3   — Square-ish
5:4   — Square-ish
1:1   — Square (default)
4:5   — Portrait
3:4   — Portrait
2:3   — Portrait
9:16  — Mobile portrait

Output Formats

png   — Lossless, best for graphics (default)
jpeg  — Compressed, smaller file size
webp  — Modern format, good compression

Web Search Integration

Enable Google Search for real-time data:

result = generate_asset(
    category="infographics",
    name="stock-trends",
    prompt="Visualize current stock market trends",
    enable_web_search=True
)

Workflow Templates

Workflow 1: E-Commerce Product Launch

from claude_integration import batch_generate_assets

# Generate complete product launch assets
assets = [
    # Product photos
    {"type": "product", "name": "watch", "description": "Luxury watch", "num_variations": 4},
    {"type": "product", "name": "wallet", "description": "Premium wallet", "num_variations": 3},

    # Social graphics
    {"type": "social", "platform": "instagram", "topic": "launch", "description": "Instagram post", "num_variations": 2},
    {"type": "social", "platform": "linkedin", "topic": "launch", "description": "LinkedIn post", "num_variations": 1},
    {"type": "social", "platform": "twitter", "topic": "launch", "description": "Twitter post", "num_variations": 1},

    # Brand assets
    {"type": "brand", "brand_name": "MyBrand", "element_type": "logo", "description": "Brand logo", "num_variations": 2},
]

results = batch_generate_assets(assets)
print(f"Generated {len(results)} asset groups")

Workflow 2: Content Creator Series

from claude_integration import generate_social, generate_asset

# Generate content series for a week
topics = ["AI Trends", "Web3", "Blockchain", "NFTs", "Metaverse"]

for topic in topics:
    # Generate thumbnail
    thumbnail = generate_asset(
        category="thumbnails",
        name=f"video-{topic.lower()}",
        prompt=f"YouTube thumbnail for {topic} video, bold design, eye-catching",
        num_variations=1
    )

    # Generate social post
    post = generate_social(
        platform="twitter",
        topic=topic,
        description=f"Tweet about {topic}",
        num_variations=1
    )

    print(f"{topic}: thumbnail={thumbnail['images']}, post={post['images']}")

Workflow 3: Brand Refresh

from claude_integration import batch_generate_assets

# Complete brand refresh
assets = [
    # New brand identity
    {"type": "brand", "brand_name": "NewBrand", "element_type": "logo", "description": "Modern logo", "num_variations": 3},
    {"type": "brand", "brand_name": "NewBrand", "element_type": "icon", "description": "App icons", "num_variations": 1},
    {"type": "brand", "brand_name": "NewBrand", "element_type": "pattern", "description": "Brand pattern", "num_variations": 1},

    # Marketing graphics
    {"type": "social", "platform": "instagram", "topic": "rebrand", "description": "Rebrand announcement", "num_variations": 2},
    {"type": "social", "platform": "linkedin", "topic": "rebrand", "description": "LinkedIn announcement", "num_variations": 1},
]

results = batch_generate_assets(assets)
print(f"Brand refresh complete: {len(results)} assets generated")

Common Prompting Patterns

Product Photography

A luxury leather watch with gold accents on white background,
professional product photography, studio lighting with rim light,
centered composition, sharp focus, 4K, highly detailed

Viral Thumbnail

Design a viral video thumbnail with bold colors, eye-catching text overlay,
high contrast, professional quality, 4K, trending design

Infographic

Create a clean, modern infographic summarizing key information.
Include charts, icons, and legible text.
Professional quality, 4K, suitable for presentation

Brand Logo

Modern tech company logo, geometric style, blue and white colors,
minimalist design, scalable, professional, clean lines,
suitable for all media

Social Media Graphic

Instagram post graphic for product launch, vibrant colors,
eye-catching composition, modern design, professional quality,
trending aesthetic

Troubleshooting

Problem: API Key Not Found

Error: FAL_API_KEY or FAL_KEY not found

Solution:

export FAL_API_KEY="your_key_here"

Or ask Claude to set it:

Set my FAL_API_KEY environment variable to [your_key]

Problem: No Images Generated

Solution:

  • Check API key is valid
  • Verify internet connection
  • Try a simpler prompt
  • Check nanobanana pro is available

Problem: Images Don't Match Style

Solution:

  • Add more specific style descriptors
  • Reference your Creative Strategist guide
  • Generate multiple variations
  • Use conversational editing

Problem: Generation Too Slow

Solution:

  • Reduce resolution from 4K to 2K
  • Reduce num_images to 1
  • Use simpler prompts

Integration with Creative Skills

The Orchestrator works with all creative skills:

  • Creative Strategist — Defines your visual direction
  • Image Generation — Teaches prompting techniques
  • Product Photography — Creates product shots
  • Social Graphics — Generates social content
  • Brand Asset — Creates brand elements
  • Product Video — Plans video content
  • Talking Head — Plans presenter videos

Asset Organization

Generated assets are automatically organized:

assets/
├── product-photography/
│   ├── luxury-watch/
│   └── premium-wallet/
├── social-graphics/
│   ├── instagram/
│   ├── linkedin/
│   └── twitter/
├── brand-assets/
│   └── techcorp/
│       ├── logo/
│       ├── icon/
│       └── pattern/
└── thumbnails/
    └── video-1/

Next Steps

  1. Extract automation system to your project
  2. Install dependencies: pip install requests
  3. Set API key: export FAL_API_KEY="your_key"
  4. Test connection: Ask Claude to test the API
  5. Choose your workflow: Pick a template above
  6. Generate assets: Start creating!

Quick Commands

Generate product photo:

Generate 3 product photos for my luxury watch using nanobanana pro

Generate social campaign:

Generate Instagram, LinkedIn, and Twitter posts for my product launch

Generate brand identity:

Generate a complete brand identity including logo, icons, and patterns

Batch generate:

Generate 10 assets for my e-commerce store including product photos and social graphics

Test API:

Test my nanobanana pro API connection

You now have complete automation for creative asset generation with nanobanana pro. Start creating! 🚀

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Claude Code

25.92%
按下载量换算48

OpenCode

21.32%
按下载量换算40

Codex

18.82%
按下载量换算35

Gemini CLI

12.1%
按下载量换算23

Antigravity

8.01%
按下载量换算15

trae

3.05%
按下载量换算6

安全审计

Gen Agent Trust Hub

通过

Socket

未通过

Snyk

未通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。

来源信息

继续浏览同类 Skills