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

ultrapilot

v1.0.2

Published

A knowledge-base-driven AI Toolchain Generator supporting Claude Code, Cursor, Kimi, Codex, Gemini & more

Readme

🚀 UltraPilot

A Knowledge-Base-Driven AI Toolchain Generator

TypeScript React License: MIT

UltraPilot is a powerful CLI and Web UI tool that automatically generates AI toolchain configurations (.agents/skills, AGENTS.md, CLAUDE.md, .cursorrules) for any software project. It syncs the best Agent Skills from GitHub, lets you pick your AI tools via a browser dashboard, and sets up your project in seconds.

✨ Why UltraPilot?

Developers using multiple AI coding tools (Claude Code, Cursor, Kimi, Codex, Gemini, Copilot) currently maintain separate configuration files that quickly diverge.

UltraPilot solves this by enforcing a Single Source of Truth pattern. It generates a central AGENTS.md and .agents/skills/ directory, and automatically creates all necessary symlinks and adapter files for your chosen tools.

🛠 Features

  • 🧠 Knowledge-Base Driven: Automatically syncs curated SKILL.md files from authoritative GitHub repositories (e.g., VoltAgent/awesome-agent-skills, dotnet/skills).
  • 🖥️ Web UI Configuration: A sleek local React dashboard to visually select your tech stack, AI tools, and preferred workflows.
  • 🤖 RAG Composition: Uses an OpenAI-compatible LLM to read selected skills and generate a context-aware, project-specific AGENTS.md.
  • 🔗 Multi-Tool Adapter: Native support for generating configurations for Claude Code, Cursor, Kimi, Codex, Gemini, and GitHub Copilot.
  • 🔄 Workflow Toggles: Easily enforce TDD, Conventional Commits, Feature Planning, and CHANGELOG generation.

🚀 Quick Start

1. Installation

(Note: Package is currently under development. Installation instructions will be updated upon release.)

npm install -g ultrapilot

2. Launch the Web UI

Navigate to your project's root directory and run:

cd my-awesome-project
skill-gen ui

This will start the local Express server and open the React dashboard at http://localhost:3000.

3. Configure Your Toolchain

  1. Select Tools: Check the boxes for the AI agents you use (e.g., Claude Code, Cursor).
  2. Select Language/Framework: Choose your stack (e.g., TypeScript + React). UltraPilot will fetch relevant skills from its local registry.
  3. Select Workflows: Toggle optional rules like TDD or Feature Planning.
  4. Generate: Click generate. UltraPilot will write the files and symlinks directly into your project.

🏗 Architecture

UltraPilot is built as a monorepo with a Node.js CLI backend and a React (Vite) frontend.

  • src/server/: Express REST API and CLI entry points.
  • src/client/: React + TailwindCSS Web UI.
  • src/core/knowledge/: Registry syncing and SKILL.md parsing.
  • src/core/adapter/: Multi-tool symlink and file generation.
  • src/core/llm/: OpenAI-compatible gateway for RAG composition.

For detailed design decisions, see docs/specs/2026-04-17-ultrapilot-design.md.

🤝 Contributing

We welcome contributions! If you are using an AI coding agent (like Claude Code) to contribute to this project, it will automatically read the rules defined in AGENTS.md and the skills in .agents/skills/.

Development Setup

# Clone the repository
git clone https://github.com/idadawn/ultrapilot.git
cd ultrapilot

# Install dependencies
pnpm install

# Start the development servers
pnpm dev:server  # Terminal 1
pnpm dev:client  # Terminal 2

Please review our Implementation Plan before picking up a task.

📄 License

This project is licensed under the MIT License.