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

@appfire-ux/guidelines

v0.2026.508

Published

UX design system guidelines for AI coding assistants building Appfire apps in the Atlassian ecosystem

Readme

Appfire UX Guidelines for Cursor

UX design system guidelines that make AI coding assistants (Cursor, Copilot, Codex) aware of Atlassian Design System foundations, content writing rules, messaging patterns, accessibility standards, and user personas.

Drop this kit into any repo building Appfire apps in the Atlassian ecosystem and your AI assistant will follow ADS guidelines automatically.

Quick start

Option A: npm (recommended)

npm install @appfire-ux/guidelines

This automatically copies .cursor/rules/ux-*.mdc and guidelines/ into your project root. To refresh after an update:

npx @appfire-ux/guidelines

Option B: Manual copy

git clone https://github.com/fuegokit/appfire-ux-guidelines.git

cp -r appfire-ux-guidelines/.cursor/rules/ux-*.mdc  <your-repo>/.cursor/rules/
cp -r appfire-ux-guidelines/guidelines/              <your-repo>/guidelines/

See guidelines/INSTALL.md for detailed setup, customization, and how the three-layer architecture works.

What's inside

.cursor/rules/ — AI rules (auto-loaded by Cursor)

| Rule | Activation | What it covers | |------|-----------|---------------| | ux-foundations.mdc | Always on | Color tokens, spacing (8px grid), typography, elevation, accessibility | | ux-content-writing.mdc | *.tsx, *.ts | Voice & tone, grammar, inclusive language, date/time formatting | | ux-messaging.mdc | *.tsx | Error/warning/success/info/empty state/feature discovery patterns | | ux-icons-visuals.mdc | *.tsx | Icons, illustrations, logos, border, radius | | ux-personas.mdc | Always on | 18 user personas, app-to-persona mapping, when to consult |

guidelines/ — Deep reference (read on demand)

  • foundations/ — 29 files covering ADS visual styles (color, typography, spacing, elevation, border, radius, iconography, illustrations, logos), accessibility, and content guidelines (voice & tone, grammar, inclusive writing, date/time, 6 message type patterns)
  • personas/ — 18 synthetic user personas with motivations, frustrations, evaluation criteria, and tone. Plus app-to-persona mapping for all Appfire products.
  • Guidelines.md — Implementation guide with code examples (adapt to your stack)

How it works

Layer 1: .cursor/rules/ux-*.mdc  →  Cursor auto-loads these on every session
                                      Short, imperative rules with file references
                                             ↓
Layer 2: AGENTS.md (your repo)   →  Navigation map for AI agents
                                             ↓
Layer 3: guidelines/              →  Agent reads on demand when it needs depth
                                      Full ADS foundations + personas

The rules in Layer 1 contain condensed guidelines and explicit Full reference: links to Layer 3 files. When the AI agent needs more detail, it follows the link and reads the full guideline.

Keeping up to date

This repo is automatically synced from the source design system repo and published to npm.

npm — update the package and re-run the install script:

npm update @appfire-ux/guidelines
npx @appfire-ux/guidelines

Manual — pull and re-copy:

cd appfire-ux-guidelines && git pull
cp -r .cursor/rules/ux-*.mdc  <your-repo>/.cursor/rules/
cp -r guidelines/              <your-repo>/guidelines/

Source

Synced from fuegokit/appfire-ai-template. Guidelines based on atlassian.design.