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

@codeagora/review

v0.1.2

Published

Multi-LLM code review pipeline — parallel reviewers, structured debate, consensus verdict

Readme

CodeAgora runs multiple LLM reviewers in parallel, lets them challenge each other, and returns a final review verdict with evidence.

Quick Start

Published CLI

npm i -g @codeagora/review
agora init
git diff | agora review

Current release: 0.1.2.

Source Checkout

CodeAgora is a pnpm-only workspace. Use pnpm for local setup, scripts, package filters, and release validation; do not use npm or yarn for workspace workflows.

pnpm install
pnpm build
pnpm typecheck
pnpm test
pnpm dev review path/to/diff.patch

Why CodeAgora

  • parallel reviewers catch different issues
  • debate and filtering reduce noisy findings
  • works from the CLI, GitHub Actions, and MCP-compatible editors

How it works

  1. pre-analysis enriches the diff
  2. specialist reviewers inspect in parallel
  3. hallucination and dedupe filters remove weak claims
  4. discussion resolves disputes
  5. a head agent returns ACCEPT, REJECT, or NEEDS_HUMAN

Common ways to use it

CLI

agora review path/to/diff.patch

agora init detects keys and tools, then writes a starter config.

GitHub Actions

name: CodeAgora Review
on:
  pull_request:
    types: [opened, synchronize, reopened]

permissions:
  contents: read
  pull-requests: write
  statuses: write
  checks: write

jobs:
  review:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v6
      - uses: bssm-oss/[email protected]
        with:
          github-token: ${{ secrets.GITHUB_TOKEN }}
        env:
          OPENROUTER_API_KEY: ${{ secrets.OPENROUTER_API_KEY }}

Use .ca/config.json as the default config path. See GitHub Actions setup for fork handling, secrets, permissions, and tuning.

MCP

{
  "mcpServers": {
    "codeagora": {
      "command": "npx",
      "args": ["-y", "@codeagora/mcp"]
    }
  }
}

See packages/mcp/README.md for tool details.

Desktop app

The desktop app in packages/desktop is an official local UI surface for setup, session browsing, review launch, result inspection, and evidence export. It uses the same CLI/core/session/config contracts as the automation surfaces.

The v0.1.2 GitHub Release includes a macOS arm64 DMG: CodeAgora_0.1.2_aarch64.dmg. This DMG is an unsigned preview build. It is not Developer ID signed, not notarized, and does not enable a Tauri updater channel; macOS Gatekeeper warning is expected. See Desktop app for the current distribution policy.

Docs map

| Doc | Purpose | |---|---| | Docs index | Audience-based documentation map | | CLI reference | Commands and options | | Configuration | Config file guide | | Providers | Provider list and tiers | | Architecture | Pipeline and system design | | Development notes | Setup, checks, release/doc pointers | | Benchmarks | Fixture set and benchmark notes | | GitHub Actions setup | Full action guide | | Desktop app | Desktop DMG policy and evidence | | Troubleshooting | Common errors and fixes |

Development and benchmarks

See Development and Benchmarks.

License

MIT