Use when the user asks to generate images via the Luma AI API (Dream Machine / Photon); collects a prompt and options interactively, then calls the API using th
复制下面这句话,粘贴给 Claude Code、Codex、Cursor 等 AI 编程工具,它会读取安装说明并在你确认后完成安装。
请阅读 https://ai.atlankj.com/install/asset/gh-luma-imagegen-46648cfa5c7f ,按照其中的说明把「luma-imagegen」安装到你(当前 AI 工具)中。执行前先告诉我将运行的命令和写入的位置,等我确认。
查看 AI 将读取的安装说明正在读取 GitHub 原文…
内容来自 GitHub 原始文件,由原作者维护。在 GitHub 查看
Generates images using the Luma AI Photon model (Dream Machine API). Handles API key detection, interactive prompt collection, parameter selection, async polling, and final image download — all via the bundled scripts/luma_imagegen.py CLI.
modify_image_refLUMA_API_KEY in environment. If missing, guide the user (see below).scripts/luma_imagegen.py with the collected parameters.state: completed.output/luma/.Before any API call, check for the key:
python3 ${CLAUDE_SKILL_DIR}/scripts/luma_imagegen.py --check-key
If LUMA_API_KEY is missing:
.env file or export it in their shell:
export LUMA_API_KEY=your_key_here
--check-key command to verify.Ask these questions before running the generation:
16:9): "What aspect ratio? Options: 1:1, 3:4, 4:3, 9:16, 16:9 (default), 9:21, 21:9"photon-1): "Use photon-1 (higher quality) or photon-flash-1 (faster and cheaper)?"Only ask what's needed — skip questions the user has already answered in their message.
python3 ${CLAUDE_SKILL_DIR}/scripts/luma_imagegen.py \
--prompt "YOUR AUGMENTED PROMPT" \
--aspect-ratio 16:9 \
--model photon-1 \
[--image-ref "https://example.com/ref.jpg" --image-ref-weight 0.85] \
[--out output/luma/]
All flags:
| Flag | Default | Description |
|---|---|---|
--prompt | (required) | Text description of the image |
--aspect-ratio | 16:9 | 1:1, 3:4, 4:3, 9:16, 16:9, 9:21, 21:9 |
--model | photon-1 | photon-1 or photon-flash-1 |
--image-ref | — | Public URL for style/structure reference |
--image-ref-weight | 0.85 | Weight of reference image (0.0–1.0) |
--modify-ref | — | Base image URL to modify |
--modify-ref-weight | 0.5 | Weight for modification fidelity |
--out | output/luma/ | Output directory for downloaded images |
--poll-interval | 3 | Seconds between polling requests |
--check-key | — | Verify LUMA_API_KEY is set and exit |
output/luma/ with descriptive filenames (e.g., photon1_hero_16x9.png). The output directory is relative to the current working directory when the script is invoked.failure_reason from the API response.Reformat the user's description into a structured spec. Only make implied details explicit — do not invent new requirements.
Template (include only relevant lines):
Primary request: <user's main prompt>
Scene/background: <environment or setting>
Subject: <main subject>
Style/medium: <photo/illustration/3D/cinematic/etc>
Composition/framing: <wide/close-up/overhead; subject placement>
Lighting/mood: <lighting type and emotional tone>
Color palette: <dominant colors or palette notes>
Aspect ratio: <e.g., 16:9 landscape>
Avoid: <elements to exclude>
Augmentation rules:
Primary request: a misty mountain lake at sunrise
Scene/background: alpine lake surrounded by pine trees, light morning fog
Style/medium: photorealistic nature photography
Composition/framing: wide panoramic, lake centered, mountains in background
Lighting/mood: golden hour, warm and serene
Aspect ratio: 16:9 landscape
Avoid: people, boats, watermarks, oversaturation
Primary request: a ceramic coffee mug on a wooden table
Scene/background: warm kitchen interior, soft bokeh background
Subject: minimalist white ceramic mug, steam rising
Style/medium: clean product photography
Lighting/mood: soft diffused window light
Aspect ratio: 1:1 square
Avoid: text, logos, harsh shadows, clutter
photon-flash-1 for quick iteration; switch to photon-1 for final quality.| Model | Speed | Quality | Best for |
|---|---|---|---|
photon-1 | Slower | Higher | Final assets, complex scenes |
photon-flash-1 | Fast | Good | Rapid iteration, drafts |
The script uses only the Python standard library. No additional packages are required.