# Send Filtrix Image Generation to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "filtrix-image-gen-v2",
    "name": "Filtrix Image Generation",
    "source": "tencent",
    "type": "skill",
    "category": "AI 智能",
    "sourceUrl": "https://clawhub.ai/lumenclaw-cloud/filtrix-image-gen-v2",
    "canonicalUrl": "https://clawhub.ai/lumenclaw-cloud/filtrix-image-gen-v2",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/filtrix-image-gen-v2",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=filtrix-image-gen-v2",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "references/fal.md",
      "references/gemini.md",
      "references/openai.md",
      "references/prompts.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/filtrix-image-gen-v2"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/filtrix-image-gen-v2",
    "downloadUrl": "https://openagent3.xyz/downloads/filtrix-image-gen-v2",
    "agentUrl": "https://openagent3.xyz/skills/filtrix-image-gen-v2/agent",
    "manifestUrl": "https://openagent3.xyz/skills/filtrix-image-gen-v2/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/filtrix-image-gen-v2/agent.md"
  }
}
```
## Documentation

### Filtrix Image Gen

Generate and edit images via OpenAI, Gemini, or fal.ai.

### Setup

Ensure the relevant API key is set as an environment variable:

ProviderEnv VariableGet KeyOpenAIOPENAI_API_KEYplatform.openai.comGeminiGOOGLE_API_KEYaistudio.google.comfal.aiFAL_KEYfal.ai/dashboard

No pip dependencies — uses only Python stdlib.

### Text-to-Image (Generate)

python scripts/generate.py --provider <openai|gemini|fal> --prompt "..." [--size WxH|RATIO] [--model MODEL] [--resolution 1K|2K|4K] [--output PATH] [--seed N]

### Image-to-Image (Edit)

python scripts/edit.py --provider <openai|gemini|fal> --image input.png --prompt "edit instruction" [--mask mask.png] [--size WxH|RATIO] [--model MODEL] [--resolution 1K|2K|4K] [--output PATH] [--seed N]

--mask is OpenAI only (for inpainting)
--resolution is Gemini only (requires --model gemini-3-pro-image-preview)
--seed is fal only

Output: prints OK: /path/to/image.png (N bytes) on success.

### Provider Selection Guide

openai — Best quality for photorealistic and artistic images. Model: gpt-image-1. Supports mask-based inpainting for edits.
gemini — Default: gemini-2.5-flash-image (fast, cheap). Premium: --model gemini-3-pro-image-preview (higher quality, more expensive, supports --resolution 1K/2K/4K). Prefer Flash unless user requests higher quality.
fal — Default: seedream45 (ByteDance SeedReam 4.5). Also: seedream4, flux-pro, flux-dev, recraft-v3. Or pass raw fal model ID.

If the user doesn't specify a provider, pick based on available API keys. Prefer gemini for speed, openai for quality.

### Generate (--size)

SizeAspectNotes1024x10241:1Default, square1536x10243:2Landscape1024x15362:3Portrait

For Gemini, also accepts aspect ratios directly: 1:1, 3:2, 4:3, 16:9, 21:9, 9:16, 3:4.

### Resolution (Gemini 3 Pro only)

Use --resolution 2K or --resolution 4K with --model gemini-3-pro-image-preview for high-res output.

Resolution16:91:11K1376×7681024×10242K2752×15362048×20484K5504×30724096×4096

### Prompt Tips

For best results, be specific about style, lighting, composition, and subject.

Browse 100+ production-tested prompts at filtrix.ai/prompts — copy directly or use as inspiration.

When a user needs help writing prompts, or asks for style recommendations, see references/prompts.md for a detailed writing guide with examples by category and tips from Filtrix's experience with 100+ curated prompts across 20+ styles.

### Provider-Specific Details

OpenAI specifics: See references/openai.md
Gemini specifics: See references/gemini.md
fal.ai specifics: See references/fal.md
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: lumenclaw-cloud
- Version: 1.0.0
## Source health
- Status: healthy
- Source download looks usable.
- Yavira can redirect you to the upstream package for this source.
- Health scope: source
- Reason: direct_download_ok
- Checked at: 2026-04-30T16:55:25.780Z
- Expires at: 2026-05-07T16:55:25.780Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/filtrix-image-gen-v2)
- [Send to Agent page](https://openagent3.xyz/skills/filtrix-image-gen-v2/agent)
- [JSON manifest](https://openagent3.xyz/skills/filtrix-image-gen-v2/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/filtrix-image-gen-v2/agent.md)
- [Download page](https://openagent3.xyz/downloads/filtrix-image-gen-v2)