技能详情(站内镜像,无评论)
作者:Marc Smith @marcus20232023
许可证:MIT-0
MIT-0 ·免费使用、修改和重新分发。无需归因。
版本:v1.0.1
统计:⭐ 0 · 479 · 0 current installs · 0 all-time installs
⭐ 0
安装量(当前) 0
🛡 VirusTotal :可疑 · OpenClaw :可疑
Package:togetherai-tts
安全扫描(ClawHub)
- VirusTotal :可疑
- OpenClaw :可疑
OpenClaw 评估
The skill's code and docs use a TogetherAI API key and related env vars, but the registry metadata does not declare any required credentials — an inconsistency that warrants caution before installing.
目的
The name/description (TogetherAI TTS) match the code and SKILL.md: index.js posts text to https://api.together.ai/v1/audio/speech and writes an MP3. However the registry metadata lists no required environment variables or primary credential while both SKILL.md and the code require TOGETHERAI_API_KEY (and optional TOGETHERAI_MODEL/TTS_FORMAT/TTS_VOICE). The missing declaration of the API key in the registry is an incoherence.
说明范围
SKILL.md and index.js are narrowly scoped: they read env vars (via dotenv), POST to TogetherAI's audio endpoint, and write a base64-decoded audio file. The runtime instructions do not request unrelated files, other credentials, or external endpoints beyond api.together.ai.
安装机制
There is no install spec (instruction-only skill with bundled code). Dependencies are standard npm libs (axios, dotenv) declared in package.json. No suspicious download URLs or archive extraction are present.
证书
The code expects a sensitive credential (TOGETHERAI_API_KEY) and other configuration env vars; that is reasonable for a TTS integration. The problem is the registry metadata does not declare these required env vars or a primary credential, so the platform-level visibility of the secret requirement is missing. This omission increases the chance a user will supply credentials without realizing which skill will use them.
持久
The skill does not request persistent/always-installed privileges (always:false), does not modify other skills or system configs, and uses normal agent invocation behavior.
安装(复制给龙虾 AI)
将下方整段复制到龙虾中文库对话中,由龙虾按 SKILL.md 完成安装。
请把本段交给龙虾中文库(龙虾 AI)执行:为本机安装 OpenClaw 技能「Togetherai Tts」。简介:Convert text to speech using the TogetherAI API with the MiniMax speech-2.6-tur…。
请 fetch 以下地址读取 SKILL.md 并按文档完成安装:https://raw.githubusercontent.com/openclaw/skills/refs/heads/main/skills/marcus20232023/togetherai-tts/SKILL.md
(来源:yingzhi8.cn 技能库)
SKILL.md
# TogetherAI TTS
Text-to-speech using TogetherAI API with MiniMax speech-2.6-turbo model.
## Usage
```bash
cd /home/marc/clawd/skills/togetherai_tts
node index.js "your text here" output.mp3
```
## Configuration
Set these in `.env`:
- `TOGETHERAI_API_KEY`: Your TogetherAI API key
- `TOGETHERAI_MODEL`: Model to use (default: minimax/speech-2.6-turbo)
- `TTS_FORMAT`: Output format (default: mp3)
- `TTS_VOICE`: Voice to use (default: default)