adobe-core-workflow-a

Featured

Execute Adobe Firefly Services workflow: AI image generation, generative fill, and expand image using the Firefly v3 API. Use when generating images from prompts, filling or expanding images with AI, or building creative automation pipelines. Trigger with phrases like "adobe firefly", "generate image adobe", "firefly text to image", "adobe AI image", "generative fill".

AI & Automation 2,266 stars 315 forks Updated today MIT

Install

View on GitHub

Quality Score: 99/100

Stars 20%
100
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Adobe Core Workflow A — Firefly Services ## Overview Primary creative workflow using Adobe Firefly v3 APIs: text-to-image generation, generative fill (inpainting), and image expansion (outpainting). These are the most common Firefly Services operations for marketing asset automation. ## Prerequisites - Completed `adobe-install-auth` with Firefly API scopes (`firefly_api,ff_apis`) - `@adobe/firefly-apis` installed, or direct REST access - Pre-signed cloud storage URLs for input/output images (S3, Azure Blob, or Dropbox) ## Instructions ### Step 1: Text-to-Image Generation (Synchronous) ```typescript // src/workflows/firefly-generate.ts import { getAccessToken } from '../adobe/client'; interface FireflyGenerateOptions { prompt: string; negativePrompt?: string; width?: number; // 1024, 1472, 1792, 2048 height?: number; n?: number; // 1-4 images contentClass?: 'art' | 'photo'; style?: { presets?: string[]; // e.g., ['digital_art', 'cinematic'] strength?: number; // 0-100 }; } interface FireflyOutput { outputs: Array<{ image: { url: string }; seed: number; }>; } export async function generateImage(opts: FireflyGenerateOptions): Promise<FireflyOutput> { const token = await getAccessToken(); const body: Record<string, any> = { prompt: opts.prompt, n: opts.n || 1, size: { width: opts.width || 1024, height: opts.height || 1024 }, contentClass: opts.contentClass || 'photo', }; if (opts.negativePrompt...

Details

Author
jeremylongshore
Repository
jeremylongshore/claude-code-plugins-plus-skills
Created
7 months ago
Last Updated
today
Language
Python
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category

AI & Automation Listed

adobe-firefly-api-batch-image-generator

Calls Adobe Firefly's text-to-image and generative fill APIs for batch asset creation. Manages Adobe IMS OAuth tokens and enforces Content Credentials (C2PA) metadata on all outputs.

11 Updated today
agentskillexchange
AI & Automation Featured

adobe-hello-world

Create minimal working examples for Adobe APIs: Firefly image generation, PDF extraction, and Photoshop background removal. Use when starting a new Adobe integration, testing your setup, or learning basic Adobe API patterns. Trigger with phrases like "adobe hello world", "adobe example", "adobe quick start", "simple adobe code", "first adobe API call".

2,266 Updated today
jeremylongshore
Data & Documents Listed

adobe

Access Adobe Creative Cloud APIs - Photoshop, Lightroom, PDF Services, and Firefly AI. Automate creative workflows.

15 Updated yesterday
dvcrn
AI & Automation Listed

adobe-photoshop-api-batch-processor

Automates image editing workflows via the Adobe Photoshop API (Firefly Services). Supports smart object replacement, action playback, and PSD layer manipulation at scale.

11 Updated today
agentskillexchange
AI & Automation Featured

adobe-migration-deep-dive

Execute major Adobe re-architecture: migrating from legacy Adobe APIs to Firefly Services, consolidating Creative Cloud integrations, and strangler-fig migration from competitor document/image APIs to Adobe. Trigger with phrases like "migrate adobe", "adobe migration", "switch to adobe", "adobe replatform", "replace with adobe".

2,266 Updated today
jeremylongshore