← 返回 Skills 市场
andrejdorsian

Generate artist-backed illustrations by Antekirt

作者 AndrejDorsian · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ⚠ suspicious
136
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install antekirt-generate-artist-backed-illustrations
功能描述
Generate illustrations and visuals using Antekirt artists and prompts. This skill handles API configuration (key and base URL) and manages the asynchronous g...
使用说明 (SKILL.md)

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='\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_URL is set to https://api.antekirt.com.
  • If Node.js gives EAI_AGAIN (DNS failure), use the curl alternatives above.
  • Contact [email protected] or visit antekirt.com/docs for API status and support.
安全使用建议
This skill appears to do what it says: call the Antekirt API to list artists and start/poll generation jobs. Before installing, verify the correct base URL you intend to use (SKILL.md examples use https://api.antekirt.com but the script defaults to https://antekirt.com), and only provide an API key you trust for this provider. Review the included scripts yourself (they are small and readable) and, if possible, run in a sandboxed environment. Use a least‑privilege API key (rotate it if you later revoke the skill) and confirm any costs (images/svg/video) on your Antekirt account to avoid unexpected charges.
功能分析
Type: OpenClaw Skill Name: antekirt-generate-artist-backed-illustrations Version: 1.0.0 The Antekirt skill is a standard API wrapper for an AI image generation service. The core logic in `scripts/antekirt.js` uses Node.js `fetch` to interact with the documented API at `antekirt.com`, handling authentication via the `ANTEKIRT_API_KEY` environment variable. The skill lacks any indicators of malicious intent, such as data exfiltration, unauthorized command execution, or obfuscation.
能力评估
Purpose & Capability
Name/description (generate artist-backed illustrations) match the requested binaries and env vars (node, curl, ANTEKIRT_API_KEY, ANTEKIRT_BASE_URL). The API key and base URL are exactly what a client for a third‑party image generation API would need.
Instruction Scope
SKILL.md instructs only to set the two env vars and run the provided script or curl against the provider. The script performs only network requests to the configured BASE_URL, polls job status, and prints returned asset URLs. Minor doc/code inconsistency: SKILL.md and examples reference https://api.antekirt.com while the script's default BASE_URL is https://antekirt.com (both append /api/v1/ paths). This is a documentation mismatch to verify before use, but not an indication of malicious behavior.
Install Mechanism
No install spec is provided (instruction-only with an included script). That minimizes install-time risk. There is an included Node script that will be executed by the user/agent; no downloads from external or untrusted URLs occur during installation.
Credentials
Only ANTEKIRT_API_KEY and ANTEKIRT_BASE_URL are required and the primaryEnv is correctly set to ANTEKIRT_API_KEY. Those credentials are appropriate for an API client. No unrelated secrets, system credentials, or config paths are requested.
Persistence & Privilege
The skill does not request always:true, does not modify other skills, and has no install-time persistence. It is user-invocable and can be invoked autonomously (platform default), which is expected for skills; that autonomy alone is not a red flag here.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install antekirt-generate-artist-backed-illustrations
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /antekirt-generate-artist-backed-illustrations 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
- Initial release of the Antekirt Illustration Skill. - Generate illustrations, SVG vectors, and short videos in the style of real Antekirt artists. - Supports listing artists, generating images with custom prompts, vectorizing, and animation. - Requires ANTEKIRT_API_KEY and ANTEKIRT_BASE_URL environment variables. - Includes both Node.js and curl-based usage options. - Outputs direct URLs for generated images, SVGs, or videos.
元数据
Slug antekirt-generate-artist-backed-illustrations
版本 1.0.0
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 1
常见问题

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... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 136 次。

如何安装 Generate artist-backed illustrations by Antekirt?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install antekirt-generate-artist-backed-illustrations」即可一键安装,无需额外配置。

Generate artist-backed illustrations by Antekirt 是免费的吗?

是的,Generate artist-backed illustrations by Antekirt 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

Generate artist-backed illustrations by Antekirt 支持哪些平台?

Generate artist-backed illustrations by Antekirt 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Generate artist-backed illustrations by Antekirt?

由 AndrejDorsian(@andrejdorsian)开发并维护,当前版本 v1.0.0。

💬 留言讨论