agentsclimarketplace

Responsivevoice text to speech

Skill responsivevoice/skills/skills/responsivevoice-text-to-speech

Cross-vendor coding-agent skills for the ResponsiveVoice text-to-speech (TTS) API

Install
npx -y skills add responsivevoice/skills --skill responsivevoice-text-to-speech

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

One thing to look at

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

What its author says it does

Copied from the file, not written here

Install and run ResponsiveVoice text-to-speech in a browser, on a server, or from any language. Use when a task needs to speak text aloud, add TTS or voice output, read content out loud, integrate @responsivevoice/core or @responsivevoice/api-client, or call the ResponsiveVoice REST API from Python, Go, PHP, Java, or any other language. For PHP there is a native Composer SDK — use the responsivevoice-php skill; other languages use the REST API until their SDKs ship. For configuring the on-page web player UI, use the responsivevoice-web-player skill.

The file declares its own license as MIT. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.

SKILL.md

5.0 KB, 998 tokens by cl100k_base, as published. Nobody here has run it

ResponsiveVoice Text-to-Speech

ResponsiveVoice turns text into spoken audio. It ships as a browser library, a Node REST client, and a language-agnostic REST API that works from any language today. PHP also has a native Composer SDK; Python, Go, and Java SDKs are coming soon.

Choose your surface

You are buildingUseReference
A web page that speaks in the browser@responsivevoice/core (npm or CDN)references/clients.md
A TypeScript/Node app, backend, or CLI that fetches audio@responsivevoice/api-client (browser or server)references/clients.md
A PHP or Laravel backendresponsivevoice/sdk (Composer)responsivevoice-php skill · references/sdks.md
A backend or CLI in another language (Python, Go, Java)REST API directly (native SDKs soon)references/rest-api.md · references/sdks.md

Authentication (read before installing)

Three modes — pick by surface. Full detail in references/auth.md.

  • Demo mode — no account, no key. The browser library speaks with the device's built-in voice only. Good for a first run.
  • API key only — a registered website identifier passed to the browser library. It is an origin identity, not a secret; after you verify your domain it unlocks the full server voice catalog. No secret in browser code.
  • API key + API secret — required for the REST API and the SDKs. Sent as the X-API-Key and X-API-Secret headers. The secret is shown once at creation, is server-to-server only, and must never ship in browser code.

Get credentials: register free, then read the API key from your website's "Your site code" snippet and create a secret under "Server-to-server API secrets" in the dashboard.

Quickstart (browser, demo mode — no key)

Install @responsivevoice/core and speak with the device's built-in voice — no account:

npm install @responsivevoice/core
import { getResponsiveVoice } from '@responsivevoice/core';

const rv = await getResponsiveVoice({});
rv.speak('Hello world');

Add apiKey and verify your domain to unlock the full catalog and named voices:

const rv = await getResponsiveVoice({ apiKey: 'YOUR_API_KEY' });
rv.speak('Hello world', 'UK English Female');

No build step? A prebuilt browser bundle is published. Fetch https://docs.responsivevoice.org/getting-started/installation.md for the exact script tag — do not guess the URL from memory.

Quickstart (server, REST API)

curl "https://texttospeech.responsivevoice.org/v2/text/synthesize?text=Hello+world&voice=US+English+Female" \
  -H "X-API-Key: $RV_API_KEY" \
  -H "X-API-Secret: $RV_API_SECRET" \
  --output speech.mp3

Notes

  • Voice names are friendly strings like UK English Female / US English Male; the server resolves them. Pass lang (BCP-47, e.g. pt-BR) instead when you don't have a voice name.
  • Default audio is MP3. pitch, rate, volume accept 0.02.0 (volume 0.01.0).
  • On-page article player with controls and highlighting? Use the responsivevoice-web-player skill.
  • OpenAPI spec: https://texttospeech.responsivevoice.org/openapi.json

Fetching the docs

Always read the ResponsiveVoice docs as Markdown, never HTML — append .md to any docs URL (https://docs.responsivevoice.org/guides/voice-selection.md). Start from:

What ships with it: 4 files

11.5 KB alongside SKILL.md

references/

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.