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

md-feedback-ui

v0.3.0

Published

Browser-based multi-file markdown review UI with inline commenting and screenshot support

Readme

md-feedback-ui

Browser-based markdown review UI with inline commenting and screenshot support. Designed for reviewing plans, specs, and documentation — especially with Claude Code.

md-feedback-ui screenshot

Features

  • GitHub-flavored Markdown rendering with Mermaid diagram support
  • Inline block-level commenting on any markdown element
  • Screenshot attachments via paste or drag-and-drop
  • Multi-file tabs with speckit ordering (spec, plan, tasks, then alphabetical)
  • Structured JSON output (.review.json) for automation
  • Zero-config: npx and go

Quick Start

npx md-feedback-ui ./docs/plan.md

This opens a browser-based review UI. Add comments inline, attach screenshots, and click Submit. The tool writes a .review.json file next to the input and exits.

Claude Code Integration

Install the skill so Claude Code can launch reviews:

# Add to current project
npx md-feedback-ui --install-skill

# Or add globally (all projects)
npx md-feedback-ui --install-skill --global

Then in Claude Code, use the skill:

/md-feedback-ui path/to/plan.md

Workflow:

  1. Claude launches the review server
  2. You review and comment in the browser, then submit
  3. The server writes .review.json and exits
  4. Claude reads the structured feedback and addresses each comment

CLI Reference

md-feedback-ui <file-or-directory...> [options]
md-feedback-ui --install-skill [--global]

| Option | Description | |--------|-------------| | --no-open | Don't auto-open the browser | | --install-skill | Install the Claude Code skill to .claude/commands/ | | --global | With --install-skill, install to ~/.claude/commands/ | | --version | Show version number | | --help | Show help |

Examples

md-feedback-ui plan.md                    # Single file
md-feedback-ui docs/                      # All .md files in directory
md-feedback-ui spec.md plan.md tasks.md   # Multiple files

Output Format

The .review.json file contains structured feedback:

{
  "reviewedFiles": ["spec.md", "plan.md"],
  "submittedAt": "2026-03-29T12:00:00.000Z",
  "comments": [
    {
      "file": "plan.md",
      "startLine": 10,
      "endLine": 14,
      "blockType": "paragraph",
      "selectedText": "The text of the block being commented on",
      "comment": "This needs more detail about error handling",
      "screenshots": ["path/to/screenshot.png"]
    }
  ]
}

Development

git clone https://github.com/elithompson/md-feedback-ui.git
cd md-feedback-ui
npm install

# Start dev servers (Vite frontend + Express API)
npm run dev                    # In one terminal
npx tsx src/server/index.ts test-fixtures/ --no-open  # In another

# Run checks
npm run check                  # typecheck + lint + test

Requirements

Node.js >= 18.0.0

License

MIT