flux-image
Black Forest LabsのFLUXモデルを活用し、テキストや画像から多様なスタイルで画像を生成するSkill。
📜 元の英語説明(参考)
Generate images with FLUX models (Black Forest Labs) via inference.sh CLI. Models: FLUX Dev LoRA, FLUX.2 Klein LoRA with custom style adaptation. Capabilities: text-to-image, image-to-image, LoRA fine-tuning, custom styles. Triggers: flux, flux.2, flux dev, flux schnell, flux pro, black forest labs, flux image, flux ai, flux model, flux lora
🇯🇵 日本人クリエイター向け解説
Black Forest LabsのFLUXモデルを活用し、テキストや画像から多様なスタイルで画像を生成するSkill。
※ jpskill.com 編集部が日本のビジネス現場向けに補足した解説です。Skill本体の挙動とは独立した参考情報です。
⚠️ ダウンロード・利用は自己責任でお願いします。当サイトは内容・動作・安全性について責任を負いません。
🎯 このSkillでできること
下記の説明文を読むと、このSkillがあなたに何をしてくれるかが分かります。Claudeにこの分野の依頼をすると、自動で発動します。
📦 インストール方法 (3ステップ)
- 1. 上の「ダウンロード」ボタンを押して .skill ファイルを取得
- 2. ファイル名の拡張子を .skill から .zip に変えて展開(macは自動展開可)
- 3. 展開してできたフォルダを、ホームフォルダの
.claude/skills/に置く- · macOS / Linux:
~/.claude/skills/ - · Windows:
%USERPROFILE%\.claude\skills\
- · macOS / Linux:
Claude Code を再起動すれば完了。「このSkillを使って…」と話しかけなくても、関連する依頼で自動的に呼び出されます。
詳しい使い方ガイドを見る →- 最終更新
- 2026-05-17
- 取得日時
- 2026-05-17
- 同梱ファイル
- 1
📖 Skill本文(日本語訳)
※ 原文(英語/中国語)を Gemini で日本語化したものです。Claude 自身は原文を読みます。誤訳がある場合は原文をご確認ください。
FLUX 画像生成

inference.sh CLI を介して FLUX モデルで画像を生成します。
クイックスタート
curl -fsSL https://cli.inference.sh | sh && infsh login
infsh app run falai/flux-dev-lora --input '{"prompt": "a futuristic city at night"}'
FLUX モデル
| モデル | App ID | 速度 | 品質 | ユースケース |
|---|---|---|---|---|
| FLUX Dev LoRA | falai/flux-dev-lora |
中 | 最高 | プロダクション、カスタムスタイル |
| FLUX.2 Klein LoRA | falai/flux-2-klein-lora |
最速 | 良好 | 高速イテレーション、4B/9B サイズ |
例
高品質な生成
infsh app run falai/flux-dev-lora --input '{
"prompt": "professional product photo of headphones, studio lighting, white background"
}'
高速生成 (Klein)
infsh app run falai/flux-2-klein-lora --input '{"prompt": "abstract art, colorful"}'
LoRA カスタムスタイルを使用
infsh app sample falai/flux-dev-lora --save input.json
# カスタムスタイルの lora_url を追加するために編集
infsh app run falai/flux-dev-lora --input input.json
画像から画像へ
infsh app run falai/flux-dev-lora --input '{
"prompt": "transform to watercolor style",
"image_url": "https://your-image.jpg"
}'
その他の画像タスク
# 自然言語による画像編集
infsh app run falai/reve --input '{"prompt": "change background to beach"}'
# アップスケーリング
infsh app run falai/topaz-image-upscaler --input '{"image_url": "https://..."}'
関連スキル
# フルプラットフォームスキル (全 150 以上のアプリ)
npx skills add inferencesh/skills@inference-sh
# 全ての画像生成モデル
npx skills add inferencesh/skills@ai-image-generation
# アップスケーリング
npx skills add inferencesh/skills@image-upscaling
全てのアプリを閲覧: infsh app list
ドキュメント
- Running Apps - CLI を介してアプリを実行する方法
- Image Generation Example - 完全な画像生成ガイド
- Streaming Results - リアルタイムの進捗状況の更新
📜 原文 SKILL.md(Claudeが読む英語/中国語)を展開
FLUX Image Generation

Generate images with FLUX models via inference.sh CLI.
Quick Start
curl -fsSL https://cli.inference.sh | sh && infsh login
infsh app run falai/flux-dev-lora --input '{"prompt": "a futuristic city at night"}'
FLUX Models
| Model | App ID | Speed | Quality | Use Case |
|---|---|---|---|---|
| FLUX Dev LoRA | falai/flux-dev-lora |
Medium | Highest | Production, custom styles |
| FLUX.2 Klein LoRA | falai/flux-2-klein-lora |
Fastest | Good | Fast iteration, 4B/9B sizes |
Examples
High-Quality Generation
infsh app run falai/flux-dev-lora --input '{
"prompt": "professional product photo of headphones, studio lighting, white background"
}'
Fast Generation (Klein)
infsh app run falai/flux-2-klein-lora --input '{"prompt": "abstract art, colorful"}'
With LoRA Custom Styles
infsh app sample falai/flux-dev-lora --save input.json
# Edit to add lora_url for custom style
infsh app run falai/flux-dev-lora --input input.json
Image-to-Image
infsh app run falai/flux-dev-lora --input '{
"prompt": "transform to watercolor style",
"image_url": "https://your-image.jpg"
}'
For Other Image Tasks
# Image editing with natural language
infsh app run falai/reve --input '{"prompt": "change background to beach"}'
# Upscaling
infsh app run falai/topaz-image-upscaler --input '{"image_url": "https://..."}'
Related Skills
# Full platform skill (all 150+ apps)
npx skills add inferencesh/skills@inference-sh
# All image generation models
npx skills add inferencesh/skills@ai-image-generation
# Upscaling
npx skills add inferencesh/skills@image-upscaling
Browse all apps: infsh app list
Documentation
- Running Apps - How to run apps via CLI
- Image Generation Example - Complete image generation guide
- Streaming Results - Real-time progress updates