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

@plasius/ai-speech

v0.1.2

Published

Speech orchestration, TTS cache contracts, STT/TTS routing, and voice tier policy for Plasius AI.

Downloads

224

Readme

@plasius/ai-speech

Speech orchestration, TTS cache contracts, STT/TTS routing, and voice tier policy for Plasius AI.

Scope

This package defines public contracts for:

  • rollout-controlled TTS cache planning
  • cache-safe player address rendering
  • development, standard, and premium-character voice tier routing
  • cache telemetry payloads

It does not fetch remote feature flags, talk to providers, or store cache entries directly. Host applications and provider adapters remain responsible for runtime I/O.

Install

npm install @plasius/ai-speech

Usage

import {
  AI_SPEECH_FEATURE_FLAGS,
  planAiSpeechCache,
  renderAiSpeechText,
  resolveAiSpeechVoiceTier,
} from "@plasius/ai-speech";

const rendered = renderAiSpeechText({
  textTemplate: "Welcome back, {playerAddress}.",
  playerAddress: {
    source: "user-name",
    rawValue: "Captain Zephod",
  },
});

const cachePlan = planAiSpeechCache({
  utteranceClass: "player-address",
  textTemplate: "Welcome back, {playerAddress}.",
  playerAddress: {
    source: "user-name",
    rawValue: "Captain Zephod",
  },
  voice: {
    providerId: "openai",
    modelId: "gpt-tts-1",
    voiceId: "narrator",
    locale: "en-GB",
    format: "mp3",
    pronunciationVersion: "2026-05",
    cachePermission: "exact-and-near",
  },
  actorScopeKey: "user-42",
  featureFlags: {
    [AI_SPEECH_FEATURE_FLAGS.ttsCache]: true,
    [AI_SPEECH_FEATURE_FLAGS.ttsNearReuse]: true,
  },
});

const voiceTier = resolveAiSpeechVoiceTier({
  environment: "production",
  requestedTier: "premium-character",
  featureFlags: {
    [AI_SPEECH_FEATURE_FLAGS.premiumCharacters]: false,
  },
});

console.log(rendered.renderText);
console.log(cachePlan.mode);
console.log(voiceTier.resolvedTier);

Rollout Controls

  • ai.tts.cache.enabled: master switch for exact-cache planning
  • ai.tts.near-reuse.enabled: enables near-text reuse only for approved low-risk utterance classes
  • ai.tts.premium-characters.enabled: enables premium character voices in production routes

Default behavior is fail-closed when the caller does not provide a remote flag snapshot.

Cache Safety Rules

  • User names, account handles, and user-renamed character names are redacted to a generic label such as Player.
  • Near-text reuse is blocked for redacted identifiers, personal data, moderation notices, and private player context.
  • Sensitive speech can only produce an actor-scoped exact cache plan when the caller provides an explicit actorScopeKey.
  • Provider adapters must declare whether they allow no cache, exact-only cache, or exact-plus-near cache decisions.

Rollback

  • Disable ai.tts.near-reuse.enabled to force safe callers back to exact-cache planning.
  • Disable ai.tts.cache.enabled to bypass cache planning entirely.
  • Disable ai.tts.premium-characters.enabled to downgrade premium character requests to standard voices.

Development

npm install
npm run build
npm test
npm run test:coverage
npm run pack:check

Governance

License

Apache-2.0