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

anime-tts

v1.1.1

Published

Anime TTS + terminal effects for Claude Code — breathy Rei Ayanami voiceover (ElevenLabs), sparkles, and sound FX on every session event.

Readme

anime-tts

Anime TTS + terminal effects for Claude Code. A breathy Rei Ayanami voiceover (ElevenLabs), sparkles, kaomoji reactions, and sound FX on every session event.

Features

  • Visual FX — terminal flash + border glow on session start, tool use, completion
  • Sound FX — themed sound packs (default chiptune, anime, DBZ, silent)
  • TTS narration — ElevenLabs speech on stop / error / prompt / session-start, with local response summarization (no LLM round-trip required)
  • Rei voice by default — soft breathy Japanese female (Akane, 3321Alera3fXjEWjjbAX), monotone cadence, Japanese softeners sprinkled into English output (desu, hai, ne)
  • 10+ voice presets — cute kawaii, anime prince, tomboy, explosion mage, and more
  • Dedup + queue — never overlapping speech, never repeats the same line twice in 30s
  • Audio caching — each rendered line is cached on disk by text + voice + settings hash
  • Slash command/anime-tts to toggle, swap themes, change voice, set volume

Install

From the anime-tts marketplace (Claude Code)

/plugin marketplace add leancoderkavy/anime-tts
/plugin install anime-tts@anime-tts

This points Claude Code at this repo as a plugin marketplace and installs from there. Updates: /plugin marketplace update anime-tts.

From npm

npm install -g anime-tts
anime-tts install     # copies plugin into ~/.claude/plugins/anime-tts

From source

git clone https://github.com/leancoderkavy/anime-tts.git ~/.claude/plugins/anime-tts
cd ~/.claude/plugins/anime-tts
cp .env.example .env
# add ELEVENLABS_API_KEY to .env

Restart Claude Code. Then enable TTS with /anime-tts tts setup — it will walk you through pasting your ElevenLabs key, picking a voice, and choosing which events speak.

TTS is disabled by default. Visuals and sound FX work immediately; voice requires explicit opt-in.

ElevenLabs API key

You need a free ElevenLabs account — sign up here, then find your key in Profile → API Keys. Three ways to give it to the plugin (pick one):

  1. Slash command (easiest): /anime-tts tts key sk_your_key_here — writes it to .env for you
  2. Edit .env directly: add ELEVENLABS_API_KEY=sk_your_key_here to ~/.claude/plugins/anime-tts/.env
  3. Shell export: export ELEVENLABS_API_KEY=sk_your_key_here in your ~/.zshrc or ~/.bashrc

The plugin checks .env first, then falls back to process.env, so either mechanism works.

Configuration

Edit config.json:

{
  "enabled": true,
  "volume": 0.4,
  "visuals": true,
  "sfx": true,
  "tts": {
    "enabled": true,
    "voice_id": "3321Alera3fXjEWjjbAX",
    "model": "eleven_flash_v2_5",
    "language": "ja",
    "voice_settings": {
      "stability": 0.95,
      "similarity_boost": 0.85,
      "style": 0.05,
      "use_speaker_boost": true
    },
    "on_events": ["stop", "error", "session_start", "prompt_submit"]
  }
}

Environment

Put your ElevenLabs API key in .env:

ELEVENLABS_API_KEY=sk_...

Get one at elevenlabs.io.

Slash commands

| Command | Effect | |---|---| | /anime-tts | Show current state | | /anime-tts setup | First-run onboarding (key, voice, events) | | /anime-tts on / off | Master toggle | | /anime-tts volume 0.5 | Set SFX volume | | /anime-tts visuals off | Disable terminal animations | | /anime-tts tts on / off | Toggle voice | | /anime-tts tts voice rei | Swap voice preset | | /anime-tts tts test | Test current voice | | /anime-tts theme anime | Switch sound pack |

Voices

All voices are ElevenLabs professional voices. Switch with /anime-tts tts voice <name>.

| Name | Vibe | |---|---| | rei | Rei Ayanami — soft breathy Japanese female, quiet monotone (default) | | sora | Calm Japanese anime male protagonist | | akira | Charismatic Japanese male | | yui | Bright cute Japanese female | | yuki | Youthful calm anime teen female | | dylo | Dark fierce young male | | itsuki | Energetic tomboyish anime girl | | aerisita | Kawaii bubbly feminine | | megumin | Theatrical chuunibyou explosion mage | | ritsuto | Anime prince |

Hooks

Fires on every Claude Code hook event:

  • SessionStart — power-up sound, flash, TTS greeting
  • UserPromptSubmit — energy beam SFX, intent narration
  • PreToolUse / PostToolUse — tool activation chimes
  • Stop — completion SFX, Rei summarizes the response
  • Notification / SessionEnd — ambient feedback

License

MIT © leancoderkavy

Credits