Agent Skills
› neilsonnn/image-blaster
› image-blast-image-edit
image-blast-image-edit
GitHub基于输入图像和提示词生成图像编辑结果,支持源清理、去物体等操作。调用脚本处理本地资源缺失并返回最终图像及元数据。
Trigger Scenarios
用户要求修改或编辑图片内容
需要去除图片中的特定对象或背景
请求生成经过特定处理的图像
Install
npx skills add neilsonnn/image-blaster --skill image-blast-image-edit -g -y
SKILL.md
Frontmatter
{
"name": "image-blast-image-edit",
"agent": "image-blast-image-edit",
"context": "fork",
"description": "Generate one image edit from explicit input images and a prompt. Use for source cleanup, clean plates, object removal, or other FAL-backed image edits.",
"allowed-tools": "Read Write Glob Bash(ls *) Bash(node .claude\/scripts\/project\/ensure-local-assets.mjs *) Bash(node .claude\/scripts\/image-edit\/generate-edit.mjs *)",
"argument-hint": [
"image path"
]
}
Create one edited image.
Instructions
- Require at least one input image and one edit prompt.
- Use
ls -abefore reading generated state. - Use the output directory, role, and output slug provided by the caller.
- Use
--rolefor semantics such asplate,object-mask, orimage-edit. - Use
--output-slugfor the visible indexed artifact name, such as<source-slug>-plate.
Run:
node .claude/scripts/image-edit/generate-edit.mjs \
--image "<input image path>" \
--prompt "<edit prompt>" \
--output-dir "<output directory>" \
--role "<role>" \
--output-slug "<output slug>"
Optional provider override: --provider nano-banana|gpt-image-2.
If request metadata records provider URLs but local image files are missing, fill them from the matching hidden request JSON:
node .claude/scripts/project/ensure-local-assets.mjs --from "<request-json-path>"
Final response: report input images, output image, request metadata, role, and prompt used.
Version History
- 4acb43b Current 2026-07-24 11:45


