Install
openclaw skills install filtrix-image-genGenerate and edit images through Filtrix Remote MCP. Use when users ask to create images or refine existing ones. Supports gpt-image-1, nano-banana, and nano-banana-2 through one MCP endpoint.
openclaw skills install filtrix-image-genThis skill is MCP-only.
https://mcp.filtrix.ai/mcpAuthorization: Bearer <FILTRIX_MCP_API_KEY>generate_image_textedit_image_textget_account_creditsAvailable MCP tools:
get_account_creditsgenerate_image_textedit_image_textRequired:
FILTRIX_MCP_API_KEYOptional:
FILTRIX_MCP_URL (default: https://mcp.filtrix.ai/mcp)python scripts/generate.py \
--prompt "..." \
[--mode gpt-image-1|nano-banana|nano-banana-2] \
[--size 1024x1024|1536x1024|1024x1536|auto] \
[--resolution 1K|2K|4K] \
[--search-mode] \
[--enhance-mode] \
[--idempotency-key KEY] \
[--output PATH]
Use this when user wants iterative refinement, style transfer, background changes, object replacement, etc.
python scripts/edit.py \
--prompt "make the sky sunset orange and add volumetric light" \
(--image-path /path/to/input.png | --image-url https://...) \
[--mode gpt-image-1|nano-banana|nano-banana-2] \
[--size 1024x1024|1536x1024|1024x1536|auto] \
[--resolution 1K|2K|4K] \
[--search-mode] \
[--enhance-mode] \
[--idempotency-key KEY] \
[--output PATH]
gpt-image-1: general quality routenano-banana: fast generation routenano-banana-2: advanced generation routegenerate_image_text (scripts/generate.py).edit_image_text (scripts/edit.py) for targeted changes.idempotency_key for each new edit intent.idempotency_key prevents duplicate billing on retries.
If omitted, scripts auto-generate one UUID-based key.