Install
openclaw skills install drawthings-agentGenerate images using Draw Things app via dt-skill CLI or MCP
openclaw skills install drawthings-agentSlug: drawthings-agent
Display Name: Draw Things for AI Agents
If dt-skill is not found or fails with "module not found", you MUST perform these steps:
npm install -g @mijuu/drawthings to ensure the CLI and MCP entry points are available.dt-skill doctor. If paths are missing, ask the user for their Draw Things model and server binary paths, then run dt-skill config --server-path "..." --models-path "...".This skill provides two interfaces. You MUST follow this priority:
generate_image in your toolset, ALWAYS use it. It is the most reliable interface for AI.dt-skill gen ONLY if the MCP tool is missing or for server management (e.g., dt-skill server start).generate_image (Preferred)dt-skill gen (Fallback)generate_image(prompt: "...").dt-skill gen --prompt "...".
You MUST provide a detailed prompt.If the user asks for "high quality", "high resolution", "4K", or "clear" images, you MUST use the --upscale parameter at the time of generation.
--upscale 2--upscale 4 (Note: Takes significantly longer)
Example: dt-skill gen --prompt "..." --upscale 2Default is 1024x576 (16:9).
--width 1024 --height 1024--width 576 --height 1024--width 1024 --height 576z_image_turbo_1.0_q6p.ckpt (Fastest, 8 steps).dt-skill models to see what is available before suggesting a change.When running in environments that support background tasks (like OpenClaw or OpenCode), use is_background: true to allow real-time progress monitoring.
Sampling step: X/Y.... still working ....--timeout 1200.gen command.| Parameter | Type | Description |
|---|---|---|
--prompt | String | (Required) Positive prompt |
--negative-prompt | String | Elements to exclude |
--upscale | Number | 1, 2, or 4 |
--model | String | Filename of the model |
--steps | Number | Number of sampling steps (8-30) |
--seed | Number | 0 for random, or specific number |
--output | Path | Custom path for result |
--timeout | Number | Max runtime in seconds (Default 600) |