Generate artist-backed illustrations by Antekirt
/install antekirt-generate-artist-backed-illustrations
Antekirt Illustration Skill
Antekirt is an API platform providing infrastructure for generative visuals backed by real artists, with clear commercial licensing. This skill lets you generate illustrations, SVG vectors, and videos using any artist available on the platform.
Setup
Before using this skill, set the following environment variables:
ANTEKIRT_API_KEY: Your Antekirt API key (obtain at antekirt.com).ANTEKIRT_BASE_URL: Set tohttps://api.antekirt.com.
Note: Node.js network access is required to run the
antekirt.jsscript. In sandboxed environments where Node.js DNS resolution is unavailable, use thecurlalternatives documented below.
Usage
The skill script is at scripts/antekirt.js. All commands require the env vars above.
1. List Available Artists
export ANTEKIRT_API_KEY='\x3Cyour_api_key>'
export ANTEKIRT_BASE_URL='https://api.antekirt.com'
node scripts/antekirt.js artists
Search by name:
node scripts/antekirt.js artists --search "lupita"
Alternative (curl):
curl -s "https://api.antekirt.com/api/v1/artists?limit=25" \
-H "x-api-key: \x3Cyour_api_key>"
2. Generate an Illustration
node scripts/antekirt.js image \
--artist "Lupita Banjoon" \
--prompt "bowl of spaghetti"
Or by artist ID:
node scripts/antekirt.js image \
--artist-id '\x3Cuuid>' \
--prompt 'bold illustration of a mountain village at dusk'
Key parameters:
--artist \x3Cname|id|index>— artist name, ID, or list index--artist-id \x3Cuuid>— direct UUID (skip lookup)--prompt \x3Ctext>— description of the image to generate--timeout \x3Cseconds>— polling timeout (default: 180s)
Cost: 3 credits per image.
Alternative (curl):
# Step 1 — submit generation
curl -s -X POST "https://api.antekirt.com/api/v1/generations/image" \
-H "x-api-key: \x3Cyour_api_key>" \
-H "content-type: application/json" \
-d '{"artistId": "\x3Cuuid>", "prompt": "bowl of spaghetti"}'
# Step 2 — poll until status=completed
curl -s "https://api.antekirt.com/api/v1/generations/\x3Cgeneration_id>" \
-H "x-api-key: \x3Cyour_api_key>"
3. Vectorize to SVG
node scripts/antekirt.js svg --generation-id '\x3Cuuid>'
Cost: 5 credits.
4. Animate to Video
node scripts/antekirt.js video \
--generation-id '\x3Cuuid>' \
--prompt 'slowly zooming in' \
--duration 4 \
--resolution 720p
Cost: 25 credits.
Output
On success the script prints the direct URL(s) to the generated asset. Use these URLs to display or download the result.
Troubleshooting
- Verify your API key and that
ANTEKIRT_BASE_URLis set tohttps://api.antekirt.com. - If Node.js gives
EAI_AGAIN(DNS failure), use thecurlalternatives above. - Contact [email protected] or visit antekirt.com/docs for API status and support.
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install antekirt-generate-artist-backed-illustrations - After installation, invoke the skill by name or use
/antekirt-generate-artist-backed-illustrations - Provide required inputs per the skill's parameter spec and get structured output
What is Generate artist-backed illustrations by Antekirt?
Generate illustrations and visuals using Antekirt artists and prompts. This skill handles API configuration (key and base URL) and manages the asynchronous g... It is an AI Agent Skill for Claude Code / OpenClaw, with 136 downloads so far.
How do I install Generate artist-backed illustrations by Antekirt?
Run "/install antekirt-generate-artist-backed-illustrations" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is Generate artist-backed illustrations by Antekirt free?
Yes, Generate artist-backed illustrations by Antekirt is completely free, licensed under MIT-0. You can download, install and use it at no cost.
Which platforms does Generate artist-backed illustrations by Antekirt support?
Generate artist-backed illustrations by Antekirt is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created Generate artist-backed illustrations by Antekirt?
It is built and maintained by AndrejDorsian (@andrejdorsian); the current version is v1.0.0.