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

@vlbog/paperclip-plugin-workflow-studio

v0.1.3

Published

Visual workflow editor that publishes Paperclip Company Skills

Readme

Workflow Studio

Visual workflow editor that publishes Paperclip Company Skills

Requirements

  • Node.js 20+
  • pnpm 9+
  • Paperclip v2026.416.0 or newer

Current Paperclip server builds can report host version 0.0.0 during plugin install validation. Because of that, the plugin manifest does not currently enforce a minimum host version, even though the recommended baseline remains Paperclip v2026.416.0 or newer.

Scaffold a New Plugin Repo

If you want to generate a fresh standalone Paperclip plugin from the official scaffolder:

npx @paperclipai/[email protected] my-plugin

Publish to npm

The package name for Plugin Manager install is:

@vlbog/paperclip-plugin-workflow-studio

Publish flow:

npm login
pnpm install
pnpm test
pnpm typecheck
pnpm pack:check
pnpm publish --access public --no-git-checks

Install Dependencies

pnpm install

Test

pnpm test
pnpm typecheck
pnpm build

Local UI Dev Server

pnpm build
pnpm dev:ui

The plugin dev server listens on http://127.0.0.1:4177.

Install Into Paperclip

Build the plugin first:

pnpm build

Then install it into a running local Paperclip instance:

curl -X POST http://127.0.0.1:3100/api/plugins/install \
  -H "Content-Type: application/json" \
  -d '{"packageName":"/Users/vladislavbogdan/Documents/Вайб-проекты/NoHum/paperclip-plugin-workflow-studio","isLocalPath":true}'

After installation, open the active company in Paperclip and launch Workflow Studio from the plugin launcher.

Install From Plugin Manager

In Paperclip Plugin Manager -> Install Plugin, enter:

@vlbog/paperclip-plugin-workflow-studio

You can also install a specific published version through the API:

curl -X POST http://127.0.0.1:3100/api/plugins/install \
  -H "Content-Type: application/json" \
  -d '{"packageName":"@vlbog/paperclip-plugin-workflow-studio","version":"0.1.3"}'

Manual Smoke Test

  1. Create a workflow.
  2. Add or edit a node in the inspector.
  3. Save the workflow.
  4. Verify the preview updates.
  5. Publish to Company Skills.
  6. Open the created skill from the publish panel.
  7. Open Workflow Studio from the company sidebar entry and verify the page renders as a native company section.

Update an Installed Plugin

  1. Bump the package version.
  2. Publish the new npm version.
  3. Upgrade the installed plugin:
curl -X POST http://127.0.0.1:3100/api/plugins/<plugin-id>/upgrade \
  -H "Content-Type: application/json" \
  -d '{"version":"0.1.3"}'

Paperclip resolves the new npm version, validates the manifest, and updates the existing installed plugin record. If the new version requests additional capabilities, the upgrade is blocked until that escalation is approved.

Install Troubleshooting

If Plugin Manager keeps showing an old manifest-related install error after a new package version is already present in ~/.paperclip/plugins/node_modules, the running Paperclip server process may still be holding an older plugin manifest in module cache. Restart paperclip.service and retry the install.

Build Options

  • pnpm build uses esbuild presets from @paperclipai/plugin-sdk/bundlers.
  • pnpm build:rollup uses rollup presets from the same SDK.