← 返回 Skills 市场
dionren

Chenyu Aigc

作者 任嘉 · GitHub ↗ · v1.0.4 · MIT-0
darwinlinux ✓ 安全检测通过
154
总下载
0
收藏
0
当前安装
4
版本数
在 OpenClaw 中安装
/install chenyu-aigc
功能描述
Generate AI videos and images via Chenyu Studio AIGC API. Supports text-to-video, image-to-video, video extension, style transfer, and AI image generation. T...
使用说明 (SKILL.md)

Chenyu AIGC - AI Video & Image Generation

Generate videos and images using AI models through the Chenyu Studio AIGC orchestration API.

When to Use

  • User wants to generate a video from text prompt
  • User wants to generate a video from an image (first/last frame)
  • User wants to extend or remix a video
  • User wants to generate AI images
  • User wants to check status of a generation task
  • User wants to list available AI models

When NOT to Use

  • User wants to analyze or understand existing videos (use video-analysis skill)
  • User wants to download videos from social platforms (use video-fetch skill)
  • User wants to manage digital humans or clone voices (use chenyu-core skill)

Authentication

Authorization: Bearer $CHENYU_API_KEY

Base URL: $CHENYU_BASE_URL (default: https://chenyu.pro)

Workflow

  1. Discover recipes — list available AI models (see below)
  2. Get recipe schema — check what inputs/parameters the recipe accepts
  3. Execute — submit a generation task → see execute-recipe.md
  4. Poll & manage — track status, get output, cancel → see manage-tasks.md

Step 1: List Available Recipes

curl -s "$CHENYU_BASE_URL/api/v1/aigc/recipes" \
  -H "Authorization: Bearer $CHENYU_API_KEY" | jq '.data[] | {recipe_id, name, slug, description, output_type}'

Each recipe represents an AI model capability. Key response fields:

  • recipe_id — use this ID when executing
  • slug — human-readable identifier (e.g. volcengine-seedance-v1-pro)
  • output_type — what it produces: video, image, audio

Step 2: Get Recipe Schema

curl -s "$CHENYU_BASE_URL/api/v1/aigc/recipes/{recipe_id}/schema" \
  -H "Authorization: Bearer $CHENYU_API_KEY" | jq '.data'

The schema tells you:

  • typed_inputs_schema.definitions — accepted input types and their fields
  • parameters_schema — available parameters with constraints (min/max/enum)
  • credit_cost / credit_cost_rules — how many credits it costs

After getting the schema, read execute-recipe.md for execution details.

安全使用建议
This skill appears to be a straightforward CLI-based integration with the Chenyu AIGC API. Before installing, verify the CHENYU_BASE_URL you intend to use (the docs default to https://chenyu.pro) and confirm you trust that service and its terms/privacy for uploading images/videos. The skill explicitly instructs encoding local image files and writing a temporary payload (e.g., /tmp/payload.json) — be careful not to point it at sensitive files. Limit the API key's permissions if possible and rotate the key if you stop using the skill. Finally, ensure the required binaries (curl, jq, uuidgen, base64) are available and that outbound network access to the CHENYU_BASE_URL is permitted by your environment.
功能分析
Type: OpenClaw Skill Name: chenyu-aigc Version: 1.0.4 The chenyu-aigc skill bundle is a legitimate integration for the Chenyu Studio AIGC API, allowing users to generate AI videos and images. It uses standard command-line tools (curl, jq, base64) to interact with the API at chenyu.pro. The instructions for handling local files via temporary JSON payloads in execute-recipe.md are consistent with the stated purpose and do not exhibit signs of data exfiltration or malicious intent.
能力评估
Purpose & Capability
Name/description (AI video/image generation) match the declared env vars (CHENYU_API_KEY, CHENYU_BASE_URL) and required binaries (curl, jq, uuidgen, base64). All requested items are reasonable for an instruction-only curl-based integration.
Instruction Scope
SKILL.md and auxiliary docs only instruct making HTTP requests to the declared CHENYU_BASE_URL, polling task status, and optionally encoding local image files as base64 and writing a temporary payload file. There is no instruction to read unrelated files, environment secrets, or to exfiltrate data to unexpected endpoints beyond the configured base URL.
Install Mechanism
No install spec or code is present (instruction-only), so nothing is downloaded or written by an installer. This is the lowest-risk pattern for skills.
Credentials
Only two env vars are required: CHENYU_API_KEY (primary) and CHENYU_BASE_URL. Both are necessary and proportional for an API integration. No unrelated credentials or secrets are requested.
Persistence & Privilege
always is false and the skill does not request permanent or elevated presence, nor does it modify other skills or global agent configuration.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install chenyu-aigc
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /chenyu-aigc 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.4
Declare all required binaries (jq, uuidgen, base64) in metadata to fix OpenClaw suspicious warning
v1.0.3
Add local image base64 payload guide: use file-backed JSON (--data @file) to avoid shell argument length limits when submitting data URI inputs
v1.0.1
Split skill into layered files: SKILL.md (overview + recipe discovery), execute-recipe.md (execution details + examples), manage-tasks.md (task management + errors). Reduces agent context usage.
v1.0.0
Initial release: AI video & image generation via Chenyu Studio API
元数据
Slug chenyu-aigc
版本 1.0.4
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 4
常见问题

Chenyu Aigc 是什么?

Generate AI videos and images via Chenyu Studio AIGC API. Supports text-to-video, image-to-video, video extension, style transfer, and AI image generation. T... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 154 次。

如何安装 Chenyu Aigc?

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

Chenyu Aigc 是免费的吗?

是的,Chenyu Aigc 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

Chenyu Aigc 支持哪些平台?

Chenyu Aigc 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(darwin, linux)。

谁开发了 Chenyu Aigc?

由 任嘉(@dionren)开发并维护,当前版本 v1.0.4。

💬 留言讨论