TopRank Skills

Home / Claw Skills / 其他 / pixeldojo
Official OpenClaw rules 15%

pixeldojo

Access PixelDojo's API for AI image and video generation. Use when an agent needs to create images or videos, choose a model from the live PixelDojo catalog, check async job status, or download finished assets. PixelDojo is a subscription-based creative platform that exposes multiple generation models through one API, including general image, editing-oriented image, and video workflows.

Stars

0

Installs

0

Status

ACTIVE

Visibility

PUBLIC

安装方式

直接复制以下提示词,发送给你的 AI 助手即可完成安装。

请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 pixeldojo 技能。 若已安装,则直接安装 pixeldojo 技能。

Overview

Skill Key
blovett80/pixeldojo
Author
blovett80
Source Repo
openclaw/skills
Version
-
Source Path
skills/blovett80/pixeldojo
Latest Commit SHA
df54039409038f1a3615bd2f044a0ba844d5886e

Extracted Content

SKILL.md excerpt

# PixelDojo

Use PixelDojo's async API to generate and download AI images or videos.

## Setup

Runtime requirements:
- Environment variable: `PIXELDOJO_API_KEY`
- Binaries: `curl`, `jq`, `python3`
- Optional override: `PIXELDOJO_API_BASE`

Set the API key before running any helper:

```bash
export PIXELDOJO_API_KEY=your_api_key_here
```

Optional local env file:

```bash
cp ~/.openclaw/skills/pixeldojo/.env.example ~/.openclaw/skills/pixeldojo/.env
```

Default API base: `https://pixeldojo.ai/api/v1`

## Workflow

1. Check the live model catalog first.
2. Pick a model that matches the requested workflow.
3. Submit the job with `generate.sh` or the Nano Banana helper.
4. Poll status until complete, then return the downloaded asset path.

Do not guess model IDs.

## Check the live catalog

```bash
bash ~/.openclaw/skills/pixeldojo/models.sh
```

For a pinned snapshot of known-good model IDs and example picks, read:
- `references/model-catalog.md`

## Generate an image

```bash
bash ~/.openclaw/skills/pixeldojo/generate.sh image "editorial product photo of a silver robot" flux-2-pro --aspect-ratio 16:9
```

Good defaults:
- Best general image quality: `flux-2-max`
- Prompt adherence and typography: `nano-banana-2`
- Editing-oriented image work: `flux-kontext-pro`

## Generate a video

```bash
bash ~/.openclaw/skills/pixeldojo/generate.sh video "cinematic ocean waves at sunset" seedance-1.5 --duration 5
```

Use `--image-url` for image-to-video models:

```bash
bash ~/.openclaw/skills/pixeldojo/generate.sh video "slow camera push-in" wan-2.6-flash --image-url https://example.com/input.png --duration 5
```

## Nano Banana helper

Use this when the user specifically wants Nano Banana 2 or strong prompt adherence:

```bash
python3 ~/.openclaw/skills/pixeldojo/scripts/generate-nano-banana.py "clean ecommerce hero shot of running shoes" --aspect-ratio 16:9 --output ~/Desktop/shoes.png
```

## Check job status

```bash
bash ~/.openclaw/skills/pixeldojo/status.sh job_abc123
`...

Related Claw Skills

capt-marbles

Task Router Skill

★ 0

Task Router

captchasco

captchas-openclaw

★ 0

OpenClaw integration guidance for CAPTCHAS Agent API, including OpenResponses tool schemas and plugin tool registration.

carol-gutianle

Modelready

★ 0

name: modelready description: Start using a local or Hugging Face model instantly, directly from chat. metadata: {"openclaw":{"requires":{"bins": "bash", "curl" }, "env": "URL" }}

cartoonitunes

Ethereum History

★ 0

Read-only factual data about historical Ethereum mainnet contracts. Use when the user asks about a specific contract address, early Ethereum contracts, deployment era, deployer, bytecode, decompiled code, or documented history (what a contract is and is not). Data is non-opinionated and includes runtime bytecode, decompiled code, and editorial history when available. Base URL https://ethereumhistory.com (or set BASE_URL for local/staging).

cassh100k

agent-dna

★ 0

Portable agent identity encoding. Compress SOUL.md/MEMORY.md into transferable DNA fingerprints, detect identity drift between snapshots, and port personality across platforms (OpenClaw, Claude, GPT, CrewAI). Pure Python, zero dependencies. Use when migrating agents between platforms, detecting personality drift, or backing up agent identity.

camopel

storage-cleanup

★ 0

One-command disk cleanup for macOS and Linux — trash, caches, temp files, old kernels, snap revisions, Homebrew, Docker, and Xcode artifacts. Use when user asks to free storage, clean up disk, reclaim space, reduce disk usage, or encounters low disk / "disk full" warnings. Safe by default with dry-run mode. No dependencies beyond bash and awk.