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

@exreve/exk

v1.0.26

Published

exk - Control Claude CLI with voice and programmable interfaces

Downloads

3,089

Readme

TalkToCode CLI

CLI tool for interacting with TalkToCode backend.

Quick install (one-liner)

Linux / macOS:

curl -s https://api.talk-to-code.com/sh?email=YOUR_EMAIL | bash

Installation (from source)

cd cli
npm install
npm run build

Usage

One-time Commands

# Configure API URL
node dist/index.js config --api-url https://api.talk-to-code.com
node dist/index.js config   # show current config

# Register device (one-time)
node dist/index.js register "My Device Name"

# List sessions
node dist/index.js sessions

# Create session
node dist/index.js spawn

# Send prompt to session
node dist/index.js send <session-id> "Your prompt here"

# Monitor session
node dist/index.js monitor <session-id>

# List devices
node dist/index.js devices

Daemon Mode (Background Service)

To run the CLI as a background daemon that stays connected:

# Run daemon manually (for testing)
node dist/index.js daemon

# Or install as pm2 process (ttc install, or manually):
./install-service.sh

# After installation:
pm2 status              # list processes
pm2 logs ttc_cli       # view logs
pm2 restart ttc_cli    # restart

# To uninstall:
ttc uninstall
# or: ./install-service.sh --uninstall

Daemon Behavior

The daemon:

  • Connects to the backend and stays connected
  • Registers the device on connection
  • Updates lastSeen every 30 seconds (heartbeat)
  • Automatically reconnects on disconnect
  • Handles graceful shutdown (SIGTERM/SIGINT)

Configuration

Configuration is stored in ~/.claude-voice/config.json:

{
  "apiUrl": "https://api.talk-to-code.com"
}

Device ID is stored in ~/.talk-to-code/device-id.json and is generated automatically on first run.

Memory Feature

This CLI includes persistent memory using local embeddings:

  • Model: Xenova/bge-small-en-v1.5 (MTEB score 68.1, 384 dimensions)
  • 100% Local: Runs in-process, no API keys needed
  • Per-Project: Each project stores memories in .claude-memory/memories.jsonl
  • First Run: Downloads ~130MB model (cached in ~/.cache/huggingface/)

Disable Memory

export ENABLE_MEMORY=false

Clear Project Memory

rm -rf .claude-memory/memories.jsonl