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

@frames-ag/frame

v0.3.2

Published

The open format for live, evidence-backed datasets — protocol, CLI, and curation MCP server.

Downloads

535

Readme

frame

The open format for live, evidence-backed datasets.

A frame is a directory containing a curated dataset, an event log of every change, and the schema that defines what belongs in it. Curators (humans or agents) mutate frames through a typed MCP curation server that enforces invariants at write time — no anonymous data, no silent overwrites, no deletions.

The format is portable: copy the directory, you have the dataset. The engine is plain: events.ndjson + git + a SQLite projection. The interface is agents-first: every harness that speaks MCP can curate.

Documents

  • PROTOCOL.md — what bytes are on disk. The file format spec.
  • MCP.md — the curation surface. Nine tools, enforced invariants.
  • PLAN.md — staged implementation plan + progress.

These are versioned semver and are the contract another implementer would honor. Everything else in this repo is one valid implementation, not the protocol.

Install

npm install -g @frames-ag/frame      # or: bun add -g @frames-ag/frame

Runtime: Node 20+ or Bun 1.0+. Same package works on both.

Quickstart

# create a frame
frame init my-dataset
cd my-dataset
# edit README.md and schema.yml

# generate a project-scoped MCP config (one command, no paths)
frame init-mcp

# any MCP client launched from this directory now sees a `frame-<name>` server
# with 9 curation tools — see MCP.md for the surface contract.

That's the entire setup. Drop into a frame directory, run frame init-mcp, point your agent harness (Claude Code, OpenCode, agent-os, …) at the project — done.

When you want to inspect the dataset directly:

frame query           # all rows (defaults to cwd)
frame query --entity acme-fi
frame query --field hq_country=DE
frame query --sql "SELECT * FROM all_sources WHERE entity_id = 'acme-fi'"
frame doctor          # health check
frame project         # regenerate the SQLite index after manual edits

All path arguments default to the current working directory.

Use as an MCP server in any client

If you'd rather hand-write the config, here's what frame init-mcp produces:

{
  "mcpServers": {
    "frame-my-dataset": {
      "command": "npx",
      "args": ["-y", "@frames-ag/frame", "serve"],
      "env": { "FRAME_AGENT": "claude:opus-4.7" }
    }
  }
}

The MCP server runs against whatever directory the client launches it in. Place this .mcp.json next to your frame's schema.yml.

Status

Stage 0 (skateboard). One person, one frame, one machine. See PLAN.md for staged scope.