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

@honeycrisp/context

v0.1.2

Published

The context layer, M1: derived metadata + pointers over Mail, served over MCP. Pointers, not copies.

Downloads

573

Readme

honeycrisp-context

The context layer, milestone 1. A local store of derived metadata and pointers over Apple Mail — never copies. See docs/04_context_layer.md for the full design.

Pointers, not copies

context.db (created mode 600) holds headers, a people graph, and Message-ID pointers. There is no body column in any table — a test enforces this. Content is fetched live through honeycrisp-mail by consumers who hold that permission; the serve layer itself needs no Mail access at all.

Usage

honeycrisp-context capture   # one incremental sweep (headers only, ~seconds)
honeycrisp-context serve     # MCP server: context_changes, context_person,
                           # context_capture_now
  • context_changes — what's new since a point in time: volume, senders, newly seen people, active subjects. Deterministic; every claim cites Message-IDs.
  • context_person — interaction profile: counts, first/last seen, recent message pointers.
  • context_capture_now — on-demand sweep (write-safe: it writes only the local store).

Capture keeps per-mailbox cursors, backfills 90 days on first run, and audits every sweep (counts only) to the suite's shared audit DB. Schedule it with launchd (or any timer) for continuous capture; a missed run just widens the next sweep.

The briefing pipeline (M2–M4)

honeycrisp-context brief <dir> runs the full cycle: ingest corrections from prior briefing files → extract commitments from recent sent mail (Layer 1) → answer standing questions → write today's briefing.

  • Standing questionsstanding-questions.yaml in the Briefings folder (phone-editable). Deterministic candidates always; a configured model writes cited answers over fenced header data.
  • Layer 1 is opt-in and declaredcontext.json: {"model": {"type": "ollama", "model": "..."}} (local) or {"type": "command", "run": ["...your llm cli..."], "network": true}. network defaults to true — egress is assumed unless declared otherwise — and every Layer-1 run writes an audit row carrying the declaration. No config → deterministic only; nothing is guessed. Model-invented pointers are rejected; a failing model degrades to candidates, never a crash.
  • The flywheel — briefing items carry stable ids; tick a checkbox from any device (or add lines under ## Corrections) and the next run ingests them as judgments: muted senders/subjects/items disappear from future briefings while the AI-layer rows stay immutable.

Retention

Derived rows age out on capture: messages, events, and extracted commitments older than retentionDays (default 365) are pruned; set {"retentionDays": 0} in context.json to keep everything forever. People aggregates and human judgments are never pruned at any age — deleting a human's recorded judgment is not the machine's call. Every prune writes an audit row with counts.