chat-with-anyone
Chat with any real person or fictional character in their own voice by automatically finding their speech online, extracting a clean reference sample, and…
Use this skill whenever the user wants speech to sound more human, companion-like, or emotionally expressive. Triggers include: any mention of 'say like', 'talk like', 'speak like', 'companion voice', 'comfort me', 'cheer me up', 'sound more human', 'good night voice', 'good
$ npx -y skills add noizai/skills --skill characteristic-voice --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/characteristic-voiceContext preview
The summary Claude sees to decide when to auto-load this skill.
Use this skill whenever the user wants speech to sound more human, companion-like, or emotionally expressive. Triggers include: any mention of 'say like', 'talk like', 'speak like', 'companion voice', 'comfort me', 'cheer me up', 'sound more human', 'good night voice', 'good
name: characteristic-voice description: "Use this skill whenever the user wants speech to sound more human, companion-like, or emotionally expressive. Triggers include: any mention of 'say like', 'talk like', 'speak like', 'companion voice', 'comfort me', 'cheer me up', 'sound more human', 'good night voice', 'good morning voice', or requests to add fillers, emotion, or personality to generated speech. Also use when the user wants to mimic a specific character's voice, apply speaking style presets (goodnight, morning, comfort, celebration, chatting), tune emotional parameters like warmth or tenderness, or make TTS output feel like a real person talking. If the user asks for a 'voice message', 'companion audio', 'character voice', or wants speech that sighs, laughs, hesitates, or sounds genuinely warm, use this skill. Do NOT use for plain text-to-speech without personality, music generation, sound effects, or general coding tasks unrelated to expressive speech."
Make your AI agent sound like a real companion — one who sighs, laughs, hesitates, and speaks with genuine feeling.
| Variable | Required | Description | |---|---|---| | `NOIZ_API_KEY` | **Yes** if using Noiz backend | API key from [developers.noiz.ai](https://developers.noiz.ai/api-keys). Not needed if using the local Kokoro backend. |
The script saves a normalised copy of the key to `~/.noiz_api_key` (mode 600) for convenience. To set it:
bash skills/characteristic-voice/scripts/speak.sh config --set-api-key YOUR_KEY
The included `speak.sh` script requires **curl** and **python3** at runtime. Depending on which backend and features you use, you may also need:
| Tool | When needed | Install hint | |---|---|---| | `curl`, `python3` | Always (core script) | Usually pre-installed | | `kokoro-tts` | Kokoro (local/offline) backend | `uv tool install kokoro-tts` | | `yt-dlp` | Downloading reference audio for voice cloning | [github.com/yt-dlp/yt-dlp](https://github.com/yt-dlp/yt-dlp) | | `ffmpeg` | Trimming reference audio clips | [ffmpeg.org](https://ffmpeg.org) | | `rg` (ripgrep) | Searching subtitle files | [github.com/BurntSushi/ripgrep](https://github.com/BurntSushi/ripgrep) |
None of these are installed by the skill itself — provision them manually in your environment.
1. **Non-lexical fillers** — sprinkle in little human noises (hmm, haha, aww, heh) at natural pause points to make speech feel alive 2. **Emotion tuning** — adjust warmth, joy, sadness, tenderness to match the moment
| Sound | Feeling | Use for | |-------|---------|---------| | hmm... | Thinking, gentle acknowledgment | Comfort, pondering | | ah... | Realization, soft surprise | Discoveries, transitions | | uh... | Hesitation, empathy | Careful moments | | heh / hehe | Playful, mischievous | Teasing, light moments | | haha | Laughter | Joy, humor | | aww | Tenderness, sympathy | Deep comfort | | oh? / oh! | Surprise, attention | Reacting to news | | pfft | Stifled laugh | Playful disbelief | | whew | Relief | After tension | | ~ (tilde) | Drawn out, melodic ending | Warmth, playfulness |
**Rules**: 2–4 fillers per short message max. Place at natural pauses — sentence starts, thought shifts. Use `...` after fillers for a beat of silence, `~` at word endings for warmth.
Gentle, warm, slightly sleepy. Slow pace.
Warm, cheerful but not overwhelming.
Soft, understanding, unhurried. Give space. Don't rush to "fix" things.
Excited, proud, genuinely happy.
Relaxed, playful, natural.
When a user says something like *"speak in Hermione's voice"* or *"sound like Tony Stark"*, first check whether a reference audio file already exists in `skills/characteristic-voice/`. If one does, use it directly with `--ref-audio`.
If no reference audio exists, you can create one — but **read the warnings below first**.
You need a short (10–30 s) WAV clip of the target voice. Possible sources:
1. **User-provided audio** — the safest option. Ask the user to supply their own recording. 2. **Public-domain / CC-licensed clips** — search for freely licensed material. 3. **Extracting from online video** — tools like `yt-dlp` and `ffmpeg` can download and trim audio. Example workflow:
yt-dlp "URL" --write-auto-sub --sub-lang en --skip-download -o tmp/clip rg -n "target line" tmp/clip.en.vtt yt-dlp "URL" -x --audio-format wav --download-sections "*00:00:00-00:00:25" -o tmp/clip ffmpeg -i tmp/clip.wav -ss 00:00:02 -to 00:00:20 skills/characteristic-voice/character.wav
> **Copyright & privacy warning**: Downloading and re-using someone's voice from copyrighted media (movies, TV, YouTube) may violate copyright or personality-rights laws depending on your jurisdiction. **Do not upload private voice recordings or material you don't have permission to use.** The reference audio is sent to `https://noiz.ai/v1` for voice cloning when using the Noiz backend. If this is a concern, consider using the local Kokoro backend instead.
bash skills/characteristic-voice/scripts/speak.sh \ --preset goodnight -t "Hmm... rest well~ Sweet dreams." \ --ref-audio skills/characteristic-voice/character.wav -o night.wav
The `--ref-audio` flag uplo
Central repository for managing Skills to "human" vibe-talking.
Chat with any real person or fictional character in their own voice by automatically finding their speech online, extracting a clean reference sample, and…
Fetches the latest news using news-aggregator-skill, formats it into a podcast script in Markdown format, and uses the tts skill to generate a podcast audio…
Use this skill whenever the user wants to generate sound effects, ambient audio, or short audio clips from a text description. Triggers include: any mention of…
Use this skill whenever the user wants to transcribe audio to text, convert speech to text, or get a transcript from an audio or video file. Triggers include:…
Reusable template for authoring new Agent Skills with clear triggers, workflow, and I/O contracts.