ワンクリックで
voice-tts
Text-to-speech output for voice responses. Uses pyttsx3 for local TTS on supported systems.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Text-to-speech output for voice responses. Uses pyttsx3 for local TTS on supported systems.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Launch applications, open URLs in browser, and list running processes. Requires approval for launching applications.
Capture images from device camera. Currently a placeholder - camera support depends on device capabilities.
Generate a daily briefing summary for the user
Structured multi-step reasoning tool for complex problem solving with branching, hypothesis testing, and evidence tracking.
A minimal example skill that demonstrates the AG3NT SKILL.md format and contract.
Open files with default applications, reveal files in explorer/finder, and search for files on the system. Requires approval for operations outside workspace.
| name | voice-tts |
| description | Text-to-speech output for voice responses. Uses pyttsx3 for local TTS on supported systems. |
| version | 1.0.0 |
| tags | ["voice","audio","tts","device"] |
| triggers | ["say something","speak","read aloud","voice output"] |
| entrypoints | {"speak":{"script":"scripts/tts.py speak","description":"Speak text using text-to-speech"},"list-voices":{"script":"scripts/tts.py voices","description":"List available TTS voices"}} |
| required_permissions | ["audio_output"] |
| license | MIT |
| compatibility | AG3NT 1.x |
| metadata | {"author":"ag3nt-team","category":"device-integration","node_capability":"audio_output"} |
This skill provides text-to-speech functionality using the local system's TTS capabilities.
Convert text to speech and play it through the default audio output.
python scripts/tts.py speak "Hello, I am your assistant."
Show available TTS voices on the system.
python scripts/tts.py voices
This skill requires pyttsx3 for cross-platform TTS:
pip install pyttsx3
| Platform | TTS Engine | Notes |
|---|---|---|
| Windows | SAPI5 | ✅ Built-in |
| macOS | NSSpeechSynthesizer | ✅ Built-in |
| Linux | espeak | ⚠️ May require: sudo apt install espeak |