基于 SOC 职业分类
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/johnalbertini14-glitch/openclaw-skills --skill flux-2-flash命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
Use this skill to create a Polymarket wallet for your agent and trade on prediction markets. Browse markets, place bets, manage positions — all without exposing private keys.
ClawSec suite manager with embedded advisory-feed monitoring, cryptographic signature verification, approval-gated malicious-skill response, and guided setup for additional security skills.
Automated daily security audits for OpenClaw agents with email reporting. Runs deep audits and sends formatted reports.
| name | Flux 2 Flash 图像生成 |
| description | 使用 Flux 2 Flash 模型生成或编辑图像。当用户想要文生图、图像编辑,或提到 flux 2、FLUX.2 时使用此 skill。 |
| category | image |
| tags | ["图像生成","文生图","图像编辑","Flux","极速"] |
| featured | true |
Black Forest Labs 推出的 FLUX.2 [dev] 图像生成和编辑模型,具有增强的写实感、更清晰的文字渲染和原生编辑能力。
| 模型 ID | 功能 | 说明 |
|---|---|---|
fal-ai/flux-2/flash | 文生图 / 图像编辑 | 统一入口,根据是否提供图片自动切换模式 |
自动切换逻辑:
image_urls → 文生图模式image_urls → 图像编辑模式使用 MCP 工具 submit_task 提交任务:
文生图模式(无图片输入):
{
"model_id": "fal-ai/flux-2/flash",
"parameters": {
"prompt": "A beautiful sunset over the ocean with sailboats"
}
}
图像编辑模式(有图片输入):
{
"model_id": "fal-ai/flux-2/flash",
"parameters": {
"prompt": "Remove the meat from the hamburger",
"image_urls": ["https://example.com/hamburger.png"]
}
}
| 参数 | 类型 | 必填 | 默认值 | 说明 |
|---|---|---|---|---|
| prompt | string | 是 | - | 图像生成/编辑提示词 |
| image_urls | array | 否 | - | 输入图片 URL 列表(1-4 张),提供时自动切换为编辑模式 |
| image_size | string | 否 | landscape_4_3 | 图像尺寸预设 |
| num_images | integer | 否 | 1 | 生成图像数量(1-4) |
| guidance_scale | number | 否 | 2.5 | 引导强度(0-20),控制遵循提示词程度 |
| seed | integer | 否 | - | 随机种子,用于复现结果 |
| enable_prompt_expansion | boolean | 否 | false | 启用提示词扩展以获得更好的结果 |
| output_format | string | 否 | png | 输出图像格式:jpeg, png, webp |
| enable_safety_checker | boolean | 否 | true | 是否启用安全检查 |
square_hd - 1024x1024(高清正方形)square - 512x512(标准正方形)portrait_4_3 - 768x1024(竖屏 4:3)portrait_16_9 - 576x1024(竖屏 16:9)landscape_4_3 - 1024x768(横屏 4:3,默认)landscape_16_9 - 1024x576(横屏 16:9)提交任务后会返回 task_id,使用 get_task 查询结果:
{
"task_id": "返回的任务ID"
}
任务状态:
pending - 排队中processing - 处理中completed - 完成,结果在 result 中failed - 失败,查看 error 字段用户请求:生成一张日落海景图片
执行步骤:
submit_task:{
"model_id": "fal-ai/flux-2/flash",
"parameters": {
"prompt": "An army of ants battles for a sugar cube in a giant sandbox, with tiny plastic soldier toys caught in the melee. Ant bodies shine against gritty beige sand and the glossy, crystalline cube. Fiery sunrise spills golden highlights, throwing dramatic shadows.",
"image_size": "landscape_16_9",
"num_images": 1
}
}
task_id 后调用 get_task 查询结果用户请求:把汉堡里的肉去掉
执行步骤:
submit_task:{
"model_id": "fal-ai/flux-2/flash",
"parameters": {
"prompt": "Remove the meat from the hamburger",
"image_urls": ["https://storage.googleapis.com/falserverless/example_outputs/flux-2-flash-edit-input.png"],
"image_size": "square_hd"
}
}
task_id 后调用 get_task 查询结果每次调用扣除 2 积分(按 num_images 数量计费)