speak-hello-world

Solid

Create your first Speak AI tutoring session with pronunciation feedback. Use when starting a new Speak integration, testing your setup, or learning basic language learning API patterns. Trigger with phrases like "speak hello world", "speak example", "speak quick start", "first speak lesson".

AI & Automation 2,266 stars 315 forks Updated today MIT

Install

View on GitHub

Quality Score: 99/100

Stars 20%
100
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Speak Hello World ## Overview Create your first AI tutoring session with Speak. Demonstrates conversation practice, pronunciation assessment, and real-time feedback using GPT-4o-powered tutoring. ## Prerequisites - Completed `speak-install-auth` setup - Valid API credentials configured - Microphone access (optional for testing) ## Instructions ### Step 1: Start a Conversation Session ```typescript import { SpeakClient } from '@speak/language-sdk'; const client = new SpeakClient({ apiKey: process.env.SPEAK_API_KEY!, appId: process.env.SPEAK_APP_ID!, language: 'es', }); // Start a beginner Spanish lesson const session = await client.startConversation({ scenario: 'greetings', language: 'es', level: 'beginner', nativeLanguage: 'en', }); console.log('Session ID:', session.id); console.log('AI Tutor:', session.firstPrompt.text); // Output: "Hola! Bienvenido a tu leccion de espanol. Como te llamas?" console.log('Audio URL:', session.firstPrompt.audioUrl); ``` ### Step 2: Send a Student Response ```typescript // Submit text response (or audio file for pronunciation scoring) const turn = await client.sendTurn(session.id, { text: 'Hola, me llamo Juan. Mucho gusto.', // Or: audioPath: './recordings/response.wav' }); console.log('Tutor response:', turn.tutorText); console.log('Pronunciation score:', turn.pronunciationScore); // 0-100 console.log('Grammar corrections:', turn.corrections); // Output: [{original: "me llamo", suggestion: null, correct: true}] con...

Details

Author
jeremylongshore
Repository
jeremylongshore/claude-code-plugins-plus-skills
Created
7 months ago
Last Updated
today
Language
Python
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category

AI & Automation Solid

speak-core-workflow-a

Execute Speak primary workflow: AI Conversation Practice with real-time feedback. Use when implementing conversation practice features, building AI tutor interactions, or core language learning dialogue systems. Trigger with phrases like "speak conversation practice", "speak AI tutor", "speak dialogue", "primary speak workflow".

2,266 Updated today
jeremylongshore
AI & Automation Solid

speak-install-auth

Set up Speak language learning API integration and authentication. Use when configuring Speak API access, setting up OAuth with OpenAI Realtime API for speech, or initializing a language tutoring application. Trigger with phrases like "install speak", "setup speak", "speak auth", "configure speak API", "speak language learning setup".

2,266 Updated today
jeremylongshore
AI & Automation Solid

speak-local-dev-loop

Configure Speak local development with mocked tutors and audio testing. Use when setting up a development environment, configuring test workflows, or building language learning features locally. Trigger with phrases like "speak dev setup", "speak local development", "speak dev environment", "develop with speak".

2,266 Updated today
jeremylongshore
AI & Automation Solid

speak-sdk-patterns

Production patterns for Speak language learning API: conversation sessions, pronunciation assessment, audio preprocessing, and batch operations. Use when implementing sdk patterns features, or troubleshooting Speak language learning integration issues. Trigger with phrases like "speak sdk patterns", "speak sdk patterns".

2,266 Updated today
jeremylongshore
AI & Automation Solid

speak-performance-tuning

Optimize Speak API latency with audio preprocessing, response caching, and connection pooling. Use when implementing performance tuning, or managing Speak language learning platform operations. Trigger with phrases like "speak performance tuning", "speak performance tuning".

2,266 Updated today
jeremylongshore