speak-hello-world
Demonstrates a minimal working example for integrating the Speak API in language learning applications.
Install this skill
Security score
The speak-hello-world skill was audited on May 12, 2026 and we found 13 security issues across 3 threat categories. Review the findings below before installing.
Categories Tested
Security Issues
Template literal with variable interpolation in command context
| 86 | console.log(`Overall score: ${assessment.score}/100`); |
Template literal with variable interpolation in command context
| 88 | console.log(` "${word.text}": ${word.score}/100`); |
Template literal with variable interpolation in command context
| 91 | console.log(` Weak phoneme: ${p.symbol} (${p.score}) - ${p.suggestion}`); |
Template literal with variable interpolation in command context
| 101 | console.log(` Duration: ${summary.durationMinutes} min`); |
Template literal with variable interpolation in command context
| 102 | console.log(` Turns: ${summary.totalTurns}`); |
Template literal with variable interpolation in command context
| 103 | console.log(` Pronunciation: ${summary.avgPronunciationScore}/100`); |
Template literal with variable interpolation in command context
| 104 | console.log(` Grammar: ${summary.grammarAccuracy}%`); |
Template literal with variable interpolation in command context
| 105 | console.log(` New vocabulary: ${summary.newWords.join(', ')}`); |
Access to .env file
| 42 | apiKey: process.env.SPEAK_API_KEY!, |
Access to .env file
| 43 | appId: process.env.SPEAK_APP_ID!, |
External URL reference
| 124 | - [Speak Website](https://speak.com) |
External URL reference
| 125 | - [Speak GPT-4 Blog](https://speak.com/blog/speak-gpt-4) |
External URL reference
| 126 | - [OpenAI Realtime API](https://platform.openai.com/docs/guides/realtime) |