Skip to main content

openclaw-media-gen

Generates images and videos using AIsa API, leveraging Gemini 3 Pro for images and Qwen Wan 2.6 for video creation.

Based on a skill by@openclaw

Install this skill

or
70/100

Security score

The openclaw-media-gen skill was audited on Jul 28, 2026 and we found 6 security issues across 1 threat category. Review the findings below before installing.

Categories Tested

Security Issues

medium line 141

Curl to non-GitHub URL

SourceSKILL.md
139
140```bash
141curl -X POST "https://api.aisa.one/v1/models/gemini-3-pro-image-preview:generateContent" \
142 -H "Authorization: Bearer $AISA_API_KEY" \
143 -H "Content-Type: application/json" \
medium line 162

Curl to non-GitHub URL

SourceSKILL.md
160
161```bash
162curl -X POST "https://api.aisa.one/v1/chat/completions" \
163 -H "Authorization: Bearer $AISA_API_KEY" \
164 -H "Content-Type: application/json" \
medium line 184

Curl to non-GitHub URL

SourceSKILL.md
182
183```bash
184curl -X POST "https://api.aisa.one/v1/images/generations" \
185 -H "Authorization: Bearer $AISA_API_KEY" \
186 -H "Content-Type: application/json" \
medium line 210

Curl to non-GitHub URL

SourceSKILL.md
208```bash
209# wan2.6-t2v — text-to-video
210curl -X POST "https://api.aisa.one/apis/v1/services/aigc/video-generation/video-synthesis" \
211 -H "Authorization: Bearer $AISA_API_KEY" \
212 -H "Content-Type: application/json" \
medium line 221

Curl to non-GitHub URL

SourceSKILL.md
219
220# wan2.7-i2v — image-to-video (⚠ input.media not input.img_url)
221curl -X POST "https://api.aisa.one/apis/v1/services/aigc/video-generation/video-synthesis" \
222 -H "Authorization: Bearer $AISA_API_KEY" \
223 -H "Content-Type: application/json" \
medium line 243

Curl to non-GitHub URL

SourceSKILL.md
241
242```bash
243curl "https://api.aisa.one/apis/v1/services/aigc/tasks/YOUR_TASK_ID" \
244 -H "Authorization: Bearer $AISA_API_KEY"
245```
Scanned on Jul 28, 2026
View Security Dashboard