Voice System
Overview
Nexus includes text-to-speech capabilities for audio feedback during work.
Voice Tools
speak_quick (Primary)
- Max 250 characters
- Use every 2-3 minutes during work
- Quick status updates
- Example: "Project created successfully"
speak_summary (End of Task)
- Max 1500 characters
- Use ONLY when completely done with a task
- Comprehensive summary
- Example: "Session complete. Created 5 KB entries..."
Best Practices
- Regular Updates: Use speak_quick throughout work
- Don't Over-summarize: speak_summary only at true completion
- Batch with Other Calls: Include voice in gateway batch calls
Example Usage
mcp__gateway__run({
"calls": [
{"server": "track", "tool": "create", "args": {...}},
{"server": "voice", "tool": "speak_quick", "args": {"text": "Project created"}}
]
})