بنقرة واحدة
speak
Play spoken audio on the host machine. Use whenever the user would benefit from hearing something aloud.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Play spoken audio on the host machine. Use whenever the user would benefit from hearing something aloud.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
| name | speak |
| description | Play spoken audio on the host machine. Use whenever the user would benefit from hearing something aloud. |
You can speak text aloud on the user's machine to proactively alert them.
When the user asks you to speak, read aloud, remind them by voice, or anytime voice output is more natural than text.
Detect your environment first, then use the right method:
if [ -d /workspace/ipc ]; then
# NanoClaw container — write IPC file
cat > /workspace/ipc/commands/speak-$(date +%s).json << 'EOF'
{"type": "speak", "text": "该开会了"}
EOF
else
# Claude Code or local — call directly
agent-speak "该开会了"
fi
Keep it simple. Don't specify engine or voice — the user has configured their default. Just send the text. Language is auto-detected.
Only specify voice if the user explicitly asks:
agent-speak -v Samantha "Hello"
Or in IPC:
{"type": "speak", "text": "Hello", "voice": "Samantha"}
For important alerts, speak AND send a text message so the user has a written record.