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

paperclip-micronaut-plugin

v0.4.1

Published

Micronaut release-branch dashboard and merge-up automation for Paperclip projects.

Readme

Micronaut Plugin

CI Release Node >=20 pnpm 10 License: MIT

Micronaut-focused Paperclip plugin that turns a project detail tab into a release cockpit: see the current and next version at a glance, inspect the default and upcoming release branches, create missing branches, and kick off merge-up work from inside Paperclip.

What You Get

  • A project-scoped Micronaut branches detail tab for repositories in the micronaut-projects GitHub organization
  • Current version from the latest GitHub release tag, normalized to plain semver
  • Next version derived from projectVersion in the repository's gradle.properties
  • Branch rows for the default branch plus the next minor and next major release lines
  • Ahead/behind, diverged, missing, and version-alignment signals for each tracked branch
  • A one-click Create branch action for missing upcoming branches
  • A Merge up workflow that creates a real Paperclip issue, assigns it to a selected agent, and requests a Paperclip-managed assignment wakeup
  • Cached project snapshots with a Last checked indicator and manual refresh

Requirements

  • Node.js 20 or newer
  • A Paperclip instance with plugin support, version 2026.517.0 or newer
  • A Paperclip project backed by a GitHub repository in the micronaut-projects organization
  • Outbound access to the GitHub API from the plugin worker
  • gh installed and authenticated on the Paperclip host if you want host-side branch creation and the GitHub CLI fallback path

Install

Install the published package into Paperclip:

paperclipai plugin install paperclip-micronaut-plugin

Pin a specific npm version if needed:

paperclipai plugin install paperclip-micronaut-plugin --version <version>

Install from a local checkout during development:

paperclipai plugin install --local .

Quick Start

  1. Install the plugin in Paperclip.
  2. Open a Paperclip project whose repository lives under micronaut-projects.
  3. Open the Micronaut branches detail tab on that project.
  4. Review the current version, next version, and branch health for the default, next minor, and next major lines.
  5. Use Refresh to pull a fresh snapshot when needed.
  6. Use Create branch when an expected future line does not exist yet.
  7. Use Merge up to create and assign a Paperclip issue that tracks the merge from one branch into the next.

How It Works

The tab combines GitHub repository metadata with Paperclip-native workflow state:

  • Current version comes from the latest GitHub release tag.
  • Next version comes from projectVersion in the repository root gradle.properties on the default branch.
  • Branch cards show last-updated data, ahead/behind status, and whether projectVersion matches the expected release-line value such as 4.2.0-SNAPSHOT.
  • Create branch uses the GitHub CLI on the Paperclip host so branch creation happens with the operator's existing GitHub auth.
  • Merge up creates a real Paperclip issue in todo, stamps it with Micronaut plugin origin and billing metadata, remembers the preferred assignee per company, and keeps the row linked to the issue until it closes.
  • Assignment wakeups use Paperclip's issue wakeup API so scheduler, blocker, budget, and liveness checks stay in the host workflow instead of bypassing it with a direct agent invocation.
  • PR chips appear when the assigned agent comments on that issue with a GitHub pull request URL.

For unsupported repositories, the hosted tab stays out of the way instead of rendering misleading fallback chrome.

Security And Privacy

  • The plugin only requests the capabilities it needs for project reads, agent reads, issue reads/creation/wakeups, plugin state, outbound HTTP, and the hosted detail tab registration.
  • Repository metadata is fetched from GitHub and cached in Paperclip plugin state to avoid unnecessary repeat requests.
  • The plugin shells out to gh with explicit argv arguments instead of a shell command string, which reduces command-injection risk.
  • gh is only needed for host-side branch creation and recoverable GitHub API fallback calls.
  • Merge-up tracking stores lightweight operational metadata in plugin state and uses native Paperclip issues plus host-owned assignment wakeups for the actual work item.

Development

From the repository root:

pnpm install
pnpm typecheck
pnpm test
pnpm build

Additional verification commands:

  • pnpm test:e2e for the headless Paperclip smoke flow
  • pnpm verify:manual for an interactive local verification run

Both verification harnesses explicitly enable board approval for the disposable company, seed their test agents through Paperclip's board-governed hire flow, and approve pending hires before installing the local plugin. They also create the disposable Git-backed project with isolated issue workspaces enabled so merge-up issues exercise the current Paperclip project defaults.

Release

  • Pull requests and pushes to main run GitHub Actions CI for typecheck, tests, build, and npm pack --dry-run.
  • Published GitHub releases trigger the npm publish workflow.
  • The release workflow derives the package version from the GitHub tag, writes that version into package.json, verifies the publish surface, and then publishes with provenance enabled.

License

MIT