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

@srulyt/agent-packs

v1.0.4

Published

CLI installer for Roo Code agent packs

Readme

@srulyt/agent-packs

CLI installer for Roo Code agent packs. Install agent packs from GitHub directly into your project.

Features

  • 🚀 Zero-config installation with npx
  • 🔐 Multiple authentication methods (GCM, GitHub CLI, env vars)
  • 📦 Installs latest versions from GitHub main branch
  • 🔄 Safe reinstallation (removes old files first)
  • 🗑️ Clean uninstallation
  • 📋 List available packs

Installation

No installation required! Use with npx:

npx @srulyt/agent-packs install <pack-name>

Usage

Install Agent Packs

Install one or more agent packs:

# Install a single pack
npx @srulyt/agent-packs install agentic-developer

# Install multiple packs
npx @srulyt/agent-packs install agentic-developer context-packs spec-creator

List Available Packs

See all available agent packs:

npx @srulyt/agent-packs list

Uninstall Agent Packs

Remove installed packs:

# Uninstall a single pack
npx @srulyt/agent-packs uninstall agentic-developer

# Uninstall multiple packs
npx @srulyt/agent-packs uninstall agentic-developer context-packs

Authentication

The installer supports multiple authentication methods (tried in order):

1. Environment Variable (Highest Priority)

GITHUB_TOKEN=ghp_xxxx npx @srulyt/agent-packs install my-pack

2. Git Credential Manager (GCM)

If you've cloned any GitHub repo, GCM credentials are used automatically. No setup needed!

3. GitHub CLI

If you have gh CLI installed and logged in:

gh auth login
npx @srulyt/agent-packs install my-pack

4. Unauthenticated (Public Repos Only)

Works automatically for public repositories.

Advanced Options

Custom Repository

Install from a different repository:

npx @srulyt/agent-packs install my-pack --repo myorg/my-agent-packs

Custom Branch

Install from a specific branch (useful for testing):

npx @srulyt/agent-packs install my-pack --branch feature/new-pack

What Gets Installed

When you install an agent pack, the installer:

  1. Fetches files from GitHub (main branch by default)
  2. Creates/updates .roomodes - Adds agent modes to your project
  3. Installs rules folders - Creates .roo/rules-{agent-slug}/ directories
  4. Updates registry - Tracks installed packs in .roo/.agent-packs-registry.json

Example File Structure After Installation

your-project/
├── .roomodes                           # Created/updated with modes
├── .roo/
│   ├── .agent-packs-registry.json      # Tracks installed packs
│   ├── rules-agentic-orchestrator/
│   │   └── rules.md
│   ├── rules-agentic-spec-writer/
│   │   └── rules.md
│   └── ... (other rules folders)
└── (your project files)

Available Packs

Run npx @srulyt/agent-packs list to see all available packs.

Popular packs include:

  • agentic-developer - Workflow-first, spec-driven development system
  • context-packs - Multi-agent system for creating context packs
  • spec-creator - AI-powered product specification writing team
  • simple-agent-factory - Single-task prompt generation

Troubleshooting

Private Repository Access

If you're accessing a private repository and get authentication errors:

  1. Use Git Credential Manager (easiest): Clone any repo from GitHub once
  2. Use GitHub CLI: Run gh auth login
  3. Use environment variable: Set GITHUB_TOKEN=ghp_xxxx

TypeScript Errors

The TypeScript errors you see during development are normal - they'll be resolved when dependencies are installed via npm install.

Development

To contribute or modify this installer:

cd installer
npm install
npm run build
npm link

# Test locally
agent-packs list

License

MIT