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

@marsbdigital/paperclip-content-sprint-plugin

v0.1.3

Published

Content Sprint AI — generate a batch of social posts from product context for Paperclip.

Downloads

447

Readme

Content Sprint AI (Paperclip plugin)

npm package @marsbdigital/paperclip-content-sprint-plugin — generates five structured social posts from product context (two authority, two engagement, one conversion) for LinkedIn or X (Twitter).

Latest release: 0.1.3 — labeled form fields, id/htmlFor, modal aria-labelledby, and explicit light-theme colors for readable UI on dark Paperclip shells. Upgrade from 0.1.1 / 0.1.2 via Install Plugin or reinstall the package.

Paperclip manifest id

The host requires plugin ids to match ^[a-z0-9][a-z0-9._-]*$. This plugin’s manifest id is marsbdigital.paperclip-content-sprint-plugin (see plugin.json). The scoped npm name stays @marsbdigital/paperclip-content-sprint-plugin.

This manifest does not set minimumHostVersion. That field is optional; official Paperclip example plugins omit it unless a host feature truly requires a floor. Do not copy npm package versions like 2026.x.x from @paperclipai/* into minimumHostVersion — those are unrelated versioning schemes.

Layout

| Path | Role | |------|------| | plugin.json | Manifest snapshot (also bundled into dist/manifest.js) | | src/index.ts | Worker: definePlugin, tool generate_content_batch, action generate_content_sprint, job run_content_sprint | | src/manifest.ts | Default export consumed by the build | | src/server/tools/generateContentBatch.ts | Zod validation + stub post generator (swap for an LLM later) | | src/server/jobs/runContentSprint.ts | Job handler with placeholder input | | src/ui/ToolbarButton.tsx | globalToolbarButton slot — ⚡ Content Sprint | | src/ui/ContentSprintPanel.tsx | dashboardWidget — form, generate, loading, output |

Where the UI appears (important)

Instance Settings → Plugins (and most operator / “settings-only” layouts) usually use a different shell than the main company workspace. The globalToolbarButton slot is wired to the main app top bar (the strip with breadcrumbs such as Company > …), not to the Plugin Manager screen.

  • ⚡ Content Sprint (globalToolbarButton) — Open a company workspace route (e.g. Dashboard, Issues, Projects, Goals) and check the top bar next to breadcrumbs. You should not expect this button on Settings → Plugins or other instance-admin pages that omit that chrome.
  • Content Sprint AI (dashboardWidget) — Renders on the company Dashboard as a card/widget, not on the Plugin Manager list.

Official examples: Hello World only registers dashboardWidget. Kitchen Sink registers toolbarButton on project/issue pages but does not use globalToolbarButton. This plugin’s manifest declares exportName: "ToolbarButton", which matches export { ToolbarButton } from src/ui/index.tsx.

Scripts

npm install
npm run build    # dist/index.js (worker), dist/manifest.js, dist/ui/
npm run typecheck

Host integration

package.json includes:

"paperclipPlugin": {
  "manifest": "./dist/manifest.js",
  "worker": "./dist/index.js"
}

Install per Paperclip plugin docs; UI entry directory is dist/ui as declared in the manifest.

Capabilities

  • agent.tools.registergenerate_content_batch
  • jobs.schedulerun_content_sprint (weekly cron in manifest)
  • ui.action.register — toolbar button
  • ui.dashboardWidget.register — dashboard widget