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

@taughtful/codebridge

v0.3.4

Published

Your coding agent's answers, taught out loud. One command turns the last thing Claude Code or Codex said into a live voice lesson on Taughtful.

Readme

CodeBridge, by Taughtful

Your coding agent's answers, taught out loud. Works with Claude Code and OpenAI Codex.

One command turns the last thing your coding agent said into a live lesson on Taughtful: a voice tutor, a drawn board, and room to ask why.

Use

In Claude Code or the Codex TUI, after an answer worth understanding (needs the CLI on PATH — npm i -g @taughtful/codebridge, see Install):

! codebridge

Zero model tokens, zero clicks. The answer opens as a live lesson at taughtful.ai/codebridge/<id> and a voice tutor teaches it out loud. Interrupt it mid-sentence and ask why; it answers.

With the plugin installed you also get it as a command, with your agent's own fuzzy file suggestions on @:

/codebridge @src/auth.js     # Claude Code
$codebridge @src/auth.js     # Codex

Install

As a plugin (recommended; adds the command + file picker):

Claude Code:

/plugin marketplace add taughtful-ai/codebridge
/plugin install codebridge@taughtful

Codex:

codex plugin marketplace add taughtful-ai/codebridge
codex plugin add codebridge@taughtful

Restart your agent once after installing (plugins register at startup) — /codebridge and $codebridge are there in every session after.

The CLI (what powers the ! codebridge bang inside sessions):

npm i -g @taughtful/codebridge       # puts `codebridge` on PATH → ! codebridge works
codebridge                           # teach this project's latest answer
codebridge browse                    # pick from your recent sessions (both agents)
codebridge --dry-run                 # show what would be taught, send nothing

Or try it once with no install: npx @taughtful/codebridge (the plugins use this fallback too, so they work without the global install).

Codex note: Codex runs shell commands in a network-blocked sandbox; approve the escalated run when it asks, since teaching uploads the lesson.

Tag files into the lesson

The tutor teaches them alongside the answer, each as its own section:

! codebridge @src/auth.js @docs/design.md

You pick the files; nothing is auto-included. Code and text show a char/context meter; PDFs, Office docs, ebooks, and images (photos of notes, screenshots, diagrams) ride to the same rich ingestion Docs mode uses — structure detection for PDFs, vision transcription for images and scans. Secrets (.env, keys, credentials) are refused, unsupported binaries skipped, and a mistyped path aborts the run instead of teaching partial context. Runs under 200 words with nothing tagged are declined, with a hint to tag the part worth teaching.

In your IDE

In Cursor and VS Code, lessons can open inside the editor's own browser, voice included. CodeBridge offers to install the tiny CodeBridge Opener extension on first run; accept once and every lesson lands in the IDE.

Privacy

  • Only the one answer you choose (plus files you explicitly tag) leaves your machine, when you invoke it.
  • It travels as an anonymous, unlisted lesson that expires in 48 hours.
  • Your prompts, code, tool output, and other sessions stay local.
  • The session picker daemon binds 127.0.0.1 only, is read-only, and refuses requests from non-Taughtful web origins.

Config

| env | default | meaning | | --- | --- | --- | | CODEBRIDGE_OPEN | | external forces the system browser; print disables auto-open | | CODEBRIDGE_PORT | 4519 | local picker port |

Requires Node 18+. MIT.