speak-core-workflow-a
Facilitates AI-driven conversation practice with real-time feedback, enhancing language learning through interactive tutoring sessions.
Install this skill
Security score
The speak-core-workflow-a skill was audited on Feb 21, 2026 and we found 14 security issues across 1 threat category. Review the findings below before installing.
Categories Tested
Security Issues
Template literal with variable interpolation in command context
| 100 | console.log(`\nTutor: ${tutorPrompt.text}`); |
Template literal with variable interpolation in command context
| 102 | console.log(`(${tutorPrompt.translation})`); |
Template literal with variable interpolation in command context
| 154 | console.log(`Pronunciation: ${feedback.pronunciationScore}/100`); |
Template literal with variable interpolation in command context
| 159 | console.log(` "${correction.original}" → "${correction.corrected}"`); |
Template literal with variable interpolation in command context
| 160 | console.log(` Explanation: ${correction.explanation}`); |
Template literal with variable interpolation in command context
| 166 | feedback.suggestions.forEach(s => console.log(` • ${s}`)); |
Template literal with variable interpolation in command context
| 169 | console.log(`\n${feedback.encouragement}`); |
Template literal with variable interpolation in command context
| 224 | console.log(`Topic: ${config.topic}`); |
Template literal with variable interpolation in command context
| 225 | console.log(`Language: ${config.targetLanguage}`); |
Template literal with variable interpolation in command context
| 238 | console.log(`Duration: ${Math.round(summary.duration / 60000)} minutes`); |
Template literal with variable interpolation in command context
| 239 | console.log(`Exchanges: ${summary.totalExchanges}`); |
Template literal with variable interpolation in command context
| 240 | console.log(`Average Pronunciation: ${summary.averagePronunciationScore}/100`); |
Template literal with variable interpolation in command context
| 244 | summary.achievements.forEach(a => console.log(` 🏆 ${a.name}`)); |
Template literal with variable interpolation in command context
| 247 | console.log(`\nSuggested next lesson: ${summary.nextLessonSuggestion}`); |