agentsclimarketplace

Vision

Skill verging-ai/agent-skills/skills/vision

Collection of VergingAI Agent Skills

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

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

3.6 KB, 883 tokens by cl100k_base, as published. Nobody here has run it

AI Vision Analysis — verging.ai

Analyze images using GPT-4o Vision through the verging.ai proxy API. Supports both image URL and file upload.

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.

Endpoints

Option A — Image URL (JSON)

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

Option B — File Upload (multipart)

POST https://verging.ai/api/v1/ai/vision/upload
Content-Type: multipart/form-data

Parameters

JSON (URL mode)

ParameterTypeRequiredDefaultDescription
promptstringYesAnalysis instruction / question
image_urlstringYesURL of the image to analyze
modelstringNogpt-4oVision model
max_tokensintNo1024Maximum tokens in the response

Multipart (file upload mode)

ParameterTypeRequiredDefaultDescription
promptstringYesAnalysis instruction / question
filefileYesImage file to analyze
modelstringNogpt-4oVision model
max_tokensintNo1024Maximum tokens in the response

Requires a minimum balance of 5 credits before calling (post-deduct billing).

Examples

Image URL

curl -X POST https://verging.ai/api/v1/ai/vision \
  -H "Authorization: ApiKey vrg_sk_xxx" \
  -H "Content-Type: application/json" \
  -d '{
    "prompt": "Describe what you see in this image in detail.",
    "image_url": "https://example.com/photo.jpg",
    "max_tokens": 512
  }'

File Upload

curl -X POST https://verging.ai/api/v1/ai/vision/upload \
  -H "Authorization: ApiKey vrg_sk_xxx" \
  -F "prompt=What objects are in this image?" \
  -F "[email protected]"

Response

{
  "content": "The image shows a modern office space with several desks...",
  "usage": {
    "prompt_tokens": 1100,
    "completion_tokens": 95,
    "total_tokens": 1195
  },
  "credits_consumed": 2
}
  • content — The analysis result text.
  • usage — Token usage breakdown.
  • credits_consumed — Credits deducted for this request.

Credits

ComponentRate
Base fee2 credits
Input tokens1 credit / 10K tokens
Output tokens3 credits / 10K tokens

Minimum charge: 2 credits per request.

Error Codes

HTTP StatusError CodeDescription
40240001Insufficient credits (minimum 5 required)
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: 5, available: 2",
  "upstream_error": null
}

What ships with it: 1 file

1.4 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.