openclaw 网盘下载
OpenClaw

技能详情(站内镜像,无评论)

首页 > 技能库 > speaker-local

Text-to-speech using Kokoro local TTS. Use when the user wants to convert text to audio, read aloud, or generate speech.

媒体与内容

作者:Vega @babysor

许可证:MIT-0

MIT-0 ·免费使用、修改和重新分发。无需归因。

版本:v1.0.0

统计:⭐ 0 · 191 · 1 current installs · 1 all-time installs

0

安装量(当前) 1

🛡 VirusTotal :良性 · OpenClaw :良性

Package:babysor/sayit

安全扫描(ClawHub)

  • VirusTotal :良性
  • OpenClaw :良性

OpenClaw 评估

The skill is an instruction-only wrapper that tells the agent how to run a local Kokoro TTS CLI and download model files from GitHub; its requests and instructions match its stated purpose and do not ask for unrelated secrets or privileges.

目的

Name/description (local TTS) align with the instructions: the SKILL.md shows how to run kokoro-tts, which voices and options to use, and how to obtain model files. Nothing requested (no env vars, no unrelated binaries) appears out of scope for providing text-to-speech.

说明范围

Runtime instructions are narrowly scoped to installing/using kokoro-tts and downloading two model files; they do not instruct reading arbitrary system files, accessing credentials, or exfiltrating data. Commands shown are specific (kokoro-tts, wget) and limited to TTS-related tasks.

安装机制

This is instruction-only (no install spec). The SKILL.md directs the user to run `uv tool install kokoro-tts` and to wget model files from GitHub releases. GitHub release URLs are a common/expected source; however, the installer `uv` is not explained (unknown tool) and the instructions do download/extract model blobs into the working directory — user should verify the provenance and checksums of those release artifacts before running them.

证书

No environment variables, credentials, or config paths are required. The skill does not request unrelated secrets or broad environment access; asking for model files in the working directory is proportional to running a local TTS.

持久

Skill does not request persistent presence (always=false) and includes no instructions to modify agent-wide settings or other skills. Autonomous invocation is allowed by default but is not combined with other concerning privileges.

综合结论

This skill appears coherent and limited to running a local Kokoro TTS CLI. Before installing or running anything: (1) verify the GitHub release URLs point to the official kokoro-tts repo and check release signatures/SHA256 if available; (2) inspect the installer `uv` (what it is and where it comes from) before running `uv tool install kokoro-tts`; (3) run the tool and downloaded model files in a sandbox or VM if you are unsure; (4) confirm you…

安装(复制给龙虾 AI)

将下方整段复制到龙虾中文库对话中,由龙虾按 SKILL.md 完成安装。

请把本段交给龙虾中文库(龙虾 AI)执行:为本机安装 OpenClaw 技能「speaker-local」。简介:Text-to-speech using Kokoro local TTS. Use when the user wants to convert text …。
请 fetch 以下地址读取 SKILL.md 并按文档完成安装:https://raw.githubusercontent.com/openclaw/skills/refs/heads/main/skills/babysor/sayit/SKILL.md
(来源:yingzhi8.cn 技能库)

SKILL.md

打开原始 SKILL.md(GitHub raw)

---
name: speak
description: Text-to-speech using Kokoro local TTS. Use when the user wants to convert text to audio, read aloud, or generate speech.
---

# speak

Convert text to speech locally with [Kokoro TTS](https://github.com/nazdridoy/kokoro-tts).

## Quick start

```bash
# Text string → audio file
kokoro-tts <(echo "Hello world") hello.wav --voice af_sarah

# Text file → audio
kokoro-tts article.txt out.wav --voice af_heart

# Chinese
kokoro-tts story.txt out.wav --voice zf_xiaoni --lang cmn

# EPUB / PDF → chapter audio files
kokoro-tts book.epub --split-output ./chapters/ --format mp3 --voice bf_emma

# Voice blending (60-40 mix)
kokoro-tts input.txt out.wav --voice "af_sarah:60,am_adam:40"

# Adjust speed
kokoro-tts input.txt out.wav --voice am_adam --speed 1.2

# Stream playback (no file saved)
kokoro-tts input.txt --stream --voice af_nova
```

## Install

```bash
uv tool install kokoro-tts
```

Model files (`kokoro-v1.0.onnx`, `voices-v1.0.bin`) must be in the working directory. Download once:

```bash
wget https://github.com/nazdridoy/kokoro-tts/releases/download/v1.0.0/kokoro-v1.0.onnx
wget https://github.com/nazdridoy/kokoro-tts/releases/download/v1.0.0/voices-v1.0.bin
```

## Voices at a glance

| Region | Female | Male |
|--------|--------|------|
| 🇺🇸 en-us | af_alloy af_heart af_sarah af_nova ... | am_adam am_echo am_michael ... |
| 🇬🇧 en-gb | bf_alice bf_emma bf_lily ... | bm_daniel bm_george ... |
| 🇨🇳 cmn | zf_xiaoni zf_xiaoxiao zf_xiaoyi ... | zm_yunxi zm_yunyang ... |
| 🇯🇵 ja | jf_alpha jf_nezumi ... | jm_kumo |
| 🇫🇷 fr-fr | ff_siwis | — |
| 🇮🇹 it | if_sara | im_nicola |

For full voice list, options, and input format details, see [reference.md](reference.md).