fal-api
⚠Review·Scanned 2/17/2026
Provides a Python client to generate images, video, and audio via fal.ai's queue API. The skill reads the FAL_KEY, invokes clawdbot config get skill.fal_api.key, and makes network requests to https://queue.fal.run.
from clawhub.ai·v0.1.0·12.5 KB·0 installs
Scanned from 0.1.0 at 9d57da0 · Transparency log ↗
$ vett add clawhub.ai/agmmnn/fal-apiReview findings below
fal.ai API Skill
See SKILL.md for full documentation.
Quick Start
# Set your API key
export FAL_KEY="your-api-key"
# Generate an image
python3 fal_api.py --prompt "A cute robot cat" --model flux-schnell
# List available models
python3 fal_api.py --list-models
Configure Credentials
# Via environment
export FAL_KEY="your-api-key"
# Or via clawdbot config
clawdbot config set skill.fal_api.key YOUR_API_KEY
Requirements
- Python 3.7+
- No external dependencies (uses stdlib)