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 🙏

© 2025 – Pkg Stats / Ryan Hefner

roo-team-setup

v1.0.1

Published

Setup tool for Roo multi-agent framework workspace

Readme

Roo Team Setup

A command-line tool to quickly set up the Roo multi-agent framework workspace in your project.

What is Roo?

Roo is a structured, transparent, and well-documented AI team that delegates its own tasks. It's a comprehensive AI workflow system based on the SPARC framework, enabling efficient task delegation, structured documentation, and knowledge preservation.

Learn more at: The Ultimate Roo Code Hack

Installation & Usage

Using npx (recommended)

The easiest way to use this tool is with npx, which runs it without installing:

npx roo-team-setup

Installing globally

Alternatively, you can install the tool globally:

npm install -g roo-team-setup

Then run it anytime:

roo-team-setup

What Gets Created

The tool prompts you to choose between:

Full Project Setup

Creates a complete Roo framework structure:

/
├── .roo/                     # Configuration files
│   ├── rules/                # General rules
│   ├── rules-orchestrator/   # Mode-specific rules
│   ├── rules-code/
│   ├── ...other mode rules
│   ├── config.json           # Framework configuration
│   └── logs/                 # Log directories
├── .roomodes                 # Mode definitions for VSCode
├── agents/                   # Agent definitions
│   ├── orchestrator/
│   ├── code/
│   └── ...other agents
├── framework/                # Framework documentation
├── best-practices/           # Best practices guides
└── templates/                # Reusable templates

Configuration Only

Creates just the essential configuration files:

/
├── .roo/                     # Configuration files
│   ├── rules/                # General rules
│   ├── rules-*/              # Mode-specific rules
│   ├── config.json           # Framework configuration
│   └── logs/                 # Log directories
└── .roomodes                 # Mode definitions for VSCode

Available Modes

The setup includes configuration for these specialized modes:

  • 🪃 Orchestrator: Task decomposition, assignment, and verification
  • 💻 Code: Software implementation and optimization
  • 🏛️ Architect: System design and pattern application
  • ❓ Ask: Information retrieval, evaluation, and communication
  • 🪲 Debug: Problem diagnosis and solution validation
  • 💾 Memory: Knowledge storage, organization, and retrieval
  • 🔍 Deep Research: In-depth investigation and analysis

Requirements

  • Node.js 14 or newer
  • Compatible AI assistant that supports custom modes

License

MIT

For Package Maintainers

If you're maintaining this package and need to publish it to npm, follow these steps to set up authentication:

Setting up NPM_TOKEN in GitHub Secrets

  1. Create a new npm access token:

    • Go to your npm account settings at https://www.npmjs.com/settings/your-username/tokens
    • Click "Generate New Token" → "Classic Token"
    • Select "Automation" as the token type (gives publish access)
    • Copy the generated token
  2. Add token to GitHub repository secrets:

    • Go to your GitHub repository → Settings → Secrets and variables → Actions
    • Click "New repository secret"
    • Name: NPM_TOKEN
    • Value: Paste your npm token
    • Click "Add secret"
  3. Verify workflow file:

    • Make sure the GitHub Actions workflow in .github/workflows/npm-publish.yml is using the correct secret name

After setting up the token, any pushes to the main branch that modify files in the roo-team-setup directory will trigger an automatic publish to npm with an incremented version number.

Troubleshooting Tools

This package includes diagnostic tools to help troubleshoot npm publishing issues:

1. Workflow Status Checker

Check the status of GitHub workflow runs and analyze failures:

# Export your GitHub token first
export GITHUB_TOKEN=your_github_personal_access_token
npm run check-workflow

This tool will:

  • List recent workflow runs
  • Show detailed information about failed runs
  • Provide specific guidance for npm publishing errors

2. NPM Authentication Tester

Test your local npm configuration and authentication status:

npm run test-npm-auth

This tool will:

  • Check npm version and registry configuration
  • Verify existence and content of .npmrc files
  • Test your npm authentication status
  • Examine package.json configuration
  • Provide recommendations for fixing common issues

These tools can help diagnose issues with GitHub Actions npm publishing by comparing your local setup with the GitHub Actions environment.