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

@avasis-ai/inspect

v1.0.1

Published

Hardware inspector for Avasis Agent Builder. Detects CPU, RAM, GPU and recommends small models that run on your device.

Readme

@avasis-ai/inspect

Hardware inspector for Avasis Agent Builder. Scans your device and recommends the best small models that run locally.

Install

npx @avasis-ai/inspect

What it does

  • Detects CPU, RAM, GPU (VRAM), OS, and disk
  • Matches your hardware against a catalog of 12 small models (0.6B to 14B)
  • Recommends models that fit your device with GPU-accelerated or CPU-only ratings
  • Outputs a Config ID you can use to pre-fill the agent builder at avasis.ai

Usage

# Interactive scan with colored output
npx @avasis-ai/inspect

# JSON output (for automation or builder pre-fill)
npx @avasis-ai/inspect --json

Example output

  ┌─────────────────────────────────────────────┐
  │        Avasis Device Inspector              │
  └─────────────────────────────────────────────┘

  DEVICE
  ─────────────────────────────────────────────
  CPU     Apple M1 Pro
  Cores   10 physical / 10 logical
  RAM     32.0GB total, 18.2GB free
  OS      macOS 15.0 (arm64)
  Disk    456.2GB free of 960.0GB

  RECOMMENDED MODELS
  ─────────────────────────────────────────────
  Model                 Size      Speed     Quality   Fit
  ──────────────────────────────────────────────────────────────
  qwen3:0.6b            0.4GB Q4  fast      basic     CPU
  phi4-mini:3.8b        2.4GB Q4  fast      good      CPU
  gemma3:4b             2.8GB Q4  fast      good      CPU
  ...

  BEST MODEL FOR YOUR DEVICE
  ─────────────────────────────────────────────
  phi4-mini:3.8b
  No GPU detected, runs on CPU

  NEXT STEPS
  ─────────────────────────────────────────────
  1. Install Ollama:     https://ollama.com/download
  2. Pull your model:    ollama pull phi4-mini:3.8b
  3. Build an agent:     https://avasis.ai/builder

  Config ID: a1b2c3d4 (use this to pre-fill your agent)

Supported models

| Model | Parameters | Quantized Size | Min RAM | Best For | |-------|-----------|----------------|---------|----------| | qwen3:0.6b | 0.6B | 0.4GB Q4 | 2GB | Classification, simple Q&A | | phi4-mini:3.8b | 3.8B | 2.4GB Q4 | 4GB | Code assist, file tasks | | gemma3:4b | 4B | 2.8GB Q4 | 6GB | Code generation, multi-tool agents | | qwen3:4b | 4B | 2.6GB Q4 | 6GB | Reasoning, structured output | | llama3.2:3b | 3.2B | 2.0GB Q4 | 4GB | Instruction following, tool calling | | mistral:7b | 7B | 4.4GB Q4 | 8GB | Complex reasoning, code generation | | qwen3:8b | 8B | 5.0GB Q4 | 8GB | Deep analysis, multi-agent supervisor | | phi4:14b | 14B | 8.5GB Q4 | 16GB | Expert reasoning, full autonomy | | qwen3:14b | 14B | 9.0GB Q4 | 16GB | Research, long-context tasks | | gemma3:12b | 12B | 7.5GB Q4 | 16GB | Multi-modal, supervisor agent | | llama3.1:8b | 8B | 4.9GB Q4 | 8GB | General purpose, agentic tasks | | deepseek-r1:7b | 7B | 4.4GB Q4 | 8GB | Reasoning, math, logic |

How it works

  1. Uses systeminformation to scan hardware (cross-platform, no native deps)
  2. Compares your specs against a model catalog with real size/requirement data
  3. Rates each model as GPU-native, CPU-only, or incompatible
  4. Picks the best model for your device

License

MIT