Install
openclaw skills install @toplocalai/scidraw-ai-scientific-illustrationGenerate publication-ready scientific figures with the official SciDraw AI web app and public API. Use for paper figures, graphical abstracts, mechanism diagrams, research workflows, and model architectures.
openclaw skills install @toplocalai/scidraw-ai-scientific-illustrationCreate clear, publication-ready scientific figures through SciDraw AI. Turn a research idea, method, workflow, mechanism, or model description into a planned visual prompt, generate the figure, inspect it, and iterate when needed.
Use this skill for:
Do not use it when the required output is primarily an editable multi-page presentation rather than a figure image.
SCIDRAW_API_KEY is configured.images:generate and jobs:read scopes. Add
credits:read only when balance checks are needed.SCIDRAW_API_KEY.macOS or Linux:
export SCIDRAW_API_KEY='sd_YOUR_KEY'
Windows PowerShell:
$env:SCIDRAW_API_KEY='sd_YOUR_KEY'
The included client uses Python 3 standard-library modules only. It does not require any third-party package.
Interpret the request.
Plan the figure.
Confirm credit-consuming execution.
Generate with SciDraw AI.
{skill_root} be the directory containing this SKILL.md.python3 {skill_root}/scripts/scidraw_generate.py \
--prompt-file /path/to/prompt.txt \
--out /path/to/output.png \
--aspect-ratio 16:9 \
--resolution 2K
The client submits an official SciDraw AI generation job, waits for the job to
finish, and downloads the returned image. It also supports --prompt,
--count, and --json; run it with --help for details.
POST /api/v1/images/generationsGET /api/v1/jobs/{jobId}Authorization: Bearer sd_...1:1, 16:9, 9:16, 4:3, 3:4, 3:2,
2:3, 5:4, 4:5, and 21:92K and 4KIf the API reports authentication, permission, insufficient-credit, rate-limit, policy, or job errors, report the returned error code and message without exposing the API key.