skills/SKILL.md
# awaz Text to speech CLI using ElevenLabs. Use when asked to speak text, generate audio, or convert text to speech. ## Install ```bash npm i -g awaz # OR npx awaz ``` For AI agents install the skill and ask them to use `awaz`. ```bash npx skills ahmadawais/awaz ``` ## Requirements - `ELEVENLABS_API_KEY` environment variable ## Usage ```bash # Speak text awaz "Hello world" # Pick a voice awaz -v Roger "Hello world" # Save to file awaz -o output.mp3 "Hello world" # Pipe text echo "He
npx skillsauth add ahmadawais/awaz skillsInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Text to speech CLI using ElevenLabs. Use when asked to speak text, generate audio, or convert text to speech.
npm i -g awaz
# OR
npx awaz
For AI agents install the skill and ask them to use awaz.
npx skills ahmadawais/awaz
ELEVENLABS_API_KEY environment variable# Speak text
awaz "Hello world"
# Pick a voice
awaz -v Roger "Hello world"
# Save to file
awaz -o output.mp3 "Hello world"
# Pipe text
echo "Hello world" | awaz
# Faster speech
awaz --speed 1.2 "Ship it"
# List voices
awaz voices
| Flag | Description |
|------|-------------|
| -v, --voice <name> | Voice name or ID |
| -o, --output <file> | Save audio to file |
| -r, --rate <wpm> | Words per minute |
| --speed <n> | Speed multiplier (0.5-2.0) |
| --model-id <id> | ElevenLabs model |
| --stability <n> | Voice consistency (0-1) |
| --similarity <n> | Match original voice (0-1) |
eleven_v3 — Default. Most expressive. Supports [whispers], [laughs], etc.eleven_multilingual_v2 — Reliable. SSML support.eleven_flash_v2_5 — Fastest. ~75ms latency.eleven_turbo_v2_5 — Balanced speed/quality.# Read a file aloud
cat README.md | awaz
# Generate audio file for user
awaz -o welcome.mp3 "Welcome to the app"
# Use specific voice
awaz -v "Rachel" "Your order is ready"
# Dramatic effect (v3 only)
awaz "[whispers] The secret is... [short pause] ship fast."
-v ? to list voices inline--speed 1.2 for faster playback[whispers], [laughs]tools
Use when work should span one or more detached tasks but still behave like one job with a single owner context. TaskFlow is the durable flow substrate under authoring layers like Lobster, ACPX, plugins, or plain code. Keep conditional logic in the caller; use TaskFlow for flow identity, child-task linkage, waiting state, revision-checked mutations, and user-facing emergence.
tools
# Lobster Lobster executes multi-step workflows with approval checkpoints. Use it when: - User wants a repeatable automation (triage, monitor, sync) - Actions need human approval before executing (send, post, delete) - Multiple tool calls should run as one deterministic operation ## When to use Lobster | User intent | Use Lobster? | | ------------------------------------------------------ | --------------------------
tools
# Lobster Lobster executes multi-step workflows with approval checkpoints. Use it when: - User wants a repeatable automation (triage, monitor, sync) - Actions need human approval before executing (send, post, delete) - Multiple tool calls should run as one deterministic operation ## When to use Lobster | User intent | Use Lobster? | | ------------------------------------------------------ | --------------------------
tools
A CLI tool for making authenticated requests to the X (Twitter) API. Use this skill when you need to post tweets, reply, quote, search, read posts, manage followers, send DMs, upload media, or interact with any X API v2 endpoint.