Skip to main content

speak-hello-world

Demonstrates a minimal working example for integrating the Speak API in language learning applications.

Install this skill

or
55/100

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

medium line 86

Template literal with variable interpolation in command context

SourceSKILL.md
86console.log(`Overall score: ${assessment.score}/100`);
medium line 88

Template literal with variable interpolation in command context

SourceSKILL.md
88console.log(` "${word.text}": ${word.score}/100`);
medium line 91

Template literal with variable interpolation in command context

SourceSKILL.md
91console.log(` Weak phoneme: ${p.symbol} (${p.score}) - ${p.suggestion}`);
medium line 101

Template literal with variable interpolation in command context

SourceSKILL.md
101console.log(` Duration: ${summary.durationMinutes} min`);
medium line 102

Template literal with variable interpolation in command context

SourceSKILL.md
102console.log(` Turns: ${summary.totalTurns}`);
medium line 103

Template literal with variable interpolation in command context

SourceSKILL.md
103console.log(` Pronunciation: ${summary.avgPronunciationScore}/100`);
medium line 104

Template literal with variable interpolation in command context

SourceSKILL.md
104console.log(` Grammar: ${summary.grammarAccuracy}%`);
medium line 105

Template literal with variable interpolation in command context

SourceSKILL.md
105console.log(` New vocabulary: ${summary.newWords.join(', ')}`);
low line 42

Access to .env file

SourceSKILL.md
42apiKey: process.env.SPEAK_API_KEY!,
low line 43

Access to .env file

SourceSKILL.md
43appId: process.env.SPEAK_APP_ID!,
low line 124

External URL reference

SourceSKILL.md
124- [Speak Website](https://speak.com)
low line 125

External URL reference

SourceSKILL.md
125- [Speak GPT-4 Blog](https://speak.com/blog/speak-gpt-4)
low line 126

External URL reference

SourceSKILL.md
126- [OpenAI Realtime API](https://platform.openai.com/docs/guides/realtime)
Scanned on May 12, 2026
View Security Dashboard
Installation guide →