agentsclimarketplace

Stt

Skill verging-ai/agent-skills/skills/stt

Collection of VergingAI Agent Skills

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

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.6 KB, 631 tokens by cl100k_base, as published. Nobody here has run it

Speech-to-Text — verging.ai

Transcribe audio to text using OpenAI Whisper 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/stt
Content-Type: multipart/form-data

Parameters

ParameterTypeRequiredDefaultDescription
filefileYesAudio file to transcribe
modelstringNowhisper-1STT model
languagestringNoLanguage code (e.g. en, zh, ja)
response_formatstringNojsonOutput format
temperaturefloatNoSampling temperature (0–1)

Supported Audio Formats

mp3, mp4, mpeg, mpga, m4a, wav, webm

File Size Limit

Maximum file size: 25 MB

Example

curl -X POST https://verging.ai/api/v1/ai/stt \
  -H "Authorization: ApiKey vrg_sk_xxx" \
  -F "[email protected]" \
  -F "language=en"

Response

{
  "text": "Hello, this is a sample transcription of the audio file.",
  "language": "en",
  "duration": 12.5,
  "credits_consumed": 1
}
  • text — Transcribed text content.
  • language — Detected or specified language.
  • duration — Audio duration in seconds.
  • credits_consumed — Credits deducted for this request.

Credits

RateMinimum
1 credit / minute1 credit

Error Codes

HTTP StatusError CodeDescription
400File exceeds 25 MB or unsupported audio format
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: 1, available: 0",
  "upstream_error": null
}

What ships with it: 1 file

1021 B 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.