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

council-cli

v1.0.4

Published

AI-powered implementation planning using multiple LLMs that debate and synthesize the best approach

Downloads

437

Readme

Council CLI

AI-powered implementation planning using multiple LLMs that debate and synthesize the best approach.

Follow us on X: https://x.com/council_cli

How It Works

  1. Propose - 4 different LLMs generate implementation plans for your task
  2. Rank - Each LLM blindly scores all plans on simplicity, correctness, security, and performance
  3. Synthesize - A chairman model creates the final plan by combining the best ideas

Installation

npm install -g council-cli

Usage

# Basic usage (always wrap your task in quotes!)
council "your task description"

# With custom output file
council "add JWT auth" --output auth-plan.md

# Show help
council --help

Options

| Option | Description | |--------|-------------| | -o, --output | Output file name (default: councilplan.md) | | -h, --help | Show help message |

Setup

On first run, Council will prompt you for your OpenRouter API key:

No OpenRouter API key found.
Get your key at: https://openrouter.ai/keys

Enter your OpenRouter API key: sk-or-v1-xxxxx

Get your API key at: https://openrouter.ai/keys

The configuration is saved to ~/.config/council/config.yaml for future use.

Output

All files are saved to a ./llmcouncil/ folder in your current directory:

| File | Description | |------|-------------| | stage1.md | All proposals from each model | | stage2.md | Rankings table and each model's evaluation | | stage3.md | Chairman's analysis and thinking process | | councilplan.md | Final synthesized implementation plan |

Example

$ council "add user authentication with JWT tokens"

🏛️  Council CLI

Task: "add user authentication with JWT tokens"

Output folder: ./llmcouncil/

[1/3] Generating proposals from models...
  ✓ anthropic/claude-sonnet-4.5 ✓
  ✓ openai/gpt-5.2-codex ✓
  ✓ google/gemini-3-pro-preview ✓
  ✓ moonshotai/kimi-k2.5 ✓

[2/3] Models ranking all plans blindly...
  ✓ All models ranked ✓

[3/3] Chairman synthesizing final plan...
  ✓ anthropic/claude-opus-4.5 synthesis complete ✓

✓ All files saved to ./llmcouncil/:
  - stage1.md (proposals)
  - stage2.md (rankings)
  - stage3.md (chairman analysis)
  - councilplan.md (final plan)

Configuration

Edit ~/.config/council/config.yaml to customize models:

openrouter_api_key: sk-or-v1-xxxxx

proposer_models:
  - anthropic/claude-sonnet-4.5
  - openai/gpt-5.2-codex
  - google/gemini-3-pro-preview
  - moonshotai/kimi-k2.5

chairman_model: anthropic/claude-opus-4.5

Requirements

  • Node.js >= 18.0.0
  • OpenRouter API key

License

MIT