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

@viasay.io/cursor-agents

v1.0.6

Published

AI-powered team of agents for feature development in Cursor IDE

Readme

@viasay.io/cursor-agents

AI-powered team of agents for feature development in Cursor IDE.

Overview

This package installs a team of specialized AI agents that work together to handle the complete software development lifecycle - from requirement analysis to deployment.

The Team

| Trigger | Agent | Role | |---------|-------|------| | @team | ViaSay | Orchestrator - Coordinates the team | | @analyst | Louis | Analyst - Tech specs, JIRA, planning | | @builder | MindSay | Builder - Code implementation | | @reviewer | Laiye | Reviewer - Code quality | | @publisher | Destygo | Publisher - PRs, deployment |

Installation

Using npx (recommended)

# Install to current project
npx @viasay.io/cursor-agents install

# Install to specific path
npx @viasay.io/cursor-agents install --path ./my-project

# Force overwrite existing files
npx @viasay.io/cursor-agents install --force

Global installation

npm install -g @viasay.io/cursor-agents
cursor-agents install

What Gets Installed

The CLI creates a .cursor directory with:

.cursor/
├── rules/
│   ├── team--viasay.mdc      # @team - Orchestrator
│   ├── team--louis.mdc       # @analyst - Analyst
│   ├── team--mindsay.mdc     # @builder - Builder
│   ├── team--laiye.mdc       # @reviewer - Reviewer
│   ├── team--destygo.mdc     # @publisher - Publisher
│   └── team--shared.mdc      # Shared protocols
├── team/
│   ├── config.yaml           # Team configuration
│   ├── protocols/            # Handoff & workflow protocols
│   ├── templates/            # JIRA, PR, tech spec templates
│   └── state/                # Feature state tracking
└── docs/
    └── team/                 # Team documentation

Quick Start

Once installed, use the agents in Cursor:

Start a New Feature

@team I want to add user authentication

or use the command:

@team [NF] Add user authentication

Quick Bug Fix

@team [QF] Fix login button not working on mobile

Check Status

@team [STATUS]

Workflows

New Feature [NF]

Complete development cycle:

  1. Louis - Analysis, JIRA ticket, tech specs
  2. MindSay - Implementation, tests, commits
  3. Laiye - Code review, quality check
  4. Destygo - PR, merge, deployment

Quick Fix [QF]

Fast bug fix:

  1. MindSay - Fix, test
  2. Laiye - Quick review
  3. Destygo - PR, merge

Documentation [DOC]

Docs only:

  1. Louis - Write docs
  2. Laiye - Review
  3. Destygo - Publish

Integrations

The agents use MCP (Model Context Protocol) to interact with:

  • JIRA - Ticket management
  • GitHub - Version control, PRs
  • Notion - Technical documentation

Configuration

After installation, edit .cursor/team/config.yaml to customize:

  • JIRA project key and settings
  • GitHub repository details
  • Notion workspace and databases
  • Workflow settings

Commands

Available Commands

cursor-agents install [options]    Install cursor agents
cursor-agents --version            Show version
cursor-agents --help               Show help

Install Options

| Option | Description | |--------|-------------| | -p, --path <path> | Target installation path (default: current directory) | | -f, --force | Force overwrite existing files |

Requirements

  • Node.js >= 16.0.0
  • Cursor IDE with agent rules support
  • MCP servers configured for JIRA, GitHub, Notion (optional)

License

MIT

Contributing

Contributions welcome! Please read the contributing guidelines first.

Support