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

wokitokie

v1.1.0

Published

Voice-to-voice mode for Claude Code — speak to Claude, hear it think, get spoken responses via ElevenLabs TTS

Downloads

173

Readme

Woki Tokie

Voice-to-voice mode for Claude Code. Speak to Claude, hear it think, get spoken responses.

Install

claude plugin add github:felipesalinasr/wokitokie

Or from npm:

claude plugin add wokitokie

Setup

  1. Set your ElevenLabs API key:
echo 'export ELEVENLABS_API_KEY="your-key"' >> ~/.zshrc
source ~/.zshrc
  1. Generate thinking sound clips:
/voice-generate

Usage

/voice-on     # start voice mode
/voice-off    # stop voice mode

When voice mode is on:

  • Claude speaks responses aloud via ElevenLabs TTS
  • You hear vocal thinking clips while Claude processes ("Hmm, let me think about that...")
  • Every session starts with voice OFF — enable it when you want it

Optional: Hammerspoon Auto-Submit (macOS)

For full hands-free mode, install Hammerspoon and add this to ~/.hammerspoon/init.lua:

require("hs.ipc")

SpaceDownTime = 0
HOLD_THRESHOLD = 1.0
FLAG_FILE = "/tmp/claude-voice-active"

SpaceTap = hs.eventtap.new({hs.eventtap.event.types.keyDown, hs.eventtap.event.types.keyUp}, function(event)
    local keyCode = event:getKeyCode()
    local eventType = event:getType()
    if keyCode ~= 49 then return false end
    local f = io.open(FLAG_FILE, "r")
    if not f then return false end
    f:close()
    local app = hs.application.frontmostApplication()
    if not app then return false end
    local bundleID = app:bundleID()
    if bundleID ~= "com.apple.Terminal" and bundleID ~= "com.googlecode.iterm2" and bundleID ~= "dev.warp.Warp-Stable" then return false end
    if eventType == hs.eventtap.event.types.keyDown then
        if SpaceDownTime == 0 then SpaceDownTime = hs.timer.secondsSinceEpoch() end
        return false
    end
    if eventType == hs.eventtap.event.types.keyUp then
        if SpaceDownTime > 0 then
            local held = hs.timer.secondsSinceEpoch() - SpaceDownTime
            SpaceDownTime = 0
            if held >= HOLD_THRESHOLD then
                hs.timer.doAfter(0.5, function() hs.eventtap.keyStroke({}, "return") end)
            end
        end
        return false
    end
    return false
end)
SpaceTap:start()

-- Escape to cut audio
EscTap = hs.eventtap.new({hs.eventtap.event.types.keyDown}, function(event)
    if event:getKeyCode() ~= 53 then return false end
    local f = io.open(FLAG_FILE, "r")
    if not f then return false end
    f:close()
    local app = hs.application.frontmostApplication()
    if not app then return false end
    local bundleID = app:bundleID()
    if bundleID ~= "com.apple.Terminal" and bundleID ~= "com.googlecode.iterm2" and bundleID ~= "dev.warp.Warp-Stable" then return false end
    os.execute("pkill -9 -x afplay 2>/dev/null")
    local pf = io.open("/tmp/claude-thinking.pid", "r")
    if pf then
        local pid = pf:read("*l")
        pf:close()
        if pid and pid:match("^%d+$") then
            hs.task.new("/bin/kill", nil, {"-9", pid}):start()
        end
        os.remove("/tmp/claude-thinking.pid")
    end
    return false
end)
EscTap:start()

This lets you hold Space to dictate and press Escape to cut audio mid-sentence.

Configuration

| Env Variable | Default | Description | |---|---|---| | ELEVENLABS_API_KEY | (required) | Your ElevenLabs API key | | WOKITOKIE_VOICE_ID | g2W4HAjKvdW93AmsjsOx | ElevenLabs voice ID | | WOKITOKIE_MODEL_ID | eleven_turbo_v2_5 | ElevenLabs model |

Requirements

  • macOS (uses afplay for audio playback)
  • Python 3
  • ElevenLabs API key
  • Claude Code with voice mode enabled (voiceEnabled: true in settings)

License

MIT