PoYo Wan 2.6 API

PassAudited by ClawScan on May 1, 2026.

Overview

This skill is a straightforward PoYo Wan 2.6 video-generation helper that uses your PoYo API key to submit user-provided payloads to the documented PoYo endpoint.

Install this only if you intend to submit Wan 2.6 generation jobs to PoYo. Store POYO_API_KEY securely, avoid passing the key directly on the command line, and review payloads before submission because prompts, media URLs, and optional callback URLs are sent to PoYo. The provided artifacts do not show hidden persistence, unrelated data access, or deceptive behavior.

Findings (3)

Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.

What this means

The agent can submit PoYo generation requests under the user's PoYo credential when invoked for this skill.

Why it was flagged

The helper uses a PoYo API key as a bearer token, either from the environment or from the first command-line argument, to submit jobs to PoYo.

Skill content
api_key="${POYO_API_KEY:-${1:-}}" ... -H "Authorization: Bearer $api_key"
Recommendation

Use a scoped PoYo API key if available, prefer setting POYO_API_KEY through a secret/environment mechanism rather than passing it on the command line, and review the payload before submission.

What this means

Whatever prompt, media URLs, model parameters, and callback settings are in the payload will be sent to PoYo.

Why it was flagged

The script posts a raw JSON payload from a file or stdin to the PoYo generation endpoint. This is purpose-aligned, but the payload contents are user-controlled.

Skill content
body=$(cat "$payload") ... curl -sS https://api.poyo.ai/api/generate/submit ... -d "$body"
Recommendation

Check generated JSON before submitting, especially prompts, image/video URLs, duration, resolution, and callback_url fields.

What this means

If a callback URL is included, task results or status notifications may be sent to the specified endpoint.

Why it was flagged

The documented payload can include a webhook callback URL, causing PoYo to send task status/result notifications to that URL.

Skill content
`callback_url` (string, optional) — Webhook callback URL for result notifications
Recommendation

Only use callback URLs you control and trust, or omit callback_url and poll status manually.