← ClaudeAtlas

ai-creative-toolslisted

Orchestrate advanced creative AI workflows using ComfyUI, ElevenLabs, and Hugging Face integrations. Triggers on "generate AI art", "ComfyUI workflow", "ElevenLabs voice", "automate creative pipeline", "generate asset queue", or "AI image generation".
seanwinslow28/code-brain · ★ 0 · AI & Automation · score 72
Install: claude install-skill seanwinslow28/code-brain
# AI Creative Tool Orchestration ## Purpose Automate complex creative tasks by integrating specialized AI tools (ComfyUI, ElevenLabs, Hugging Face) into the Claude Code development loop. Queue image generation jobs, synthesize voice audio, and post-process generated assets using hooks and CLI scripts. ## When to Use - Triggering local ComfyUI workflows for sprite/texture generation - Synthesizing voiceovers via ElevenLabs API - Searching and using Hugging Face models/spaces for generation tasks - Automating post-processing of AI-generated assets - Managing asynchronous generation queues ## Examples **Example 1: ComfyUI Sprite Generation** ``` User: "Generate a pixel art potion bottle using the local ComfyUI server." Claude: [Uses ai-creative-tools] Queueing workflow 'pixel_art_generator.json' with prompt: "Red health potion, 16x16 pixel art, isometric view" curl -s -X POST http://127.0.0.1:8188/prompt \ -H "Content-Type: application/json" \ -d '{"prompt": <workflow_json>}' Job queued (prompt_id: abc123). Polling for completion... Image saved to: assets/generated/potion_01.png Running post-process: pngquant for palette reduction. ``` **Example 2: ElevenLabs Voice Synthesis** ``` User: "Create voice lines for the Merchant NPC greeting." Claude: [Uses ai-creative-tools] Using ElevenLabs voice 'Adam' via API... python3 scripts/generate_voice.py \ --text "Welcome, traveler! Care to see my wares?" \ --voice adam \ --output assets/audio/npc_merchant_greeting.mp