/install falimagegen
Fal Image Gen
Overview
Use this skill to implement text-to-image or image-to-image calls against fal model APIs. Prioritize correctness by checking the current docs for the selected model’s required inputs/outputs and authentication requirements.
Quick Start
- Identify the target model ID from the fal model API docs.
- Collect inputs from the user.
- Text-to-image:
prompt, optionalnegative_prompt, size/aspect, steps, seed, safety options. - Image-to-image: source image URL, strength/denoise, plus prompt/options above.
- Pick the calling method.
- If the user prefers SDKs: provide Python and/or JavaScript examples.
- If the user prefers REST: provide a curl/HTTP example.
- Execute the request and return image URL(s) from the response.
Workflow: Text-to-Image
- Resolve the model ID and schema.
- Open the fal model API docs and confirm the exact input fields and output format.
- Validate inputs.
- Ensure prompt is non-empty and size/aspect settings are supported by the model.
- Build the request.
- SDK: call the SDK’s
run/submitmethod with aninputobject. - REST: call the model endpoint with a JSON body that matches the schema.
- Execute and parse output.
- Extract image URL(s) from the response fields defined by the model.
- Return URLs.
- Provide a clean list of URLs and note any metadata the user asked for (seed, size, etc.).
Workflow: Image-to-Image
- Resolve the model ID and schema.
- Validate inputs.
- Ensure the source image is reachable by URL (or converted to the required format).
- Confirm any strength/denoise range constraints from docs.
- Build the request.
- Include source image + prompt + other options as required by the model.
- Execute and parse output.
- Extract image URL(s) from the response fields defined by the model.
- Return URLs.
SDK vs REST Guidance
- Prefer SDKs for simpler auth and retries.
- Prefer REST when the user needs raw HTTP examples, or when running in environments without SDK support.
- Never hardcode API keys. Follow the docs for the required environment variable or header name.
Minimal Examples (Fill From Docs)
Use these as templates only. Replace placeholders after checking the docs.
Python (SDK)
# Pseudocode: replace with the exact fal SDK import + call pattern from docs
import os
# from fal import client # or the current SDK import
MODEL_ID = "\x3Cmodel-id-from-docs>"
input_data = {
"prompt": "a cinematic photo of a red fox",
# "image_url": "https://..." # for image-to-image
# "negative_prompt": "...",
# "width": 1024,
# "height": 1024,
}
# result = client.run(MODEL_ID, input=input_data)
# urls = extract_urls(result)
JavaScript (SDK)
// Pseudocode: replace with the exact fal SDK import + call pattern from docs
// import { client } from "@fal-ai/client";
const MODEL_ID = "\x3Cmodel-id-from-docs>";
const input = {
prompt: "a cinematic photo of a red fox",
// image_url: "https://..." // for image-to-image
};
// const result = await client.run(MODEL_ID, { input });
// const urls = extractUrls(result);
REST (curl)
# Pseudocode: replace endpoint, headers, and payload schema from docs
curl -X POST "https://\x3Cfal-api-base>/\x3Cmodel-endpoint>" \
-H "Authorization: Bearer \x3CAPI_KEY>" \
-H "Content-Type: application/json" \
-d '{
"prompt": "a cinematic photo of a red fox"
}'
Resources
references/fal-model-api-checklist.md: Checklist for gathering inputs and validating responses.references/fal-model-examples.md: Example templates for text-to-image, image-to-image, and REST usage.
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install falimagegen - 安装完成后,直接呼叫该 Skill 的名称或使用
/falimagegen触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
falimagegen 是什么?
Call fal.ai model APIs for image generation (text-to-image and image-to-image). Use when a user asks to integrate fal, construct requests, run jobs, handle auth, or return image URLs from fal model APIs. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 1600 次。
如何安装 falimagegen?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install falimagegen」即可一键安装,无需额外配置。
falimagegen 是免费的吗?
是的,falimagegen 完全免费(开源免费),可自由下载、安装和使用。
falimagegen 支持哪些平台?
falimagegen 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 falimagegen?
由 xxmzdxxxm(@xxmzdxxxm)开发并维护,当前版本 v1.0.0。