Agent skill · Media & Video

fal-ai

Generate images, videos, and audio with fal.ai serverless AI. Use when building AI image generation, video generation, image editing, or real-time AI features. Triggers on fal.ai, fal, AI image generation, Flux, SDXL, real-time AI, serverless AI.

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill fal-ai --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 8 KB
Bundled scripts: none
Path: skills/ai-ml/fal-ai/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# fal.ai - Serverless AI Platform Generate images, videos, and audio with fal.ai's fast serverless inference. ## Quick Start ```bash npm install @fal-ai/serverless-client ``` ```typescript import * as fal from '@fal-ai/serverless-client'; fal.config({ credentials: process.env.FAL_KEY, }); // Generate image with Flux const result = await fal.subscribe('fal-ai/flux/dev', { input: { prompt: 'A serene Japanese garden with cherry blossoms', image_size: 'landscape_16_9', num_images: 1, }, }); console.log(result.images[0].url); ``` ## Authentication ```typescript // Option 1: Environment variable (recommended) // Set FAL_KEY in .env fal.config({ credentials: process.env.FAL_KEY }); // Option 2: Direct config fal.config({ credentials: 'your-api-key' }); // Option 3: Proxy (for client-side apps) // Use fal.config({ proxyUrl: '/api/fal/proxy' }) on client ``` ## Image Generation Models ### Flux (Fastest, High Quality) ```typescript // Flux Dev - Best quality const result = await fal.subscribe('fal-ai/flux/dev', { input: { prompt: 'Professional headshot of a business executive', image_size: 'square_hd', // 1024x1024 num_inference_steps: 28, guidance_scale: 3.5, num_images: 1, enable_safety_ch

What's inside
Steps it walks through
  1. Quick Start
  2. Authentication
  3. Image Generation Models
  4. Flux (Fastest, High Quality)
  5. Image Sizes
  6. SDXL & Stable Diffusion
  7. Image-to-Image
  8. Image Editing with Flux
  9. ControlNet
  10. Video Generation
  11. Kling Video
  12. Image to Video
  13. Luma Dream Machine
  14. Real-Time Generation
Ships with 1 file
  • metadata.json
Commands it runs
npm install @fal-ai/serverless-client
More from claude-skill-registry
All skills →
About this skill
What does the fal-ai skill do?

Generate images, videos, and audio with fal.ai serverless AI. Use when building AI image generation, video generation, image editing, or real-time AI features. Triggers on fal.ai, fal, AI image generation, Flux, SDXL, real-time AI, serverless AI.

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill fal-ai --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going