npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@intentsolutionsio/speak-pack

v1.0.0

Published

Claude Code skill pack for Speak - 24 skills covering AI-powered language learning with speech recognition and personalized tutoring

Readme

Speak Skill Pack

Claude Code skill pack for Speak AI language learning platform integration (24 skills)

Installation

/plugin install speak-pack@claude-code-plugins-plus

About Speak

Speak is an AI-powered language learning platform that gets users speaking from day one. Built on OpenAI's GPT-4o and Realtime API, Speak provides real-time pronunciation feedback, adaptive AI tutoring, and conversation practice without a live tutor. Backed by OpenAI Startup Fund, Founders Fund, and Y Combinator. Valued at $1B+ (Series C, 2024).

Key facts:

  • 14+ supported languages (Korean, Spanish, Japanese, French, German, and more)
  • GPT-4o for conversation generation and personalized feedback
  • OpenAI Whisper + proprietary models for speech recognition
  • Realtime API for sub-second response times in live roleplays
  • Proficiency graph system tracks learner knowledge state

Skills Included

Standard Skills (S01-S12)

| Skill | Description | |-------|-------------| | speak-install-auth | Install SDK, configure API keys, set up speech pipeline | | speak-hello-world | First AI tutoring session with pronunciation scoring | | speak-local-dev-loop | Mock tutors, audio fixtures, debug mode | | speak-sdk-patterns | Session manager, audio preprocessor, retry, progress tracker | | speak-core-workflow-a | AI conversation practice with adaptive feedback | | speak-core-workflow-b | Pronunciation drills with phoneme-level analysis | | speak-common-errors | Error codes, diagnostic commands, recovery patterns | | speak-debug-bundle | Auth check, audio validator, network diagnostics | | speak-rate-limits | Throttled client, batch queue, tier limits | | speak-security-basics | API key security, audio privacy, COPPA/FERPA | | speak-prod-checklist | Audio pipeline, monitoring, compliance checklist | | speak-upgrade-migration | SDK upgrades, API version migration |

Pro Skills (P13-P18)

| Skill | Description | |-------|-------------| | speak-ci-integration | GitHub Actions with mocked API tests | | speak-deploy-integration | Deploy to Vercel, Cloud Run, containers | | speak-webhooks-events | Lesson completion and progress events | | speak-performance-tuning | Audio preprocessing, caching, connection pooling | | speak-cost-tuning | Usage monitoring, tier optimization | | speak-reference-architecture | Client, API gateway, assessment engine, progress store |

Flagship Skills (F19-F24)

| Skill | Description | |-------|-------------| | speak-multi-env-setup | Dev/staging/prod with separate keys and mock modes | | speak-observability | API health, assessment latency, score distributions | | speak-incident-runbook | Outage triage, offline fallback, recovery | | speak-data-handling | Audio privacy, GDPR/COPPA compliance | | speak-enterprise-rbac | SSO, teacher/student roles, class management | | speak-migration-deep-dive | Platform migration, progress import |

Quick Start

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 conversation practice
const session = await client.startConversation({
  scenario: 'ordering-food',
  language: 'es',
  level: 'intermediate',
});
console.log('Tutor:', session.firstPrompt.text);

// Assess pronunciation
const result = await client.assessPronunciation({
  audioPath: './recording.wav',
  targetText: 'Hola, como estas?',
  language: 'es',
  detailLevel: 'phoneme',
});
console.log(`Score: ${result.score}/100`);

Resources

License

MIT