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

eztweak

v0.1.0

Published

Annotate your live dev app in the browser; feedback flows to your local coding agent, which edits the source. Review, iterate, repeat.

Downloads

154

Readme

eztweak

Point at your live app. Your agent fixes it.

eztweak turns any locally running dev server into an annotatable review surface for human ↔ agent iteration. The user marks up the real page — click an element, select some text, leave a comment — and the feedback flows to a local coding agent (Claude Code, Codex, anything that can run a CLI) as structured items that resolve to exact source locations. The agent edits the code, HMR updates the page in place, the user reviews the next round.

$ npx -y eztweak http://localhost:5173/pricing   # opens the review shell
$ npx -y eztweak poll http://localhost:5173/     # agent blocks here until you hit send
  • Zero config. A local daemon reverse-proxies your dev server and injects the annotation overlay. No code changes, no build plugins required, works with any framework.
  • Anchored feedback. Annotations carry a layered anchor: file:line (with the optional Vite plugin), React component chain, data-section, CSS selector, text, viewport. Agents stop guessing which part of the page you meant.
  • Built for the loop. Batch annotations, send once; the agent's poll is a blocking CLI call that prints structured JSON — the same portable contract as an AXI. HMR keeps iterations in place; the review chrome lives outside the app frame, so it survives your agent's syntax errors.
  • Local-first. Everything binds to 127.0.0.1. Nothing leaves your machine.

Install

Nothing to install — npx -y eztweak is enough. For agents, add the bundled skill:

npx skills add cychien/eztweak --skill eztweak

Optional, for exact file:line anchors in Vite + React projects:

// vite.config.ts
import { eztweakSource } from 'eztweak/vite'

export default defineConfig({
  plugins: [eztweakSource(), react()],
})

Dev-only (apply: 'serve') — it never touches production builds.

Status

Early. On the roadmap: diff-derived Keep/Undo, screenshots, layout-issue detection, ACP mode.

License

MIT