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

inside-the-build

v0.1.0-beta.1

Published

Local-first MCP server that turns Claude Code and Codex take-home sessions into an inspectable engineering process brief.

Readme

Inside the Build

Beta: Inside the Build is being tested with a small group of design partners. It is not a scoring system, an authorship detector, or a complete record of an engineer's work.

CI npm beta License Discord

Inside the Build is a local-first MCP server for engineering take-homes. It finds the Claude Code and Codex sessions associated with one Git repository, extracts prompts, visible assistant replies, and tool names, and asks the candidate's agent to write an inspectable process brief next to the submitted code.

The final repository shows what was built. Inside the Build adds evidence about how the work developed: decisions, corrections, verification steps, and candidate-specific topics for a follow-up conversation. The report describes events; it does not independently evaluate or recommend a hiring decision.

Five-minute setup

Requirements

  • macOS or Linux. Windows is not yet tested.
  • Node.js 20 or newer.
  • A Git repository. Plain downloaded folders are not supported unless initialized as Git.
  • Work completed with Claude Code or Codex. Other agents are not supported in this beta.

Run the matching command from the take-home repository:

# Claude Code — local to the current project
claude mcp add --scope local inside-the-build -- npx -y inside-the-build@beta

# Codex
codex mcp add inside-the-build -- npx -y inside-the-build@beta

After finishing the assignment, start a fresh Claude Code or Codex session in that repository. As the first request in the new session, invoke the submit_takehome prompt or tool. The agent will be instructed to save:

<repository>-inside-the-build.md

Open that file before sharing it. Prompts can contain credentials, personal information, or other sensitive text even though tool output and file contents are excluded.

See Getting started for removal commands, troubleshooting, and the full workflow.

What the report contains

  • A five-point summary of the work's overall arc.
  • Candidate-specific follow-up questions for a live conversation.
  • A model-written timeline based on the extracted sessions.
  • Receipts that point to quoted session events.
  • A diagnostic footer describing the tool versions, bytes read, and skipped sessions.

Read the synthetic example. It was written from invented fixture data and contains no candidate or employer information.

Data flow

Claude Code / Codex session files
              │
              ▼
  local project matching + extraction
              │
              ▼
 candidate's local coding agent writes Markdown
              │
              ▼
 <repository>-inside-the-build.md

Inside the Build has no application server, account system, database, upload, or runtime telemetry. It reads session files on the same machine and returns data through a local stdio MCP connection. Any later sharing of the Markdown file happens outside this project.

For the exact inclusion rules and important discovery behavior, read Data flow and privacy.

Read the limitations before using it

This beta has material limitations:

  • Cross-session chronology is not guaranteed by the current renderer.
  • Malformed JSONL lines can be omitted without an exact dropped-line count.
  • Receipt citations are requested but are not automatically verified in production.
  • Session text is untrusted input to the writing model and can contain prompt injection.
  • Reports vary by model and do not prove authorship, cheating, skill, or completeness.
  • There is no built-in secret redaction.

Treat every report as an inspectable draft and one input to a technical conversation. Read the complete Known limitations before a real hiring workflow.

For hiring teams

Use the report to ask better questions about a work sample: why an approach changed, how a failure was diagnosed, or what the candidate would do differently. Do not treat a missing, short, or malformed report as evidence that a candidate did no work. The project documents its data flow but does not prescribe an employer participation or consent policy.

The beta is referral-driven. Design partners can share onboarding friction and broader engineering-hiring pain points in Discord. Never post real candidate artifacts, raw sessions, credentials, or personal data in GitHub or Discord.

Project status

0.1.0-beta.1 is the first public beta. The current release deliberately prioritizes documentation, packaging, contribution infrastructure, and design-partner learning. Known correctness work is tracked in the Roadmap.

Development

bun install --frozen-lockfile
bun test
bun run typecheck
bun run build
bun run check:package

Runtime code under src/ must work under plain Node.js. Bun is used for development and tests only. Contributions require passing checks and a Developer Certificate of Origin sign-off; see CONTRIBUTING.md.

License

Licensed under the Apache License 2.0.