원클릭으로
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 |