Agent skill · Backend & API

fal-api

Generate images, videos, and audio via fal.ai API (FLUX, SDXL, Whisper, etc.)

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

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

Facts
Files in the skill folder: 2
SKILL.md size: 3 KB
Bundled scripts: none
Version: 0.1.0
Path: skills/ai-ml/fal-ai-aaaaqwq-agi-super-skills/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 API Skill Generate images, videos, and transcripts using fal.ai's API with support for FLUX, Stable Diffusion, Whisper, and more. ## Features - Queue-based async generation (submit → poll → result) - Support for 600+ AI models - Image generation (FLUX, SDXL, Recraft) - Video generation (MiniMax, WAN) - Speech-to-text (Whisper) - Stdlib-only dependencies (no `fal_client` required) ## Setup 1. Get your API key from https://fal.ai/dashboard/keys 2. Configure with: ```bash export FAL_KEY="your-api-key" ``` Or via clawdbot config: ```bash clawdbot config set skill.fal_api.key YOUR_API_KEY ``` ## Usage ### Interactive Mode ``` You: Generate a cyberpunk cityscape with FLUX Klawf: Creates the image and returns the URL ``` ### Python Script ```python from fal_api import FalAPI api = FalAPI() # Generate and wait urls = api.generate_and_wait( prompt="A serene Japanese garden", model="flux-dev" ) print(urls) ``` ### Available Models | Model | Endpoint | Type | | ------------- | ------------------------------------- | ------------ | | flux-schnell | `fal-ai/flux/schnell` | Image (fast) | | flux-dev | `fal-ai/flux/dev` | Image | | flux-pro | `fal-ai/flux-pro/v1.1-ultra` | Image (2K) | |

What's inside
Steps it walks through
  1. Features
  2. Setup
  3. Usage
  4. Interactive Mode
  5. Python Script
  6. Available Models
  7. Parameters
  8. Credits
Ships with 1 file
  • metadata.json
Commands it runs
export FAL_KEY="your-api-key"
clawdbot config set skill.fal_api.key YOUR_API_KEY
python3 fal_api.py --list-models
More from claude-skill-registry
All skills →
About this skill
What does the fal-api skill do?

Generate images, videos, and audio via fal.ai API (FLUX, SDXL, Whisper, etc.)

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill fal-ai-aaaaqwq-agi-super-skills --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