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/assemblyai-pack

v1.0.0

Published

Claude Code skill pack for AssemblyAI - 18 skills covering speech-to-text, audio intelligence, and transcription

Readme

AssemblyAI Skill Pack

Claude Code skill pack for AssemblyAI speech-to-text, LeMUR, and streaming transcription (18 skills)

What it does: Gives Claude Code deep knowledge of the AssemblyAI API — async transcription with audio intelligence (speaker diarization, sentiment, entities, PII redaction), real-time streaming via WebSocket, and LeMUR for LLM-powered audio analysis (summarization, Q&A, action items). Every skill uses the real assemblyai npm package with real SDK methods.

Links: AssemblyAI Docs | Node SDK | API Reference | Pricing

Installation

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

Skills Included

Getting Started (S01-S04)

| Skill | What It Does | |-------|-------------| | assemblyai-install-auth | Install assemblyai npm package, configure API key, verify connection | | assemblyai-hello-world | First transcription — remote URL, local file, audio intelligence features, LeMUR | | assemblyai-local-dev-loop | Dev environment with transcript caching, mocked tests, hot reload | | assemblyai-sdk-patterns | Singleton client, type-safe wrappers, error handling, retry logic, multi-tenant |

Core Workflows (S05-S06)

| Skill | What It Does | |-------|-------------| | assemblyai-core-workflow-a | Async transcription — speaker diarization, sentiment, entities, PII redaction, content safety | | assemblyai-core-workflow-b | Streaming transcription via WebSocket + LeMUR (summarize, Q&A, action items, custom tasks) |

Troubleshooting (S07-S09)

| Skill | What It Does | |-------|-------------| | assemblyai-common-errors | Real error messages with fixes — auth, download errors, rate limits, streaming codes, LeMUR | | assemblyai-debug-bundle | Diagnostic script + programmatic transcript inspection for support tickets | | assemblyai-rate-limits | Exponential backoff, p-queue concurrency control, streaming reconnection |

Security & Production (S10-S12)

| Skill | What It Does | |-------|-------------| | assemblyai-security-basics | API key management, temporary tokens for browsers, PII redaction, data retention | | assemblyai-prod-checklist | Go-live checklist, webhook-based processing, health checks, monitoring alerts | | assemblyai-upgrade-migration | SDK migration (old @assemblyai/sdk to assemblyai), model transitions, breaking changes |

Pro Skills (P13-P18)

| Skill | What It Does | |-------|-------------| | assemblyai-ci-integration | GitHub Actions with mocked unit tests + live integration tests, cost-controlled strategy | | assemblyai-deploy-integration | Deploy to Vercel, Cloud Run, Fly.io with webhook endpoints and streaming tokens | | assemblyai-webhooks-events | Webhook handler for transcription completion, idempotent processing, local testing | | assemblyai-performance-tuning | Model selection (Best vs Nano), batch processing, caching, webhook vs polling | | assemblyai-cost-tuning | Real pricing calculator, feature budgeting, usage tracking, cost reduction strategies | | assemblyai-reference-architecture | Layered architecture with transcription, LeMUR, and streaming services |

Key SDK Patterns Used

import { AssemblyAI } from 'assemblyai';

const client = new AssemblyAI({ apiKey: process.env.ASSEMBLYAI_API_KEY! });

// Async transcription (polls until done)
const transcript = await client.transcripts.transcribe({ audio: './file.mp3' });

// Submit with webhook (returns immediately)
await client.transcripts.submit({ audio: url, webhook_url: '...' });

// Streaming via WebSocket
const transcriber = client.streaming.createService({ speech_model: 'nova-3' });

// LeMUR — LLM on transcripts
await client.lemur.summary({ transcript_ids: [id] });
await client.lemur.questionAnswer({ transcript_ids: [id], questions: [...] });
await client.lemur.actionItems({ transcript_ids: [id] });
await client.lemur.task({ transcript_ids: [id], prompt: '...' });

License

MIT