wispr-install-auth

Featured

Wispr Flow install auth for voice-to-text API integration. Use when integrating Wispr Flow dictation, WebSocket streaming, or building voice-powered applications. Trigger: "wispr install auth".

AI & Automation 2,359 stars 334 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

# Wispr Flow Install & Auth ## Overview Configure Wispr Flow API for voice-to-text transcription. Supports WebSocket (recommended, lower latency) and REST endpoints. Auth via API key (backend) or access tokens (client-side). ## Prerequisites - Wispr Flow API access from [wisprflow.ai/developers](https://wisprflow.ai/developers) - API key from developer dashboard - Node.js 18+ or Python 3.8+ ## Instructions ### Step 1: Configure API Key ```bash # .env WISPR_API_KEY=your-api-key-here WISPR_API_URL=https://api.wisprflow.ai ``` ### Step 2: WebSocket Connection (Recommended) ```typescript const ws = new WebSocket('wss://api.wisprflow.ai/api/v1/ws', { headers: { Authorization: `Bearer ${process.env.WISPR_API_KEY}` }, }); ws.on('open', () => { // Send context for better transcription ws.send(JSON.stringify({ type: 'config', context: { app: 'code-editor', language: 'en' }, })); console.log('Connected to Wispr Flow'); }); ws.on('message', (data) => { const result = JSON.parse(data.toString()); if (result.type === 'transcription') { console.log(`Transcript: ${result.text}`); } }); ``` ### Step 3: REST API (Simpler, Higher Latency) ```python import requests, os response = requests.post( f"{os.environ['WISPR_API_URL']}/api/v1/transcribe", headers={"Authorization": f"Bearer {os.environ['WISPR_API_KEY']}"}, files={"audio": open("recording.wav", "rb")}, data={"language": "en"}, ) print(f"Transcript: {response.json()['text']}") ``` #...

Details

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

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category