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

gigaplan

v0.4.1

Published

Review agent-authored implementation plans in a GitHub-PR-style browser UI. Agents write plain Markdown; gigaplan renders, themes, and collects structured feedback.

Readme

gigaplan

Review agent-authored implementation plans in a browser, styled as a proper review tool rather than a wall of terminal text. Agents only ever write plain Markdown; gigaplan does all the rendering itself — numbered sections, per-step inline comments, a review-coverage sidebar, and a finish-your-review panel (Approve / Approve with comments / Request changes) — then hands the structured feedback back to the agent to act on.

gigaplan on npm · gigaplan on skills.sh

Quickstart

No install needed — try it against any Markdown file:

npx -y gigaplan review path/to/plan.md   # opens a browser tab to review it
npx -y gigaplan poll path/to/plan.md     # blocks until submitted, then prints the feedback
npx -y gigaplan end path/to/plan.md      # marks the session done

See "How it works" below for what happens at each step, or "CLI" for the full command reference.

Installing the skill

The point of gigaplan is for an agent — any agent, not tied to one product — to drive this loop on your behalf: write the plan, open it for you, wait for your review, and revise based on your comments, looping until you approve it. Install the skill so it's picked up automatically, without you needing to invoke anything by name:

npx skills add https://github.com/corradodellorusso/gigaplan --skill gigaplan

skills/gigaplan/SKILL.md documents the exact workflow and CLI contract an agent follows — read it if you want to know precisely what happens under the hood.

How it works

agent writes plan.md (plain Markdown, never HTML)
  -> npx -y gigaplan review <path>    opens a browser tab rendering the plan as
                                       numbered sections (## headings), each with
                                       per-item inline comments
  -> reviewer comments on specific steps and/or leaves overall feedback, then
     selects Approve / Request changes and submits
  -> npx -y gigaplan poll <path>      blocks, then prints the review as compact markdown
  -> agent revises plan.md and loops back to `review` (reopens the same tab) until approved
  -> npx -y gigaplan end <path>       marks the session done

Live-reload: edit the plan file while the tab is open and it updates without a manual refresh. A comment anchored to a section whose text changed is flagged "content changed since this comment was left"; a comment on a deleted section is kept, not silently dropped, in a "Comments on removed content" area.

The UI itself follows the "Belief" design system (a Notion-style document-editor look; light-only in its source, with gigaplan's own dark theme added on top) — see public/chrome.css for the theme and skills/gigaplan/SKILL.md for the review workflow it supports.

CLI

gigaplan review <path>   Open (or reuse) the browser review session for this plan file.
gigaplan poll <path>     Block until a review is submitted; print it as compact markdown.
gigaplan end <path>      Mark the review session done (the shared local server stays up;
                         it shuts itself down after a period of inactivity — see below).
gigaplan stop            Stop the shared local server immediately, if one is running.

Configuration

| Env var | Default | Purpose | | --- | --- | --- | | GIGAPLAN_PORT | 4873 | Port the shared local server binds to (loopback-only). | | GIGAPLAN_IDLE_TIMEOUT_MS | 1800000 (30 min) | How long the server stays up with no requests before it shuts itself down. | | GIGAPLAN_HOME | ~/.gigaplan | Where session records and the server's pid/port lock are stored. |

Contributing

Working from a local checkout instead of the published package:

npm install        # also builds it — see the `prepare` script
node bin/gigaplan.js review path/to/plan.md   # or `npm link` once, then plain `gigaplan ...`
npm run typecheck # tsc --noEmit against both the server and client TypeScript
npm test          # node:test, run directly against .ts sources via tsx
npm run test:ui   # Playwright-driven browser UI tests (test/ui/*.test.ts); run
                   # `npx playwright install chromium` once first
npm run build     # compiles src/*.ts -> dist/, client/chrome.ts -> public/chrome.js

Read CLAUDE.md first — it covers the architecture (why the project is ESM-only, the two separate TypeScript compilations for server vs. browser code, the request flow through the server, how comment anchoring and live-reload reconciliation work) and what manual verification still looks like for the one part of the codebase test suites don't cover (the CLI process lifecycle — the browser UI itself is covered by npm run test:ui).