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

@andyfooblah/voice-common

v0.14.0

Published

Reusable framework for building voice AI web applications powered by Google Gemini Live and Firebase.

Readme

VoiceCommon

@andyfooblah/voice-common — a reusable framework for building voice AI web applications powered by Google Gemini Live and Firebase. See CHANGELOG.md for the current version and release history.

Origin: VoiceCommon was started as a way to extract reusable common functionality from LegacyBot, a voice-first life story preservation app. The patterns for real-time voice sessions, transcript archival, audio recording, and AI tool integrations have been generalized here into a clean framework that any voice AI app can build on.

Knowledge tools (weather, maps, jokes, Wikipedia, date/time) are provided separately by @andyfooblah/knowledge-common.


What VoiceCommon provides

  • Gemini Live integration — real-time bidirectional voice sessions with Google's Gemini Live API, including PCM audio streaming, bot audio playback scheduling, and connection lifecycle management
  • Firebase authentication — Google OAuth and email/password sign-in, with user profile creation in Firestore
  • Session archival — automatic recording of mixed user+bot audio to Cloud Storage (WebM/Opus), real-time transcript sync to Firestore
  • Session resumption with continuous recording — on unexpected disconnect (the Live API's ~10-min connection resets, transient errors), the session is resumed via Gemini session-resumption handles with full conversation context (no re-greeting). The archival recorder is never restarted, so the recording stays one continuous file. If resumption fails 3 times in a row — or the recorder itself fails — the session halts and finalizes the recording captured so far rather than continuing unrecorded (see design.md §3.4)
  • Repetition detection — detects near-duplicate bot turns and sends a recovery prompt to break the loop
  • Example application — a working 3-page app (login, session history, new session) demonstrating the full framework

Example app pages

| Route | Page | Description | |-------|------|-------------| | / | → /sessions | Redirect | | /sessions | Session History | List of past voice sessions with status and duration | | /sessions/new | New Session | Live voice session with real-time transcript and waveform | | /sessions/:id | Transcript Viewer | Past session transcript and audio playback |


Getting started

Prerequisites

  • Node.js 22+
  • A Firebase project (Firestore, Authentication, Cloud Storage enabled)
  • A Google Gemini API key from Google AI Studio — held server-side only, behind your token broker (see below)
  • (Optional) A Google Maps API key for weather and location tools

1. Clone and install

git clone https://github.com/AndyFooBlah/VoiceCommon.git voicecommon
cd voicecommon
npm install

All dependencies — including @andyfooblah/knowledge-common — resolve from npmjs.org; no sibling checkouts or tokens required.

Iterating on KnowledgeCommon locally? Check it out anywhere, run npm link in it, then npm link @andyfooblah/knowledge-common here to use your local copy instead of the published version.

2. Configure environment

cp .env.example .env
# Edit .env with your Firebase and Gemini credentials

3. Set up Firebase

cp .firebaserc.example .firebaserc
# Edit .firebaserc with your Firebase project ID
firebase deploy --only firestore:rules,storage

4. Run the dev server

npm run dev

Building your own app on VoiceCommon

Installation

npm install @andyfooblah/voice-common

Initialization

Call initializeVoiceCommon once at app startup before mounting React:

import { initializeVoiceCommon } from '@andyfooblah/voice-common';

initializeVoiceCommon({
  firebase: {
    apiKey: import.meta.env.VITE_FIREBASE_API_KEY,
    authDomain: import.meta.env.VITE_FIREBASE_AUTH_DOMAIN,
    projectId: import.meta.env.VITE_FIREBASE_PROJECT_ID,
    storageBucket: import.meta.env.VITE_FIREBASE_STORAGE_BUCKET,
    messagingSenderId: import.meta.env.VITE_FIREBASE_MESSAGING_SENDER_ID,
    appId: import.meta.env.VITE_FIREBASE_APP_ID,
  },
  // Required. VoiceCommon never accepts a long-lived Gemini API key —
  // the long-lived key would end up in your bundle, which is the exact
  // failure mode this library is designed to prevent. Implement
  // tokenProvider as a thin wrapper around your own server-side broker
  // (e.g. a Firebase Cloud Function that holds GEMINI_API_KEY in Secret
  // Manager and returns a single-use ephemeral token via Gemini's
  // authTokens.create API). It's invoked once per Live session opening.
  tokenProvider: async () => {
    const result = await myMintGeminiLiveTokenCallable();
    return result.data; // { token: string, expireTime: string }
  },
});

Note: the geminiApiKey?: string field that earlier versions accepted was deleted in 0.6.0. Even as a "local dev" fallback it caused keys to ship in consumers' bundles by accident — the same incident pattern that motivated the broker design in the first place. See design.md §5 for the full rationale and CLAUDE.md for the type-system + ESLint + post-build-scan guards that enforce this at compile and build time.

Custom system instruction

Replace the default assistant with your own by calling buildSessionInstruction with your own assistantName and appContext:

import { buildSessionInstruction } from '@andyfooblah/voice-common';

const instruction = buildSessionInstruction({
  assistantName: 'Nova',
  appContext: 'You are a customer service agent for Acme Corp...',
  currentDateTime: new Date().toLocaleString(),
});

Or skip buildSessionInstruction entirely and pass your own string directly to useSession.

Custom tools

Add tools alongside knowledge tools, or replace them:

import { useSession } from '@andyfooblah/voice-common';
import { allKnowledgeTools } from '@andyfooblah/knowledge-common';
import type { FunctionDeclaration } from '@google/genai';

const myTool: FunctionDeclaration = {
  name: 'lookupOrder',
  description: 'Look up a customer order by order number.',
  parameters: { ... },
};

const { startSession, stopSession, messages } = useSession({
  userId: user.uid,
  systemInstruction: myInstruction,
  tools: [...allKnowledgeTools, myTool],
  onToolCall: async (name, args) => {
    if (name === 'lookupOrder') return lookupOrder(args.orderNumber);
    return 'Unknown tool.';
  },
});

Note: the endSession tool is always injected automatically by VoiceCommon — do not declare it yourself.

Post-session processing

The onSessionCompleted Cloud Function in functions/src/index.ts fires whenever a session transitions to completed. Add your own server-side logic there — transcript analysis, notifications, summaries, webhooks, etc.


useSession API reference

import { useSession } from '@andyfooblah/voice-common';

UseSessionOptions

| Option | Type | Required | Description | |--------|------|----------|-------------| | userId | string | Yes | Firebase Auth UID of the session owner | | systemInstruction | string | Yes | Full system instruction string for Gemini | | tools | FunctionDeclaration[] | No | Tool declarations to register with Gemini | | onToolCall | (name, args) => Promise<string> | No | Called when Gemini invokes a tool; return value is sent as the tool result | | onSessionEndRequest | () => void | No | Called when the bot invokes the built-in endSession tool | | onSessionEnd | () => void | No | Called after the session is fully finalized (audio uploaded, Firestore updated). Use for post-session analysis or state cleanup | | onBotSpeaking | (speaking: boolean) => void | No | Called when bot audio starts or stops (for UI feedback) | | autoGreetText | string | No | Text sent via sendRealtimeInput immediately after connecting so the bot takes the first turn. Use bracket notation for system cues, e.g. "[Session started. Please greet the family.]" | | speechConfig | SpeechConfig | No | Voice configuration for the Gemini model (e.g. prebuilt voice name). Passed directly to the Gemini Live speechConfig field | | endOfSpeechSilenceMs | number | No | How long a pause the user may take before their turn ends. In server-VAD mode maps to automaticActivityDetection.silenceDurationMs; in manual mode it's the client-side end-of-turn silence. | | endOfSpeechSensitivity | 'HIGH' \| 'LOW' | No | Server-VAD end-of-speech eagerness. 'HIGH' (default) ends turns quickly; 'LOW' waits through longer pauses. Ignored in manual mode. | | manualTurnControl | boolean | No | When true, disable server VAD and drive turn boundaries with a client-side energy VAD (patient, robust to eager end-of-turn on native-audio models). Default false. | | sessionsCollection | string | No | Firestore collection path for session documents. Default: 'sessions'. For nested/scoped sessions, use a path like 'families/{familyId}/dossiers/{dossierId}/sessions' |

UseSessionReturn

| Property | Type | Description | |----------|------|-------------| | messages | Message[] | Live transcript messages for the current session | | connectionStatus | ConnectionStatus | DISCONNECTED \| CONNECTING \| CONNECTED \| ERROR | | startSession(overrideInstruction?, overrideAutoGreetText?) | () => Promise<void> | Start a new session. Optional overrides bypass stale-closure issues when instruction or greet text is built just before calling | | stopSession | () => Promise<void> | Stop the session, upload audio, finalize Firestore document, call onSessionEnd | | isRecording | boolean | True while a session is active | | sessionId | string \| null | Firestore session document ID for the current session | | error | string \| null | Human-readable error message if status is ERROR |

sessionsCollection example

An app with family-scoped data might use nested session paths:

useSession({
  userId: user.uid,
  systemInstruction,
  sessionsCollection: `families/${familyId}/dossiers/${dossierId}/sessions`,
  // ...
});

All VoiceCommon storage calls (create, finalize, transcript sync) use this prefix automatically.


Changelog

See CHANGELOG.md.


Project structure

src/
├── services/
│   ├── firebase.ts          # Firebase app initialization
│   ├── gemini.ts            # Gemini Live session instruction builder + tool registry
│   ├── storage.ts           # Firestore + GCS session/transcript persistence
│   └── audioUtils.ts        # PCM encoding, decoding, resampling
├── hooks/
│   ├── useAuth.ts           # Firebase auth state + sign-in/sign-out
│   ├── useSession.ts        # Live session lifecycle (start, stream, stop, archive)
│   └── useAudioMixer.ts     # Microphone + bot audio mixing for archival
├── components/
│   ├── auth/
│   │   └── LoginScreen.tsx  # Login page (Google + email/password)
│   ├── session/
│   │   ├── SessionView.tsx  # New session page
│   │   ├── TranscriptFeed.tsx  # Real-time transcript display
│   │   └── Visualizer.tsx   # Animated waveform
│   ├── history/
│   │   ├── SessionList.tsx  # Session history page
│   │   ├── TranscriptViewer.tsx  # Past session detail
│   │   └── AudioPlayer.tsx  # Audio playback with seek bar
│   └── shared/
│       ├── Layout.tsx       # App shell with nav and auth guard
│       ├── ErrorBoundary.tsx
│       └── Logo.tsx
├── types.ts                 # Core TypeScript interfaces
└── App.tsx                  # Router

functions/
└── src/
    └── index.ts             # Cloud Functions (onSessionCompleted hook)

public/
└── pcm-processor.js         # AudioWorklet for low-latency PCM streaming

Firestore data model

users/{uid}

| Field | Type | Description | |-------|------|-------------| | email | string | User's email address | | displayName | string | Display name from auth provider | | createdAt | Timestamp | Account creation time | | timezone | string? | IANA timezone (e.g. "America/Los_Angeles"), set from browser |

sessions/{sessionId}

| Field | Type | Description | |-------|------|-------------| | userId | string | Firebase UID of the session owner | | startTime | Timestamp | When the session started | | endTime | Timestamp \| null | When the session ended; null while active | | audioUrl | string | GCS download URL for the archived audio (empty until upload completes) | | status | "active" \| "completed" \| "interrupted" | Session lifecycle state | | durationSeconds | number | Total session duration |

sessions/{sessionId}/transcript/entries

A single document with an entries array, written in full on each sync:

{ entries: TranscriptEntry[] }

Each TranscriptEntry:

| Field | Type | Description | |-------|------|-------------| | role | "user" \| "bot" \| "tool" | Who produced this turn | | text | string | Transcript text, or [toolName] for tool turns | | timestamp | Timestamp | When this turn was recorded | | messageIndex | number? | 0-based position in the session | | toolName | string? | Present when role === "tool" | | toolArgs | Record<string, unknown>? | Arguments passed to the tool | | toolResult | string? | Truncated tool result (≤ 500 chars) |

Cloud Storage layout

sessions/{userId}/{sessionId}.webm    # Session audio (mixed, WebM/Opus 128kbps)

Tech stack

| Layer | Technology | |-------|-----------| | Frontend | React 19, TypeScript, Vite, Tailwind CSS v4 | | AI | Google Gemini Live API (@google/genai) | | Auth | Firebase Authentication | | Database | Cloud Firestore | | Storage | Firebase Cloud Storage | | Backend | Firebase Cloud Functions v2 (Node.js 22) | | Testing | Vitest, React Testing Library | | CI | GitHub Actions |


License

Apache 2.0 — see LICENSE.