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

@gaud_erp/paperclip-frontend-skills

v1.1.1

Published

Paperclip plugin that provides curated frontend skills for AI agents — design engineering, UI polish, animations, and more

Readme

@gaud_erp/paperclip-frontend-skills

Paperclip plugin that injects curated frontend skills into your AI agents. Skills are automatically reconciled for all companies — install the plugin once and every agent gains access to battle-tested design and UX knowledge.

Included Skills

Design Engineering (Emil Kowalski)

Based on the philosophy behind Sonner (13M+ weekly npm downloads) and Vaul.

  • Animation decision framework (when, how fast, what easing)
  • Custom easing curves and spring animations
  • Component building principles (buttons, popovers, tooltips, drawers)
  • CSS transform mastery (clip-path, @starting-style, translateY)
  • Gesture and drag interactions with momentum
  • Performance rules (transform/opacity only, WAAPI, hardware acceleration)
  • Accessibility (prefers-reduced-motion, touch device hover states)
  • Review checklist with Before/After table format

UI/UX Pro Max

Comprehensive design intelligence with 99+ rules organized by priority.

  • Accessibility (CRITICAL) — contrast 4.5:1, focus states, ARIA labels, keyboard nav
  • Touch & Interaction (CRITICAL) — 44x44pt targets, loading feedback, gesture conflicts
  • Performance (HIGH) — WebP/AVIF, lazy loading, CLS < 0.1, virtualized lists
  • Style Selection (HIGH) — style matching, platform-adaptive, dark mode pairing
  • Layout & Responsive (HIGH) — mobile-first, spacing scale, z-index management
  • Typography & Color (MEDIUM) — font scale, semantic tokens, contrast pairs
  • Animation (MEDIUM) — 150-300ms timing, spring physics, stagger sequences
  • Forms & Feedback (MEDIUM) — inline validation, error recovery, progressive disclosure
  • Navigation (HIGH) — bottom nav limits, back behavior, deep linking
  • Charts & Data (LOW) — chart type matching, accessible colors, responsive charts
  • Pre-delivery checklist for visual quality, interaction, light/dark mode, layout, and accessibility

Installation

npm install @gaud_erp/paperclip-frontend-skills

Then install in Paperclip via the plugin settings page or CLI.

How It Works

The plugin declares managed skills and reconciles them on startup for all existing companies. New companies receive the skills automatically via the company.created event.

Plugin starts → reconcile skills for all companies
New company created → reconcile skills for that company

No configuration needed. No database. No UI. Just skills.

Adding New Skills

  1. Add a .md file in src/skills/ with the skill content (no YAML frontmatter)
  2. Create a .ts file that imports the markdown and exports the skill definition:
    // @ts-ignore — esbuild text loader
    import markdown from "./my-skill.md";
    
    export const mySkill = {
      skillKey: "my-skill",
      displayName: "My Skill",
      description: "What this skill teaches agents",
      markdown,
    } as const;
  3. Re-export from src/skills/index.ts
  4. Add to the skills array in src/manifest.ts
  5. Import and add the skill key to SKILL_KEYS in src/worker.ts
  6. npm run build and publish

Development

npm install
npm run build

License

MIT