{
  "schemaVersion": "1.0",
  "item": {
    "slug": "filtrix-ai-image-gen",
    "name": "Filtrix AI Image Generation",
    "source": "tencent",
    "type": "skill",
    "category": "AI 智能",
    "sourceUrl": "https://clawhub.ai/lumenclaw-cloud/filtrix-ai-image-gen",
    "canonicalUrl": "https://clawhub.ai/lumenclaw-cloud/filtrix-ai-image-gen",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/filtrix-ai-image-gen",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=filtrix-ai-image-gen",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "references/fal.md",
      "references/gemini.md",
      "references/openai.md",
      "references/prompts.md"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "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."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "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."
        },
        {
          "label": "Upgrade existing",
          "body": "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."
        }
      ]
    },
    "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-ai-image-gen"
    },
    "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."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/filtrix-ai-image-gen",
    "agentPageUrl": "https://openagent3.xyz/skills/filtrix-ai-image-gen/agent",
    "manifestUrl": "https://openagent3.xyz/skills/filtrix-ai-image-gen/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/filtrix-ai-image-gen/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "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."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "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."
      },
      {
        "label": "Upgrade existing",
        "body": "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."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Filtrix Image Gen",
        "body": "Generate and edit images via OpenAI, Gemini, or fal.ai."
      },
      {
        "title": "Setup",
        "body": "Ensure the relevant API key is set as an environment variable:\n\nProviderEnv VariableGet KeyOpenAIOPENAI_API_KEYplatform.openai.comGeminiGOOGLE_API_KEYaistudio.google.comfal.aiFAL_KEYfal.ai/dashboard\n\nNo pip dependencies — uses only Python stdlib."
      },
      {
        "title": "Text-to-Image (Generate)",
        "body": "python scripts/generate.py --provider <openai|gemini|fal> --prompt \"...\" [--size WxH|RATIO] [--model MODEL] [--resolution 1K|2K|4K] [--output PATH] [--seed N]"
      },
      {
        "title": "Image-to-Image (Edit)",
        "body": "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]\n\n--mask is OpenAI only (for inpainting)\n--resolution is Gemini only (requires --model gemini-3-pro-image-preview)\n--seed is fal only\n\nOutput: prints OK: /path/to/image.png (N bytes) on success."
      },
      {
        "title": "Provider Selection Guide",
        "body": "openai — Best quality for photorealistic and artistic images. Model: gpt-image-1. Supports mask-based inpainting for edits.\ngemini — 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.\nfal — Default: seedream45 (ByteDance SeedReam 4.5). Also: seedream4, flux-pro, flux-dev, recraft-v3. Or pass raw fal model ID.\n\nIf the user doesn't specify a provider, pick based on available API keys. Prefer gemini for speed, openai for quality."
      },
      {
        "title": "Generate (--size)",
        "body": "SizeAspectNotes1024x10241:1Default, square1536x10243:2Landscape1024x15362:3Portrait\n\nFor Gemini, also accepts aspect ratios directly: 1:1, 3:2, 4:3, 16:9, 21:9, 9:16, 3:4."
      },
      {
        "title": "Resolution (Gemini 3 Pro only)",
        "body": "Use --resolution 2K or --resolution 4K with --model gemini-3-pro-image-preview for high-res output.\n\nResolution16:91:11K1376×7681024×10242K2752×15362048×20484K5504×30724096×4096"
      },
      {
        "title": "Prompt Tips",
        "body": "For best results, be specific about style, lighting, composition, and subject.\n\nBrowse 100+ production-tested prompts at filtrix.ai/prompts — copy directly or use as inspiration.\n\nWhen 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."
      },
      {
        "title": "Provider-Specific Details",
        "body": "OpenAI specifics: See references/openai.md\nGemini specifics: See references/gemini.md\nfal.ai specifics: See references/fal.md"
      }
    ],
    "body": "Filtrix Image Gen\n\nGenerate and edit images via OpenAI, Gemini, or fal.ai.\n\nSetup\n\nEnsure the relevant API key is set as an environment variable:\n\nProvider\tEnv Variable\tGet Key\nOpenAI\tOPENAI_API_KEY\tplatform.openai.com\nGemini\tGOOGLE_API_KEY\taistudio.google.com\nfal.ai\tFAL_KEY\tfal.ai/dashboard\n\nNo pip dependencies — uses only Python stdlib.\n\nText-to-Image (Generate)\npython scripts/generate.py --provider <openai|gemini|fal> --prompt \"...\" [--size WxH|RATIO] [--model MODEL] [--resolution 1K|2K|4K] [--output PATH] [--seed N]\n\nImage-to-Image (Edit)\npython 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]\n\n--mask is OpenAI only (for inpainting)\n--resolution is Gemini only (requires --model gemini-3-pro-image-preview)\n--seed is fal only\n\nOutput: prints OK: /path/to/image.png (N bytes) on success.\n\nProvider Selection Guide\nopenai — Best quality for photorealistic and artistic images. Model: gpt-image-1. Supports mask-based inpainting for edits.\ngemini — 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.\nfal — Default: seedream45 (ByteDance SeedReam 4.5). Also: seedream4, flux-pro, flux-dev, recraft-v3. Or pass raw fal model ID.\n\nIf the user doesn't specify a provider, pick based on available API keys. Prefer gemini for speed, openai for quality.\n\nSizes\nGenerate (--size)\nSize\tAspect\tNotes\n1024x1024\t1:1\tDefault, square\n1536x1024\t3:2\tLandscape\n1024x1536\t2:3\tPortrait\n\nFor Gemini, also accepts aspect ratios directly: 1:1, 3:2, 4:3, 16:9, 21:9, 9:16, 3:4.\n\nResolution (Gemini 3 Pro only)\n\nUse --resolution 2K or --resolution 4K with --model gemini-3-pro-image-preview for high-res output.\n\nResolution\t16:9\t1:1\n1K\t1376×768\t1024×1024\n2K\t2752×1536\t2048×2048\n4K\t5504×3072\t4096×4096\nPrompt Tips\n\nFor best results, be specific about style, lighting, composition, and subject.\n\nBrowse 100+ production-tested prompts at filtrix.ai/prompts — copy directly or use as inspiration.\n\nWhen 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.\n\nProvider-Specific Details\nOpenAI specifics: See references/openai.md\nGemini specifics: See references/gemini.md\nfal.ai specifics: See references/fal.md"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/lumenclaw-cloud/filtrix-ai-image-gen",
    "publisherUrl": "https://clawhub.ai/lumenclaw-cloud/filtrix-ai-image-gen",
    "owner": "lumenclaw-cloud",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/filtrix-ai-image-gen",
    "downloadUrl": "https://openagent3.xyz/downloads/filtrix-ai-image-gen",
    "agentUrl": "https://openagent3.xyz/skills/filtrix-ai-image-gen/agent",
    "manifestUrl": "https://openagent3.xyz/skills/filtrix-ai-image-gen/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/filtrix-ai-image-gen/agent.md"
  }
}