← 返回
未分类 Key 中文

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...
使用 Antekirt 画师和提示词生成插画和视觉素材;负责 API 配置(密钥、基础 URL)及异步生成管理。
andrejdorsian andrejdorsian 来源
未分类 clawhub v1.0.0 1 版本 100000 Key: 需要
★ 0
Stars
📥 376
下载
💾 0
安装
1
版本
#latest

概述

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 to https://api.antekirt.com.

> Note: Node.js network access is required to run the antekirt.js script. In sandboxed environments where Node.js DNS resolution is unavailable, use the curl alternatives 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='<your_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: <your_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 '<uuid>' \
  --prompt 'bold illustration of a mountain village at dusk'

Key parameters:

  • --artist — artist name, ID, or list index
  • --artist-id — direct UUID (skip lookup)
  • --prompt — description of the image to generate
  • --timeout — 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: <your_api_key>" \
  -H "content-type: application/json" \
  -d '{"artistId": "<uuid>", "prompt": "bowl of spaghetti"}'

# Step 2 — poll until status=completed
curl -s "https://api.antekirt.com/api/v1/generations/<generation_id>" \
  -H "x-api-key: <your_api_key>"

3. Vectorize to SVG

node scripts/antekirt.js svg --generation-id '<uuid>'

Cost: 5 credits.


4. Animate to Video

node scripts/antekirt.js video \
  --generation-id '<uuid>' \
  --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_URL is set to https://api.antekirt.com.
  • If Node.js gives EAI_AGAIN (DNS failure), use the curl alternatives above.
  • Contact ak@antekirt.com or visit antekirt.com/docs for API status and support.

版本历史

共 1 个版本

  • v1.0.0 当前
    2026-03-31 17:25 安全 安全

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

安全,无风险
查看报告

🔗 相关推荐

design-media

Openai Whisper

steipete
使用 Whisper CLI 进行本地语音转文字(无需 API 密钥)
★ 332 📥 94,156
design-media

Nano Banana Pro

steipete
使用 Nano Banana Pro (Gemini 3 Pro Image) 生成或编辑图像。支持文生图、图生图及 1K/2K/4K 分辨率,适用于图像创建、修改及编辑请求,使用 --input-image 指定输入图像。
★ 430 📥 117,270
design-media

UI/UX Pro Max

xobi667
提供 UI/UX 设计智能与实现指导,帮助打造精美界面。适用于 UI 设计、UX 流程、信息架构、视觉风格、设计系统/标记、组件规格、文案/微文案、无障碍及前端 UI(HTML/CSS/JS、React、Next.js、Vue、Svelte
★ 219 📥 48,039