imagegen — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited imagegen (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
Generate AI images using DALL-E 3 / gpt-image-1 through the verging.ai proxy API.
All requests require an API key in the Authorization header:
Authorization: ApiKey vrg_sk_xxxReplace vrg_sk_xxx with your verging.ai API key. You can generate one at https://verging.ai under your account settings.
POST https://verging.ai/api/v1/ai/imagegen
Content-Type: application/json| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
| prompt | string | Yes | — | Text description of the image to generate |
| model | string | No | gpt-image-1 | Model to use for generation |
| size | string | No | 1024x1024 | Image dimensions |
| quality | string | No | standard | Image quality (standard or hd) |
| n | int | No | 1 | Number of images to generate (1–4) |
curl -X POST https://verging.ai/api/v1/ai/imagegen \
-H "Authorization: ApiKey vrg_sk_xxx" \
-H "Content-Type: application/json" \
-d '{
"prompt": "A futuristic cityscape at sunset, digital art style",
"quality": "hd",
"n": 2
}'{
"images": [
"https://cdn.verging.ai/proxy/imagegen/abc123.png",
"https://cdn.verging.ai/proxy/imagegen/def456.png"
],
"credits_consumed": 6
}images — Array of CDN URLs for the generated images.credits_consumed — Total credits deducted for this request.| Quality | Cost per Image |
|---|---|
| standard | 2 credits |
| hd | 3 credits |
When generating multiple images (n > 1), the cost is multiplied accordingly.
| HTTP Status | Error Code | Description |
|---|---|---|
| 400 | — | Content policy violation or invalid parameters |
| 402 | 40001 | Insufficient credits |
| 429 | — | Rate limit exceeded (check X-RateLimit-Reset) |
| 502 | — | Upstream provider error |
| 503 | — | Service unavailable or upstream timeout |
Error response format:
{
"error_code": 40001,
"message": "Insufficient credits. Required: 4, available: 1",
"upstream_error": null
}~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.