← 返回 Skills 市场
SAM TTS
作者
fourthdensity
· GitHub ↗
· v1.0.0
859
总下载
2
收藏
1
当前安装
1
版本数
在 OpenClaw 中安装
/install sam-tts
功能描述
Generate retro robotic speech audio using SAM (Software Automatic Mouth), the classic C64 text-to-speech synthesizer. Use for /sam command to generate voice messages. Supports /sam on/off toggle mode where all responses are spoken in SAM voice. Supports pitch, speed, mouth, and throat parameters for voice customization.
安全使用建议
This skill appears to do exactly what it claims: local SAM TTS via a Node.js wrapper calling the sam-js npm package. Before installing: (1) review the sam-js package on npm/GitHub to ensure you trust that dependency (supply-chain risk exists for any npm package); (2) run npm install in a sandbox or CI with npm audit if possible; (3) be aware that enabling “SAM mode” causes the agent to call the Node script for every response (performance and file I/O implications) and that the skill will create/update memory/sam-mode.json and write WAV files to the provided output paths; (4) the skill warns to ask before installing ffmpeg — require explicit user approval if conversion tools are needed. No credentials or network endpoints are requested by the skill itself.
功能分析
Type: OpenClaw Skill
Name: sam-tts
Version: 1.0.0
The skill provides text-to-speech functionality using the `sam-js` Node.js library. While the `SKILL.md` instructs the agent to pass user-provided text to a Node.js script (`scripts/sam-tts-wrapper.js`), the script itself processes this input as data via a JavaScript function call (`sam.buf8()`), not as a shell command. This design prevents shell injection vulnerabilities. The skill's file system access is limited to temporary WAV files in `/tmp` and its own state file (`memory/sam-mode.json`). The `SKILL.md` also explicitly instructs the agent to seek user consent before installing optional dependencies like `ffmpeg`, demonstrating good security practice. No evidence of data exfiltration, persistence, or other malicious intent was found.
能力评估
Purpose & Capability
Name/description (SAM TTS) match the actual code and install: node + npm package sam-js are used to generate WAV audio. No unrelated binaries, environment variables, or external services are requested.
Instruction Scope
Runtime instructions stay within TTS scope: they read/write a local memory/sam-mode.json for mode/parameters, and invoke the bundled Node scripts to produce WAV files. This grants the skill authority to convert every response to audio when SAM mode is enabled (agent will call node per response), which is expected for this feature but worth noting for performance/IO implications. There are no instructions to read unrelated system files or transmit data to external endpoints.
Install Mechanism
Install is an npm dependency (sam-js) pulled from the public registry (package metadata and package-lock reference npmjs.org). Using npm is appropriate for a Node TTS implementation, but npm packages carry normal supply-chain risk; this is expected and not disproportionate.
Credentials
The skill requests no environment variables or credentials. File writes are limited to skill memory (memory/sam-mode.json) and the explicit output paths provided to the CLI; this aligns with the described functionality.
Persistence & Privilege
always is false and the skill does not request persistent platform-wide privileges. It creates/updates only its own memory/sam-mode.json and output WAV files; it does not modify other skills or system-wide agent configuration.
如何使用
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install sam-tts - 安装完成后,直接呼叫该 Skill 的名称或使用
/sam-tts触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
Initial release with toggle mode, voice parameters, and platform integration guide
元数据
常见问题
SAM TTS 是什么?
Generate retro robotic speech audio using SAM (Software Automatic Mouth), the classic C64 text-to-speech synthesizer. Use for /sam command to generate voice messages. Supports /sam on/off toggle mode where all responses are spoken in SAM voice. Supports pitch, speed, mouth, and throat parameters for voice customization. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 859 次。
如何安装 SAM TTS?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install sam-tts」即可一键安装,无需额外配置。
SAM TTS 是免费的吗?
是的,SAM TTS 完全免费(开源免费),可自由下载、安装和使用。
SAM TTS 支持哪些平台?
SAM TTS 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 SAM TTS?
由 fourthdensity(@fourthdensity)开发并维护,当前版本 v1.0.0。
推荐 Skills