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

meeting-context-hub

v2.27.0

Published

TUI tool for managing meeting contexts with AI extraction and chaining

Readme

Meeting Context Hub

TUI tool for managing meeting contexts with AI extraction and semantic chaining

Why This Exists

When working on multiple parallel workstreams (squads, teams, personal projects), it becomes nearly impossible to retain all the granular discussions—policies, direction decisions, conventions, edge cases—that happen across meetings and conversations.

MCH captures what matters for development work and chains them together by relevance, so you can quickly rebuild context when switching between projects.

Features

  • AI Extraction: Automatically extract decisions, action items, and policies from meeting notes
  • Local Whisper: Free, offline speech-to-text using local Whisper model
  • Semantic Search: Find related contexts using embedding-based similarity
  • Context Chaining: Automatically link related discussions
  • Project Organization: Group contexts by squad, team, or project

Requirements

| Requirement | macOS/Linux | Windows | |-------------|-------------|---------| | Node.js 20+ | ✅ | ✅ | | sox | ✅ | ✅ | | GNU Make | ❌ | ✅ Download |

Status

v2.0.0-alpha - Complete redesign in progress

See ROADMAP for implementation plan.

Quick Start

# Set API keys
export ANTHROPIC_API_KEY=sk-ant-xxx
export OPENAI_API_KEY=sk-xxx  # Optional: fallback for Whisper API

# Install dependencies
pnpm install

# Download Whisper model (first time only, ~142MB for base)
npx whisper-node download

# Run (TUI)
pnpm dev

Documentation

| Document | Description | |----------|-------------| | PRD | Product requirements | | Architecture | Technical design | | Roadmap | Implementation plan |

Configuration

# Required
ANTHROPIC_API_KEY=sk-ant-xxx   # Claude API (context extraction)

# Optional
OPENAI_API_KEY=sk-xxx          # OpenAI - Whisper API fallback & semantic search (Embedding)
MCH_DB_PATH=~/.mch/data.db     # Database location
MCH_LANGUAGE=en                # UI language: 'ko' or 'en' (default: 'en')
MCH_TRANSCRIPTION_MODE=auto    # 'local' | 'api' | 'auto' (default: 'auto')

Transcription Modes

| Mode | Description | |------|-------------| | local | Local Whisper only (free, offline) | | api | OpenAI Whisper API only | | auto | Local first, fallback to API on failure (default) |

Note: Local Whisper is used by default. OpenAI API key is only required for semantic search and API fallback.

Tech Stack

  • UI: React + Ink (TUI)
  • AI: Claude (extraction), OpenAI (embedding)
  • Speech-to-Text: Local Whisper (whisper-node) / OpenAI Whisper API (fallback)
  • Storage: SQLite
  • Language: TypeScript

Development

# Clone
git clone https://github.com/mag123c/meeting-context-hub.git
cd meeting-context-hub

# Install
pnpm install

# Dev mode
pnpm dev

# Build
pnpm build

# Lint
pnpm lint

# Test
pnpm test

License

MIT