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

@itqanlab/nitro-fueled

v0.2.1

Published

AI development orchestration — full PM -> Architect -> Dev -> QA pipeline

Downloads

227

Readme

nitro-fueled

Reusable AI development orchestration. Install into any project to get a full PM → Architect → Dev → QA pipeline with autonomous worker sessions.

npx @itqanlab/nitro-fueled init

What It Does

Nitro-Fueled sets up a structured orchestration layer for AI-powered software delivery inside your project. It coordinates specialist agents through defined workflows, tracks every artifact, and runs autonomous worker sessions that take tasks from creation to reviewed completion.

  • Plan — A Planner agent investigates your codebase, proposes phased roadmaps, and creates well-scoped tasks
  • Build — Build Workers execute the full PM → Architect → Team Leader → Developer pipeline in isolated sessions
  • Review — Review Workers run style, logic, and security reviews with fix-and-verify cycles
  • Supervise — An Auto-Pilot Supervisor coordinates workers end-to-end: queue selection, spawning, health monitoring, recovery, and stop conditions

Requirements


CLI Commands

npx @itqanlab/nitro-fueled init      # Initialize orchestration in current project
npx @itqanlab/nitro-fueled run       # Start the Supervisor
npx @itqanlab/nitro-fueled status    # Show task registry and worker status
npx @itqanlab/nitro-fueled create    # Create a new task interactively

Getting Started

1. Initialize

cd your-project
npx @itqanlab/nitro-fueled init

Detects your tech stack, copies core agents, generates project-specific developer agents, and sets up task tracking.

2. Plan

Open Claude Code in your project, then run:

/plan

The Planner agent investigates the codebase, proposes tasks, and creates a phased roadmap.

3. Run

/auto-pilot

The Supervisor takes over. Spawns workers, monitors health, handles failures, and loops until everything is done.


What Gets Installed

your-project/
├── .claude/
│   ├── agents/          # 16+ specialist agent definitions
│   ├── skills/          # Orchestration, Auto-Pilot, UI/UX, Content Writing
│   ├── commands/        # /plan, /auto-pilot, /orchestrate, /create-task, and more
│   └── anti-patterns.md # QA-derived rules checked before every submission
└── task-tracking/
    ├── registry.md      # Central task index
    ├── plan.md          # Phased roadmap
    └── task-template.md # Canonical task structure

Slash Commands

| Command | Description | |---------|-------------| | /plan | Strategic planning with the Planner agent | | /auto-pilot | Spawn Supervisor to process the task backlog | | /orchestrate | Run the full workflow for a single task | | /create-task | Create a new task with proper structure | | /project-status | Display project progress overview | | /review-code | Run code style review | | /review-logic | Run business logic review | | /review-security | Run security vulnerability review |


Architecture

Product Owner     You — define vision, create tasks, set priorities
    ↓
Strategic Layer   Planner Agent → plan.md, registry.md
    ↓
Supervisor Layer  Auto-Pilot → Build Workers, Review Workers, Cleanup Workers
    ↓
Execution Layer   PM → Architect → Team Leader → Developers → Reviewers

Task State Machine

CREATED → IN_PROGRESS → IMPLEMENTED → IN_REVIEW → COMPLETE

License

MIT


Full documentation & design docs