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

buzo-cli

v0.2.0

Published

Buzo — Vector store quality gate for CI/CD pipelines

Downloads

492

Readme

Buzo scans your vector database for data quality issues — stale content, truncated data, embedding model mismatches, duplicates, and contradictions — and blocks deploys when quality drops below your threshold.

Quick Start

npx buzo-cli scan \
  --collection <collection-id> \
  --api-key <your-buzo-api-key> \
  --api-url https://api.buzo.ai \
  --threshold 70

What it does

  1. Connects to your Buzo account
  2. Scans your vector collection through 6 detection layers
  3. Auto-detects your AI stack from package.json / requirements.txt
  4. Returns PASS/FAIL based on quality threshold
  5. Exits with code 1 on failure (blocks your pipeline)

Usage in CI/CD

GitHub Actions

- name: Buzo Quality Gate
  run: |
    npx buzo-cli scan \
      --collection ${{ secrets.BUZO_COLLECTION_ID }} \
      --api-key ${{ secrets.BUZO_API_KEY }} \
      --api-url https://api.buzo.ai \
      --threshold 70

GitLab CI

quality-gate:
  stage: test
  script:
    - npx buzo-cli scan --collection $BUZO_COLLECTION_ID --api-key $BUZO_API_KEY --threshold 70

Options

| Flag | Short | Default | Description | |------|-------|---------|-------------| | --collection | -c | required | Collection UUID to scan | | --api-key | -k | $BUZO_API_KEY | Buzo API key | | --api-url | -u | $BUZO_API_URL | Buzo API URL | | --threshold | -t | 70 | Minimum quality score (0-100) | | --fail-on-critical | | true | Fail if critical issues found | | --scan-mode | | FULL | FULL, WATCH (delta), DEEP | | --format | | summary | summary, json | | --warn-only | | false | Report but don't fail pipeline | | --no-detect-stack | | | Skip auto-detection of AI stack |

Stack Detection

When run inside a project, buzo-cli automatically reads package.json, requirements.txt, and .env.example to detect your AI stack:

  • Frameworks: LangChain, LlamaIndex, CrewAI, AutoGen
  • LLM Providers: OpenAI, Anthropic, Google Gemini, Cohere
  • Vector DBs: Pinecone, Qdrant, ChromaDB, pgvector, Weaviate, Milvus
  • Databases: Supabase, MongoDB, Redis
  • Tools: SerpAPI, Tavily, Slack, HubSpot

The detected stack is sent to Buzo and visualized in the infrastructure graph.

Exit Codes

| Code | Meaning | |------|---------| | 0 | Quality gate passed | | 1 | Quality gate failed | | 2 | Error (connection, auth, timeout) |

Example Output

  🤿 Buzo — Vector Quality Gate

  Collection:  prod-kb (Pinecone, 142K vectors)
  Scan mode:   FULL

  Pipeline results:
  ✓ Metadata & Provenance         0 issues
  ✗ Content Patterns              3 stale
  ✗ Relevance Analysis            2 model mismatch
  ✓ Duplicate Detection           0 collisions
  ✓ Contradiction Analysis        0

  ─────────────────────────────────────
  Quality Score:    85 / 100
  Threshold:        70
  Status:           PASS ✓
  ─────────────────────────────────────

  Detected Stack:
    Framework:  LangChain
    LLM:        OpenAI
    Embeddings: OpenAI Embeddings
    Vector DB:  Pinecone

Links

Zero Dependencies

This CLI has zero runtime dependencies. It uses only Node.js built-in modules.