Agent skill · Backend & API

fish-audio

Generate AI audio and synthesize voices with Fish Audio via AceDataCloud API. Use when creating text-to-speech audio, synthesizing voices, or generating audio content. Supports multiple voice models and TTS capabilities.

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill fish-audio-acedatacloud-skills-2 --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 2 KB
Bundled scripts: none
Version: 1.0
Declared author: acedatacloud
Requires: Requires ACEDATACLOUD_API_TOKEN environment variable.
Path: skills/ai-llm/fish-audio-acedatacloud-skills-2/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Fish Audio — Voice & Audio Synthesis Generate AI audio and synthesize voices through AceDataCloud's Fish Audio API. ## Authentication ```bash export ACEDATACLOUD_API_TOKEN="your-token-here" ``` ## Quick Start ```bash curl -X POST https://api.acedata.cloud/fish/audios \ -H "Authorization: Bearer $ACEDATACLOUD_API_TOKEN" \ -H "Content-Type: application/json" \ -d '{"text": "Hello, this is a demonstration of AI voice synthesis."}' ``` ## Endpoints | Endpoint | Purpose | |----------|---------| | `POST /fish/audios` | Generate audio from text or parameters | | `POST /fish/voices` | Voice synthesis and cloning | | `POST /fish/tasks` | Poll task status | ## Workflows ### 1. Text-to-Speech ```json POST /fish/audios { "text": "The quick brown fox jumps over the lazy dog.", "voice_id": "default" } ``` ### 2. Voice Synthesis with Custom Voice ```json POST /fish/voices { "text": "Welcome to our platform.", "audio_url": "https://example.com/reference-voice.mp3" } ``` ## Parameters | Parameter | Type | Description | |-----------|------|-------------| | `text` | string | Text to synthesize into speech | | `voice_id` | string | Voice model to use | | `audio_url` | string | Reference audio for vo

What's inside
Steps it walks through
  1. Authentication
  2. Quick Start
  3. Endpoints
  4. Workflows
  5. 1. Text-to-Speech
  6. 2. Voice Synthesis with Custom Voice
  7. Parameters
  8. Task Polling
  9. Response
  10. Gotchas
Ships with 1 file
  • metadata.json
Commands it runs
export ACEDATACLOUD_API_TOKEN="your-token-here"
curl -X POST https://api.acedata.cloud/fish/audios \
More from claude-skill-registry
All skills →
About this skill
What does the fish-audio skill do?

Generate AI audio and synthesize voices with Fish Audio via AceDataCloud API. Use when creating text-to-speech audio, synthesizing voices, or generating audio content. Supports multiple voice models and TTS capabilities.

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill fish-audio-acedatacloud-skills-2 --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going