{
  "schemaVersion": "1.0",
  "item": {
    "slug": "pixeldojo",
    "name": "PixelDojo AI Generation",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/blovett80/pixeldojo",
    "canonicalUrl": "https://clawhub.ai/blovett80/pixeldojo",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/pixeldojo",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=pixeldojo",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "api.json",
      "generate.sh",
      "models.sh",
      "references/model-catalog.md",
      "scripts/generate-nano-banana.py"
    ],
    "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. 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. 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/pixeldojo"
    },
    "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/pixeldojo",
    "agentPageUrl": "https://openagent3.xyz/skills/pixeldojo/agent",
    "manifestUrl": "https://openagent3.xyz/skills/pixeldojo/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/pixeldojo/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. 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. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "PixelDojo",
        "body": "Use PixelDojo's async API to generate and download AI images or videos."
      },
      {
        "title": "Setup",
        "body": "Runtime requirements:\n\nEnvironment variable: PIXELDOJO_API_KEY\nBinaries: curl, jq, python3\nOptional override: PIXELDOJO_API_BASE\n\nSet the API key before running any helper:\n\nexport PIXELDOJO_API_KEY=your_api_key_here\n\nOptional local env file:\n\ncp ~/.openclaw/skills/pixeldojo/.env.example ~/.openclaw/skills/pixeldojo/.env\n\nDefault API base: https://pixeldojo.ai/api/v1"
      },
      {
        "title": "Workflow",
        "body": "Check the live model catalog first.\nPick a model that matches the requested workflow.\nSubmit the job with generate.sh or the Nano Banana helper.\nPoll status until complete, then return the downloaded asset path.\n\nDo not guess model IDs."
      },
      {
        "title": "Check the live catalog",
        "body": "bash ~/.openclaw/skills/pixeldojo/models.sh\n\nFor a pinned snapshot of known-good model IDs and example picks, read:\n\nreferences/model-catalog.md"
      },
      {
        "title": "Generate an image",
        "body": "bash ~/.openclaw/skills/pixeldojo/generate.sh image \"editorial product photo of a silver robot\" flux-2-pro --aspect-ratio 16:9\n\nGood defaults:\n\nBest general image quality: flux-2-max\nPrompt adherence and typography: nano-banana-2\nEditing-oriented image work: flux-kontext-pro"
      },
      {
        "title": "Generate a video",
        "body": "bash ~/.openclaw/skills/pixeldojo/generate.sh video \"cinematic ocean waves at sunset\" seedance-1.5 --duration 5\n\nUse --image-url for image-to-video models:\n\nbash ~/.openclaw/skills/pixeldojo/generate.sh video \"slow camera push-in\" wan-2.6-flash --image-url https://example.com/input.png --duration 5"
      },
      {
        "title": "Nano Banana helper",
        "body": "Use this when the user specifically wants Nano Banana 2 or strong prompt adherence:\n\npython3 ~/.openclaw/skills/pixeldojo/scripts/generate-nano-banana.py \"clean ecommerce hero shot of running shoes\" --aspect-ratio 16:9 --output ~/Desktop/shoes.png"
      },
      {
        "title": "Check job status",
        "body": "bash ~/.openclaw/skills/pixeldojo/status.sh job_abc123"
      },
      {
        "title": "Output paths",
        "body": "Default download folders:\n\n~/Pictures/AI Generated/images/\n~/Pictures/AI Generated/videos/\n\nOverride with:\n\n--output /path/to/file.png"
      },
      {
        "title": "Notes",
        "body": "generate.sh supports --aspect-ratio, --duration, --image-url, --output, --poll-interval, and --max-wait.\ngenerate.sh covers the shared prompt-based API flow. If a request needs model-specific editing payloads, inspect the live catalog and API behavior before improvising.\nPixelDojo markets full commercial rights for generated output, but the user is still responsible for complying with the service terms and any third-party model restrictions."
      }
    ],
    "body": "PixelDojo\n\nUse PixelDojo's async API to generate and download AI images or videos.\n\nSetup\n\nRuntime requirements:\n\nEnvironment variable: PIXELDOJO_API_KEY\nBinaries: curl, jq, python3\nOptional override: PIXELDOJO_API_BASE\n\nSet the API key before running any helper:\n\nexport PIXELDOJO_API_KEY=your_api_key_here\n\n\nOptional local env file:\n\ncp ~/.openclaw/skills/pixeldojo/.env.example ~/.openclaw/skills/pixeldojo/.env\n\n\nDefault API base: https://pixeldojo.ai/api/v1\n\nWorkflow\nCheck the live model catalog first.\nPick a model that matches the requested workflow.\nSubmit the job with generate.sh or the Nano Banana helper.\nPoll status until complete, then return the downloaded asset path.\n\nDo not guess model IDs.\n\nCheck the live catalog\nbash ~/.openclaw/skills/pixeldojo/models.sh\n\n\nFor a pinned snapshot of known-good model IDs and example picks, read:\n\nreferences/model-catalog.md\nGenerate an image\nbash ~/.openclaw/skills/pixeldojo/generate.sh image \"editorial product photo of a silver robot\" flux-2-pro --aspect-ratio 16:9\n\n\nGood defaults:\n\nBest general image quality: flux-2-max\nPrompt adherence and typography: nano-banana-2\nEditing-oriented image work: flux-kontext-pro\nGenerate a video\nbash ~/.openclaw/skills/pixeldojo/generate.sh video \"cinematic ocean waves at sunset\" seedance-1.5 --duration 5\n\n\nUse --image-url for image-to-video models:\n\nbash ~/.openclaw/skills/pixeldojo/generate.sh video \"slow camera push-in\" wan-2.6-flash --image-url https://example.com/input.png --duration 5\n\nNano Banana helper\n\nUse this when the user specifically wants Nano Banana 2 or strong prompt adherence:\n\npython3 ~/.openclaw/skills/pixeldojo/scripts/generate-nano-banana.py \"clean ecommerce hero shot of running shoes\" --aspect-ratio 16:9 --output ~/Desktop/shoes.png\n\nCheck job status\nbash ~/.openclaw/skills/pixeldojo/status.sh job_abc123\n\nOutput paths\n\nDefault download folders:\n\n~/Pictures/AI Generated/images/\n~/Pictures/AI Generated/videos/\n\nOverride with:\n\n--output /path/to/file.png\n\nNotes\ngenerate.sh supports --aspect-ratio, --duration, --image-url, --output, --poll-interval, and --max-wait.\ngenerate.sh covers the shared prompt-based API flow. If a request needs model-specific editing payloads, inspect the live catalog and API behavior before improvising.\nPixelDojo markets full commercial rights for generated output, but the user is still responsible for complying with the service terms and any third-party model restrictions."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/blovett80/pixeldojo",
    "publisherUrl": "https://clawhub.ai/blovett80/pixeldojo",
    "owner": "blovett80",
    "version": "1.3.3",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/pixeldojo",
    "downloadUrl": "https://openagent3.xyz/downloads/pixeldojo",
    "agentUrl": "https://openagent3.xyz/skills/pixeldojo/agent",
    "manifestUrl": "https://openagent3.xyz/skills/pixeldojo/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/pixeldojo/agent.md"
  }
}