speak-install-auth

Solid

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".

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 Install & Auth ## Overview Set up the Speak language learning platform integration. Speak uses OpenAI's GPT-4o and Realtime API for AI tutoring with real-time pronunciation feedback. Supports 14+ languages including Korean, Spanish, Japanese, French, and Mandarin. ## Prerequisites - Node.js 18+ or Python 3.10+ - Speak developer account with API access - Microphone for speech input testing ## Instructions ### Step 1: Install Dependencies ```bash set -euo pipefail # Core Speak SDK npm install @speak/language-sdk # Audio processing dependencies npm install openai # OpenAI Realtime API for speech npm install fluent-ffmpeg # Audio format conversion npm install node-record-lpcm16 # Microphone capture ``` ### Step 2: Configure Authentication ```bash # Speak API credentials export SPEAK_API_KEY="your-speak-api-key" export SPEAK_APP_ID="your-app-id" # OpenAI key for Realtime API (used by Speak for speech processing) export OPENAI_API_KEY="your-openai-key" # Create .env file cat << 'EOF' >> .env SPEAK_API_KEY=your-speak-api-key SPEAK_APP_ID=your-app-id OPENAI_API_KEY=your-openai-key EOF ``` ### Step 3: Initialize the Client ```typescript // src/speak/client.ts import { SpeakClient } from '@speak/language-sdk'; const client = new SpeakClient({ apiKey: process.env.SPEAK_API_KEY!, appId: process.env.SPEAK_APP_ID!, language: 'es', // Target language: es, ko, ja, fr, de, pt, zh, id }); // Verify connection async function verifySetup() { const languages...

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-multi-env-setup

Configure Speak across dev, staging, and production with separate API keys and mock modes. Use when implementing multi env setup, or managing Speak language learning platform operations. Trigger with phrases like "speak multi env setup", "speak multi env setup".

2,266 Updated today
jeremylongshore
AI & Automation Solid

speak-ci-integration

GitHub Actions pipeline for Speak integrations with mocked API tests and audio validation. Use when implementing ci integration, or managing Speak language learning platform operations. Trigger with phrases like "speak ci integration", "speak ci integration".

2,266 Updated today
jeremylongshore
AI & Automation Solid

speak-deploy-integration

Deploy Speak language learning features to Vercel, Cloud Run, or containerized environments. Use when implementing deploy integration, or managing Speak language learning platform operations. Trigger with phrases like "speak deploy integration", "speak deploy integration".

2,266 Updated today
jeremylongshore
AI & Automation Solid

speak-hello-world

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".

2,266 Updated today
jeremylongshore
AI & Automation Solid

speak-enterprise-rbac

Configure Speak for schools and organizations: SSO, teacher/student roles, class management, and usage reporting. Use when implementing enterprise rbac, or managing Speak language learning platform operations. Trigger with phrases like "speak enterprise rbac", "speak enterprise rbac".

2,266 Updated today
jeremylongshore