Skip to main content

media-gen

Generates images and videos using the AIsa API, enabling creative content creation with advanced AI models.

Install this skill

or
70/100

Security score

The 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 163

Curl to non-GitHub URL

SourceSKILL.md
161
162```bash
163curl -X POST "https://api.aisa.one/v1/models/gemini-3-pro-image-preview:generateContent" \
164 -H "Authorization: Bearer $AISA_API_KEY" \
165 -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/chat/completions" \
185 -H "Authorization: Bearer $AISA_API_KEY" \
186 -H "Content-Type: application/json" \
medium line 206

Curl to non-GitHub URL

SourceSKILL.md
204
205```bash
206curl -X POST "https://api.aisa.one/v1/images/generations" \
207 -H "Authorization: Bearer $AISA_API_KEY" \
208 -H "Content-Type: application/json" \
medium line 232

Curl to non-GitHub URL

SourceSKILL.md
230```bash
231# wan2.6-t2v — text-to-video
232curl -X POST "https://api.aisa.one/apis/v1/services/aigc/video-generation/video-synthesis" \
233 -H "Authorization: Bearer $AISA_API_KEY" \
234 -H "Content-Type: application/json" \
medium line 243

Curl to non-GitHub URL

SourceSKILL.md
241
242# wan2.7-i2v — image-to-video (uses input.media, not input.img_url)
243curl -X POST "https://api.aisa.one/apis/v1/services/aigc/video-generation/video-synthesis" \
244 -H "Authorization: Bearer $AISA_API_KEY" \
245 -H "Content-Type: application/json" \
medium line 265

Curl to non-GitHub URL

SourceSKILL.md
263
264```bash
265curl "https://api.aisa.one/apis/v1/services/aigc/tasks/YOUR_TASK_ID" \
266 -H "Authorization: Bearer $AISA_API_KEY"
267```
Scanned on Jul 28, 2026
View Security Dashboard