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

@robertdevore/paperclip-plugin-starred-issues

v0.1.1

Published

Personal starred issues for Paperclip with a sidebar page and issue-header toggle.

Readme

Starred Issues for Paperclip

Add personal starred issues to Paperclip: a Starred sidebar page, a star toggle in every issue header, and persistent per-user storage.

This is a published, ready-to-install Paperclip plugin.

Install the published plugin

Install it into a Paperclip instance with the Paperclip CLI or Plugin Manager:

paperclipai plugin install @robertdevore/paperclip-plugin-starred-issues
paperclipai plugin inspect robertdevore.paperclip-plugin-starred-issues

The inspection should report status=ready. Once installed, reload Paperclip if necessary. You will see Starred in the sidebar and a star button in each issue header.

Requirements

  • Paperclip with external plugin support.
  • A Paperclip host that provides the issueHeaderAction and issueIds extension points.
  • Node.js 20 or newer on the Paperclip host.

Use a Paperclip release that includes those extension points. The plugin uses Paperclip’s board-authenticated plugin API routes; in authenticated deployments, stars are personal to the signed-in user.

How it works

  • Open an issue and select the star button in the issue header.
  • Open Starred in the sidebar to see your starred issues.
  • Use the standard Paperclip issue-list controls on the Starred page.
  • Select the star button again to remove an issue from Starred.

The plugin stores only (user_id, issue_id, created_at) in its own issue_stars table. Duplicate stars are prevented by the composite primary key, and stars are removed automatically when an issue is deleted.

Local development

Clone the public repository when developing or testing changes locally:

git clone https://github.com/robertdevore/paperclip-starred-issues.git
cd paperclip-starred-issues
pnpm install
pnpm typecheck
pnpm test
pnpm build
paperclipai plugin install "$PWD"
pnpm dev

Paperclip watches the local plugin’s built dist/ files while pnpm dev is running. The repository uses the published @paperclipai/plugin-sdk, so a fresh clone does not require a local Paperclip checkout or ignored SDK snapshot.

Release maintenance

The npm package and GitHub repository are both public. Maintainers can publish a new release with:

npm version patch   # or minor / major
pnpm typecheck
pnpm test
pnpm build
npm pack --dry-run
git push origin main --follow-tags
npm publish --access public
gh release create vX.Y.Z --title "vX.Y.Z" --generate-notes

Verify the published package and release:

npm view @robertdevore/paperclip-plugin-starred-issues version
paperclipai plugin install @robertdevore/paperclip-plugin-starred-issues
paperclipai plugin inspect robertdevore.paperclip-plugin-starred-issues

The package tarball contains only the built plugin, migration, README, license, and package metadata. Source, tests, development SDK snapshots, and lockfiles are not included.

License

MIT