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

ai-consilium

v0.0.2

Published

A AI Codegen Planner for new projects to get started quick with generating instructions based on any source of data. It outputs MD files and correct configuration for any dev to run this with Continue AI.

Readme

AI Consilium

AI Consilium is an intelligent CLI tool that helps you generate comprehensive project documentation by asking relevant questions about your project and generating detailed markdown documentation. It can also be widely configured to support different LLM providers and models, both locally and hosted. It can all be shared with your team.

Prerequisites

  • Node.js (v16 or higher)
  • npm (v7 or higher)
  • LLM Studio or access to a hosted LLM provider

Installation

npm i ai-consilium -g

This will make the ai-consilium command available globally on your system.

Usage

Select LLM Model

Before generating documentation, run configure to set up your LLM provider and model & various settings.

ai-consilium configure

Generate Project Documentation

To generate documentation for a new project:

ai-consilium generate <project-name>

For example:

ai-consilium generate my-awesome-project

This will:

  1. Create a new directory my-awesome-project/
  2. Ask you a series of questions about your project
  3. Generate comprehensive documentation in my-awesome-project/docs/
  4. Save project context in my-awesome-project/.ai-consilium.json

Generated Documentation Structure

The generated documentation includes:

  • docs/navigation.md - Project navigation and structure
  • docs/infrastructure.md - Infrastructure overview
  • docs/architecture.md - System architecture
  • docs/api.md - API documentation
  • docs/security.md - Security documentation
  • docs/operations.md - Operations guide
  • docs/cost.md - Cost analysis

Configuration

The tool creates a .ai-consilium.json file in your project directory that stores:

  • Project context and settings
  • Question/answer history
  • Infrastructure choices

License

This project is licensed under MIT with Commons Clause - see the LICENSE.md file for details.

The license allows for:

  • Free usage of the software
  • Commercial use (with restrictions on competing products)
  • Modifications for personal/internal use

While requiring:

  • Permission for redistribution of source code
  • No creation of competing products or services
  • Inclusion of the original license and copyright notice