agentsclimarketplace

Imagegen

Skill verging-ai/agent-skills/skills/imagegen

Collection of VergingAI Agent Skills

Install
npx -y skills add verging-ai/agent-skills --skill imagegen

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

2 things to look at

  • no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
  • 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

SKILL.md

2.7 KB, 642 tokens by cl100k_base, as published. Nobody here has run it

AI Image Generation — verging.ai

Generate AI images using DALL-E 3 / gpt-image-1 through the verging.ai proxy API.

Authentication

All requests require an API key in the Authorization header:

Authorization: ApiKey vrg_sk_xxx

Replace vrg_sk_xxx with your verging.ai API key. You can generate one at https://verging.ai under your account settings.

Endpoint

POST https://verging.ai/api/v1/ai/imagegen
Content-Type: application/json

Parameters

ParameterTypeRequiredDefaultDescription
promptstringYesText description of the image to generate
modelstringNogpt-image-1Model to use for generation
sizestringNo1024x1024Image dimensions
qualitystringNostandardImage quality (standard or hd)
nintNo1Number of images to generate (1–4)

Example

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
  }'

Response

{
  "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.

Credits

QualityCost per Image
standard2 credits
hd3 credits

When generating multiple images (n > 1), the cost is multiplied accordingly.

Error Codes

HTTP StatusError CodeDescription
400Content policy violation or invalid parameters
40240001Insufficient credits
429Rate limit exceeded (check X-RateLimit-Reset)
502Upstream provider error
503Service unavailable or upstream timeout

Error response format:

{
  "error_code": 40001,
  "message": "Insufficient credits. Required: 4, available: 1",
  "upstream_error": null
}

What ships with it: 1 file

1.1 KB alongside SKILL.md

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.