Category: provider
Works with
AI-first code editor with Composer
Before installing skills in Cursor, ensure your development environment meets these requirements:
node --versionalicloud-ai-audio-ttsExecute the skills CLI command in your project's root directory to begin installation:
Fetches alicloud-ai-audio-tts from cinience/alicloud-skills and configures it for Cursor.
The CLI shows a list of agents. Use arrow keys and space to select Cursor:
Confirm successful installation by checking the skill directory location:
Restart Cursor to activate alicloud-ai-audio-tts. Access via /alicloud-ai-audio-tts in your agent's command palette.
We perform automated surface-level scans (Gen AI Scanner, Socket, Snyk) during installation. These checks detect common vulnerabilities but do not guarantee complete security. Always review skill source code and verify the publisher's reputation before production use.
Skills execute code in your environment. Always review source, verify the publisher, and test in isolation before production.
Submit your Claude Code skill and start earning
Automate repetitive workflows and reduce manual effort
Example
Generate reports, summarize documents, draft communications
Save 3-5 hours per week on routine tasks
Learn new skills, understand complex topics, get expert guidance
Example
Explain concepts, provide examples, suggest learning resources
Accelerate learning and skill development by 2x
Enhance output quality through reviews, suggestions, and refinements
Example
Review drafts, suggest improvements, catch errors
Improve work quality by 30-40% with less effort
0
total installs
0
this week
368
GitHub stars
0
upvotes
Run in your terminal
0
installs
0
this week
368
stars
Category: provider
mkdir -p output/alicloud-ai-audio-tts
python -m py_compile skills/ai/audio/alicloud-ai-audio-tts/scripts/generate_tts.py && echo "py_compile_ok" > output/alicloud-ai-audio-tts/validate.txt
Pass criteria: command exits 0 and output/alicloud-ai-audio-tts/validate.txt is generated.
output/alicloud-ai-audio-tts/.Use one of the recommended models:
qwen3-tts-flashqwen3-tts-instruct-flashqwen3-tts-instruct-flash-2026-01-26python3 -m venv .venv
. .venv/bin/activate
python -m pip install dashscope
DASHSCOPE_API_KEY in your environment, or add dashscope_api_key to ~/.alibabacloud/credentials (env takes precedence).text (string, required)voice (string, required)language_type (string, optional; default Auto)instruction (string, optional; recommended for instruct models)stream (bool, optional; default false)audio_url (string, when stream=false)audio_base64_pcm (string, when stream=true)sample_rate (int, 24000)format (string, wav or pcm depending on mode)import os
import dashscope
# Prefer env var for auth: export DASHSCOPE_API_KEY=...
# Or use ~/.alibabacloud/credentials with dashscope_api_key under [default].
# Beijing region; for Singapore use: https://dashscope-intl.aliyuncs.com/api/v1
dashscope.base_http_api_url = "https://dashscope.aliyuncs.com/api/v1"
text = "Hello, this is a short voice line."
response = dashscope.MultiModalConversation.call(
model="qwen3-tts-instruct-flash",
api_key=os.getenv("DASHSCOPE_API_KEY"),
text=text,
voice="Cherry",
language_type="English",
instruction="Warm and calm tone, slightly slower pace.",
stream=False,
)
audio_url = response.output.audio.url
print(audio_url)
stream=True returns Base64-encoded PCM chunks at 24kHz.finish_reason == "stop" when the stream ends.language_type consistent with the text to improve pronunciation.instruction only when you need explicit style/tone control.(text, voice, language_type) to avoid repeat costs.output/alicloud-ai-audio-tts/audio/OUTPUT_DIR.references/api_reference.md for parameter mapping and streaming example.
Realtime mode is provided by skills/ai/audio/alicloud-ai-audio-tts-realtime/.
Voice cloning/design are provided by skills/ai/audio/alicloud-ai-audio-tts-voice-clone/ and skills/ai/audio/alicloud-ai-audio-tts-voice-design/.
Source list: references/sources.md
Prerequisites
Time Estimate
15-45 minutes depending on use case complexity
Steps
Common Pitfalls
✓ Do
✗ Don't
💡 Pro Tips
✓ Use when
Use when skill capabilities match your task, clear ROI on time saved, and you can validate outputs. Best for repetitive tasks, learning, and quality improvement.
✗ Avoid when
Avoid when task requires deep expertise you can't validate, involves sensitive decisions, or when learning process is more valuable than speed of completion.
cinience/alicloud-skills
aahl/skills
martinholovsky/claude-skills-generator
steipete/clawdis
davila7/claude-code-templates
wshobson/agents
I recommend alicloud-ai-audio-tts for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
Keeps context tight: alicloud-ai-audio-tts is the kind of skill you can hand to a new teammate without a long onboarding doc.
Solid pick for teams standardizing on skills: alicloud-ai-audio-tts is focused, and the summary matches what you get after install.
Registry listing for alicloud-ai-audio-tts matched our evaluation — installs cleanly and behaves as described in the markdown.
alicloud-ai-audio-tts has been reliable in day-to-day use. Documentation quality is above average for community skills.
alicloud-ai-audio-tts reduced setup friction for our internal harness; good balance of opinion and flexibility.
Keeps context tight: alicloud-ai-audio-tts is the kind of skill you can hand to a new teammate without a long onboarding doc.
I recommend alicloud-ai-audio-tts for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
Solid pick for teams standardizing on skills: alicloud-ai-audio-tts is focused, and the summary matches what you get after install.
alicloud-ai-audio-tts is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.
showing 1-10 of 31