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

@ulpi/agent-library

v1.5.0

Published

Professional AI agent configurations for multiple editors and frameworks

Readme

Agent Library

Professional AI Agent Configurations for Multiple Editors

npm version npm downloads License: MIT Powered by ULPI


Production-ready AI agent configurations for 5 editors × 8 frameworks = 40 specialized agents.

Supports: ULPI · Cursor · Amazon Q · Claude Code · GitHub Codex

Documentation

📚 Editor Guides

🚀 Framework Guides

Quick Start

Installation

Step 1: Install globally via npm

npm install -g @ulpi/agent-library

After installation completes, you're ready to configure your project!

Step 2: Run the installer in your project

cd /path/to/your/project
ulpi-agent-library

The interactive installer will:

  1. Prompt you to select your framework (Laravel, Next.js, Express, NestJS, etc.)
  2. Ask which editors to configure (ULPI, Cursor, Amazon Q, Claude Code, Codex, or all)
  3. Download and install the appropriate agent configurations
  4. Set up MCP servers (Context7 & Chrome DevTools) for enhanced AI capabilities
  5. Create all necessary configuration files in your project

Command-Line Options:

# Interactive mode (prompts for framework and editors)
ulpi-agent-library

# Specify framework and editors
ulpi-agent-library --framework laravel --editors cursor

# Install all editors for Next.js
ulpi-agent-library --framework nextjs --editors all

# Multiple editors
ulpi-agent-library --framework express --editors ulpi,cursor,claude

# Custom directory and port
ulpi-agent-library --target /my/project --port 9000

# Preview without installing
ulpi-agent-library --framework nestjs --dry-run

# Show help
ulpi-agent-library --help

Options:

  • -f, --framework - laravel, express, nestjs, nextjs, remix, expo-react-native, flutter, magento
  • -e, --editors - all, ulpi, cursor, amazonq, claude, codex (comma-separated)
  • -t, --target - Installation directory (default: current)
  • -p, --port - Chrome debug port (default: 9222)
  • --dry-run - Preview without installing
  • -h, --help - Show help

Manual Installation

Clone the repository and copy the configurations you need:

git clone https://github.com/ulpi-io/agent-library.git
cd agent-library

# Copy all configurations to your project
cp -r .amazonq /path/to/your/project/
cp -r .cursor /path/to/your/project/
cp -r .claude /path/to/your/project/
cp -r .ulpi /path/to/your/project/
cp .mcp.json /path/to/your/project/

Structure

.
├── .amazonq/
│   └── rules/
│       └── laravel.rule.md        # Laravel development rule for Amazon Q
├── .cursor/
│   └── agents/
│       ├── AGENTS.md              # Global Cursor agent instructions
│       └── laravel/
│           └── AGENTS.md          # Laravel Senior Engineer agent for Cursor
├── .claude/
│   └── agents/
│       └── engineering/
│           └── laravel-senior-engineer.md  # Claude Code agent
├── .codex/
│   └── laravel.md                 # Codex Laravel agent (copied to project root as AGENTS.md)
├── .ulpi/
│   ├── agents/
│   │   └── engineering/
│   │       └── laravel-senior-engineer.yaml  # ULPI agent configuration
│   └── tools/
│       ├── launch-chrome-debug.sh # Chrome debugging launch script
│       └── setup.sh               # One-command setup script
└── .mcp.json                      # MCP server configurations

Features

🎯 Comprehensive Coverage

  • 40 Agent Configurations - 5 editors × 8 frameworks
  • Full Compatibility - Every framework works with every editor
  • Production-Ready - Enterprise patterns and best practices
  • MCP Integration - Enhanced capabilities via Context7 and Chrome DevTools

📦 Supported Editors

🚀 Supported Frameworks

MCP Servers

Extend AI capabilities with Model Context Protocol servers. Full Setup Guide →

Context7

Enhanced documentation lookup and context management for modern frameworks.

Chrome DevTools

Browser automation, testing, and debugging via Chrome DevTools Protocol.

Quick Start:

# Launch Chrome with remote debugging
./.ulpi/tools/launch-chrome-debug.sh

# Or manually (macOS)
"/Applications/Google Chrome.app/Contents/MacOS/Google Chrome" \
  --remote-debugging-port=9222 \
  --user-data-dir="$(mktemp -d)"

The setup script automatically configures MCP servers for all editors.

Contributing

Contributions are welcome! Please read our contributing guidelines before submitting pull requests.

Support


License

MIT